2014-08-27 11:17:06 -04:00
|
|
|
from __future__ import unicode_literals
|
2013-12-29 08:40:38 -05:00
|
|
|
from moto.core.responses import BaseResponse
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
|
2013-12-29 08:40:38 -05:00
|
|
|
class RouteTables(BaseResponse):
|
2013-02-21 23:13:01 -05:00
|
|
|
def associate_route_table(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).associate_route_table is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def create_route(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).create_route is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def create_route_table(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).create_route_table is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def delete_route(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).delete_route is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def delete_route_table(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).delete_route_table is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def describe_route_tables(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).describe_route_tables is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def disassociate_route_table(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).disassociate_route_table is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def replace_route(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).replace_route is not yet implemented')
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def replace_route_table_association(self):
|
2013-02-22 07:55:48 -05:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).replace_route_table_association is not yet implemented')
|