summaryrefslogtreecommitdiff
path: root/trove/network/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'trove/network/base.py')
-rw-r--r--trove/network/base.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/trove/network/base.py b/trove/network/base.py
index 572b9f3b..5e8ed63a 100644
--- a/trove/network/base.py
+++ b/trove/network/base.py
@@ -29,23 +29,9 @@ class NetworkDriver(object):
"""
@abc.abstractmethod
- def create_security_group(self, name, description):
- """
- Creates the security group with given name and description
- """
-
- @abc.abstractmethod
def delete_security_group(self, sec_group_id):
"""Deletes the security group by given ID."""
@abc.abstractmethod
- def add_security_group_rule(self, sec_group_id, protocol,
- from_port, to_port, cidr):
- """
- Adds the rule identified by the security group ID,
- transport protocol, port range: from -> to, CIDR.
- """
-
- @abc.abstractmethod
def delete_security_group_rule(self, sec_group_rule_id):
"""Deletes the rule by given ID."""