Floating_ipsΒΆ
- 
class novaclient.v2.floating_ips.FloatingIP(manager, info, loaded=False, resp=None)
- Bases: - novaclient.base.Resource- DEPRECATED - Populate and bind to a manager. - Parameters: - manager – BaseManager object
- info – dictionary representing resource attributes
- loaded – prevent lazy-loading if set to True
- resp – Response or list of Response objects
 - 
delete()
- DEPRECATED: Delete this floating IP - Returns: - An instance of novaclient.base.TupleWithMeta 
 
- 
class novaclient.v2.floating_ips.FloatingIPManager(api)
- Bases: - novaclient.base.ManagerWithFind- DEPRECATED - 
create(*a, **k)
- DEPRECATED: Create (allocate) a floating IP for a tenant 
 - 
delete(*a, **k)
- DEPRECATED: Delete (deallocate) a floating IP for a tenant - Parameters: - floating_ip – The floating IP address to delete. - Returns: - An instance of novaclient.base.TupleWithMeta 
 - 
get(*a, **k)
- DEPRECATED: Retrieve a floating IP 
 - 
list(*a, **k)
- DEPRECATED: List floating IPs 
 - 
resource_class
- alias of - FloatingIP
 
-