adding ec2 stubs
This commit is contained in:
parent
0df2864f99
commit
27a086409e
59 changed files with 861 additions and 9 deletions
28
moto/ec2/responses/network_acls.py
Normal file
28
moto/ec2/responses/network_acls.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
from jinja2 import Template
|
||||
|
||||
from moto.ec2.models import ec2_backend
|
||||
from moto.ec2.utils import resource_ids_from_querystring
|
||||
|
||||
|
||||
class NetworkACLs(object):
|
||||
def create_network_acl(self):
|
||||
return NotImplemented
|
||||
|
||||
def create_network_acl_entry(self):
|
||||
return NotImplemented
|
||||
|
||||
def delete_network_acl(self):
|
||||
return NotImplemented
|
||||
|
||||
def delete_network_acl_entry(self):
|
||||
return NotImplemented
|
||||
|
||||
def describe_network_acls(self):
|
||||
return NotImplemented
|
||||
|
||||
def replace_network_acl_association(self):
|
||||
return NotImplemented
|
||||
|
||||
def replace_network_acl_entry(self):
|
||||
return NotImplemented
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue