Commit efbb51e3 by edems

FloatingIPManager interface added

parent 5ae804b6
from interface.network.FloatingIP import FloatingIP
class FloatingIPManager:
def __init__(self) -> None:
super().__init__()
def create(self) -> FloatingIP:
raise NotImplementedError
def get(self, id) -> FloatingIP:
raise NotImplementedError
def update(self, id, params) -> FloatingIP:
raise NotImplementedError
def delete(self, id) -> bool:
raise NotImplementedError
def list(self) -> []:
raise NotImplementedError
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment