moto/moto/ec2/responses/windows.py
2014-08-27 11:33:55 -04:00

17 lines
601 B
Python

from __future__ import unicode_literals
from moto.core.responses import BaseResponse
class Windows(BaseResponse):
def bundle_instance(self):
raise NotImplementedError('Windows.bundle_instance is not yet implemented')
def cancel_bundle_task(self):
raise NotImplementedError('Windows.cancel_bundle_task is not yet implemented')
def describe_bundle_tasks(self):
raise NotImplementedError('Windows.describe_bundle_tasks is not yet implemented')
def get_password_data(self):
raise NotImplementedError('Windows.get_password_data is not yet implemented')