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
08f0fe9d
authored
5 years ago
by
Adam Torok
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Subnet & SubnetManager interface added
parent
c601a95b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
interface/network/Subnet.py
+30
-0
interface/network/SubnetManager.py
+18
-0
No files found.
interface/network/Subnet.py
0 → 100644
View file @
08f0fe9d
import
json
class
Subnet
:
def
__init__
(
self
,
id
,
network_id
,
name
,
cidr
,
ip_version
,
gateway_ip
,
is_dhcp_enabled
,
created_at
)
->
None
:
super
()
.
__init__
()
self
.
id
=
id
self
.
network_id
=
network_id
self
.
name
=
name
self
.
cidr
=
cidr
self
.
ip_version
=
ip_version
self
.
gateway_ip
=
gateway_ip
self
.
is_dhcp_enabled
=
is_dhcp_enabled
self
.
created_at
=
created_at
def
__str__
(
self
)
->
str
:
return
self
.
toJSON
()
def
toJSON
(
self
):
return
json
.
dumps
(
self
.
__dict__
)
This diff is collapsed.
Click to expand it.
interface/network/SubnetManager.py
0 → 100644
View file @
08f0fe9d
from
interface.network.Subnet
import
Subnet
class
SubnetManager
:
def
__init__
(
self
)
->
None
:
super
()
.
__init__
()
def
create
(
self
,
network_id
,
ip_version
,
cidr
)
->
Subnet
:
raise
NotImplementedError
def
get
(
self
,
id
)
->
Subnet
:
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