raise NotImplementedError if not implemented
This commit is contained in:
parent
27a086409e
commit
0bd4d57ef2
26 changed files with 125 additions and 125 deletions
|
|
@ -6,23 +6,23 @@ from moto.ec2.utils import resource_ids_from_querystring
|
|||
|
||||
class SecurityGroups(object):
|
||||
def authorize_security_group_egress(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.authorize_security_group_egress is not yet implemented')
|
||||
|
||||
def authorize_security_group_ingress(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.authorize_security_group_ingress is not yet implemented')
|
||||
|
||||
def create_security_group(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.create_security_group is not yet implemented')
|
||||
|
||||
def delete_security_group(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.delete_security_group is not yet implemented')
|
||||
|
||||
def describe_security_groups(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.describe_security_groups is not yet implemented')
|
||||
|
||||
def revoke_security_group_egress(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.revoke_security_group_egress is not yet implemented')
|
||||
|
||||
def revoke_security_group_ingress(self):
|
||||
return NotImplemented
|
||||
raise NotImplementedError('SecurityGroups.revoke_security_group_ingress is not yet implemented')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue