Fixed_ipsΒΆ
Fixed IPs interface.
-
class
novaclient.v2.fixed_ips.FixedIP(manager, info, loaded=False, resp=None) Bases:
novaclient.base.ResourcePopulate 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
-
class
novaclient.v2.fixed_ips.FixedIPsManager(api) Bases:
novaclient.base.Manager-
get(fixed_ip) Show information for a Fixed IP.
Parameters: fixed_ip – Fixed IP address to get info for
-
reserve(fixed_ip) Reserve a Fixed IP.
Parameters: fixed_ip – Fixed IP address to reserve Returns: An instance of novaclient.base.TupleWithMeta
-
resource_class alias of
FixedIP
-
unreserve(fixed_ip) Unreserve a Fixed IP.
Parameters: fixed_ip – Fixed IP address to unreserve Returns: An instance of novaclient.base.TupleWithMeta
-