Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron agents.
Bases: openstack_dashboard.api.base.APIDictWrapper
Bases: openstack_dashboard.api.network_base.FloatingIpManager
Bases: openstack_dashboard.api.base.APIDictWrapper
Bases: openstack_dashboard.api.base.APIDictWrapper
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron Networks.
Bases: openstack_dashboard.api.base.APIDictWrapper
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron ports.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron port allowed address pairs.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron profiles.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron routers.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron routes extra route.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Bases: openstack_dashboard.api.network_base.SecurityGroupManager
Gets security groups of an instance.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron subnets.
Bases: openstack_dashboard.api.neutron.NeutronAPIDictWrapper
Wrapper for neutron subnetpools.
Check if a feature-specific field can be displayed.
This method check a permission for a feature-specific field. Such field is usually provided through Neutron extension.
Parameters: |
|
---|
Convert an ip version number to a human-friendly string.
List neutron resources with handling RequestURITooLong exception.
If filter parameters are long, list resources API request leads to 414 error (URL is too long). For such case, this method split list parameters specified by a list_field argument into chunks and call the specified list_method repeatedly.
Parameters: |
|
---|
Create a network object.
Parameters: |
|
---|---|
Returns: | Network object |
Return a network list available for the tenant.
The list contains networks owned by the tenant and public networks. If requested_networks specified, it searches requested_networks only.
Create a port on a specified network.
Parameters: |
|
---|---|
Returns: | Port object |
Retrieve servers networking information from Neutron if enabled.
Should be used when up to date networking information is required, and Nova’s networking info caching mechanism is not fast enough.
Create a subnet on a specified network.
Parameters: |
|
---|---|
Returns: | Subnet object |
Although both cidr+ip_version and subnetpool_id+preifxlen is listed as optional you MUST pass along one of the combinations to get a successful result.
Create a subnetpool.
ip_version is auto-detected in back-end.
Parameters: request – Request context name – Name for subnetpool prefixes – List of prefixes for pool
Keyword Arguments (optional): min_prefixlen – Minimum prefix length for allocations from pool max_prefixlen – Maximum prefix length for allocations from pool default_prefixlen – Default prefix length for allocations from pool default_quota – Default quota for allocations from pool shared – Subnetpool should be shared (Admin-only) tenant_id – Owner of subnetpool
Returns: SubnetPool object