18 lines
549 B
Python
18 lines
549 B
Python
from __future__ import unicode_literals
|
|
from moto.core.responses import BaseResponse
|
|
|
|
|
|
class VMExport(BaseResponse):
|
|
|
|
def cancel_export_task(self):
|
|
raise NotImplementedError(
|
|
'VMExport.cancel_export_task is not yet implemented')
|
|
|
|
def create_instance_export_task(self):
|
|
raise NotImplementedError(
|
|
'VMExport.create_instance_export_task is not yet implemented')
|
|
|
|
def describe_export_tasks(self):
|
|
raise NotImplementedError(
|
|
'VMExport.describe_export_tasks is not yet implemented')
|