moto/moto/ec2/responses/route_tables.py
2014-08-27 11:33:55 -04:00

32 lines
1.3 KiB
Python

from __future__ import unicode_literals
from moto.core.responses import BaseResponse
class RouteTables(BaseResponse):
def associate_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).associate_route_table is not yet implemented')
def create_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).create_route is not yet implemented')
def create_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).create_route_table is not yet implemented')
def delete_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).delete_route is not yet implemented')
def delete_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).delete_route_table is not yet implemented')
def describe_route_tables(self):
raise NotImplementedError('RouteTables(AmazonVPC).describe_route_tables is not yet implemented')
def disassociate_route_table(self):
raise NotImplementedError('RouteTables(AmazonVPC).disassociate_route_table is not yet implemented')
def replace_route(self):
raise NotImplementedError('RouteTables(AmazonVPC).replace_route is not yet implemented')
def replace_route_table_association(self):
raise NotImplementedError('RouteTables(AmazonVPC).replace_route_table_association is not yet implemented')