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 VMImport(BaseResponse):
|
2013-02-22 04:13:01 +00:00
|
|
|
def cancel_conversion_task(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('VMImport.cancel_conversion_task is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def describe_conversion_tasks(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('VMImport.describe_conversion_tasks is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def import_instance(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('VMImport.import_instance is not yet implemented')
|
2013-02-22 04:13:01 +00:00
|
|
|
|
|
|
|
def import_volume(self):
|
2013-02-22 12:55:48 +00:00
|
|
|
raise NotImplementedError('VMImport.import_volume is not yet implemented')
|