2014-08-27 15:17:06 +00:00
|
|
|
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):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).associate_route_table is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def create_route(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).create_route is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def create_route_table(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).create_route_table is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def delete_route(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).delete_route is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def delete_route_table(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).delete_route_table is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def describe_route_tables(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).describe_route_tables is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def disassociate_route_table(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).disassociate_route_table is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def replace_route(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).replace_route is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def replace_route_table_association(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('RouteTables(AmazonVPC).replace_route_table_association is not yet implemented')
|