moto/moto/ec2/responses/key_pairs.py
2013-12-29 08:40:38 -05:00

15 lines
550 B
Python

from moto.core.responses import BaseResponse
class KeyPairs(BaseResponse):
def create_key_pair(self):
raise NotImplementedError('KeyPairs.create_key_pair is not yet implemented')
def delete_key_pair(self):
raise NotImplementedError('KeyPairs.delete_key_pair is not yet implemented')
def describe_key_pairs(self):
raise NotImplementedError('KeyPairs.describe_key_pairs is not yet implemented')
def import_key_pair(self):
raise NotImplementedError('KeyPairs.import_key_pair is not yet implemented')