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

22 lines
654 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')