Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
RECIRCLE
/
interface-openstack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
efbb51e3
authored
5 years ago
by
edems
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FloatingIPManager interface added
parent
5ae804b6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
interface/network/FloatingIPManager.py
+21
-0
No files found.
interface/network/FloatingIPManager.py
0 → 100644
View file @
efbb51e3
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
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment