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
4d452b14
authored
Apr 26, 2019
by
Adam Torok
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update methods added in interfaces
parent
10775612
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
0 deletions
+9
-0
interface/network/NetworkManager.py
+3
-0
interface/network/RouterManager.py
+3
-0
interface/network/SubnetManager.py
+3
-0
No files found.
interface/network/NetworkManager.py
View file @
4d452b14
...
...
@@ -11,6 +11,9 @@ class NetworkManager:
def
get
(
self
,
id
)
->
Network
:
raise
NotImplementedError
def
update
(
self
,
id
,
params
)
->
Network
:
raise
NotImplementedError
def
delete
(
self
,
id
)
->
bool
:
raise
NotImplementedError
...
...
interface/network/RouterManager.py
View file @
4d452b14
...
...
@@ -11,6 +11,9 @@ class RouterManager:
def
get
(
self
,
id
)
->
Router
:
raise
NotImplementedError
def
update
(
self
,
id
,
params
)
->
Router
:
raise
NotImplementedError
def
delete
(
self
,
id
)
->
bool
:
raise
NotImplementedError
...
...
interface/network/SubnetManager.py
View file @
4d452b14
...
...
@@ -11,6 +11,9 @@ class SubnetManager:
def
get
(
self
,
id
)
->
Subnet
:
raise
NotImplementedError
def
update
(
self
,
params
)
->
Subnet
:
raise
NotImplementedError
def
delete
(
self
,
id
)
->
bool
:
raise
NotImplementedError
...
...
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