moto/moto/ec2/responses/vm_export.py
Steve Pulec f37bad0e00 Lints.
2017-02-23 21:37:43 -05:00

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')