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

19 lines
836 B
Python

from moto.core.responses import BaseResponse
class VirtualPrivateGateways(BaseResponse):
def attach_vpn_gateway(self):
raise NotImplementedError('VirtualPrivateGateways(AmazonVPC).attach_vpn_gateway is not yet implemented')
def create_vpn_gateway(self):
raise NotImplementedError('VirtualPrivateGateways(AmazonVPC).create_vpn_gateway is not yet implemented')
def delete_vpn_gateway(self):
raise NotImplementedError('VirtualPrivateGateways(AmazonVPC).delete_vpn_gateway is not yet implemented')
def describe_vpn_gateways(self):
raise NotImplementedError('VirtualPrivateGateways(AmazonVPC).describe_vpn_gateways is not yet implemented')
def detach_vpn_gateway(self):
raise NotImplementedError('VirtualPrivateGateways(AmazonVPC).detach_vpn_gateway is not yet implemented')