15 lines
550 B
Python
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')
|