moto/moto/ec2/responses/vm_import.py

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