3.23.1. List floating IP pools

 
MethodURIDescription
GET/v2/{tenant_id}/os-floating-ip-pools

Lists floating IP pools.

Normal response codes: 200

 3.23.1.1. Request

This table shows the URI parameters for the list floating ip pools request:

NameTypeDescription

{tenant_id}

​String

The unique identifier of the tenant or account.

This operation does not require a request body.

 3.23.1.2. Response

 

Example 3.189. List floating IP pools: JSON response

{
    "floating_ip_pools": [
        {
            "name": "pool1"
        },
        {
            "name": "pool2"
        }
    ]
}

 

Example 3.190. List floating IP pools: XML response

<?xml version='1.0' encoding='UTF-8'?>
<floating_ip_pools>
  <floating_ip_pool name="pool1"/>
  <floating_ip_pool name="pool2"/>
</floating_ip_pools>

This operation does not return a response body.

Questions? Discuss on ask.openstack.org
Found an error? Report a bug against this page


loading table of contents...