moto/moto/ec2/responses/route_tables.py

32 lines
1.3 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2013-12-29 13:40:38 +00:00
from moto.core.responses import BaseResponse
2013-02-22 04:13:01 +00:00
2013-12-29 13:40:38 +00:00
class RouteTables(BaseResponse):
2013-02-22 04:13:01 +00:00
def associate_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).associate_route_table is not yet implemented')
2013-02-22 04:13:01 +00:00
def create_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).create_route is not yet implemented')
2013-02-22 04:13:01 +00:00
def create_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).create_route_table is not yet implemented')
2013-02-22 04:13:01 +00:00
def delete_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).delete_route is not yet implemented')
2013-02-22 04:13:01 +00:00
def delete_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).delete_route_table is not yet implemented')
2013-02-22 04:13:01 +00:00
def describe_route_tables(self):
raise NotImplementedError('RouteTables(AmazonVPC).describe_route_tables is not yet implemented')
2013-02-22 04:13:01 +00:00
def disassociate_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).disassociate_route_table is not yet implemented')
2013-02-22 04:13:01 +00:00
def replace_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).replace_route is not yet implemented')
2013-02-22 04:13:01 +00:00
def replace_route_table_association(self):
raise NotImplementedError('RouteTables(AmazonVPC).replace_route_table_association is not yet implemented')