moto/moto/ec2/responses/elastic_ip_addresses.py
Steve Pulec e993917d4c pep8
2013-03-05 08:35:18 -05:00

22 lines
818 B
Python

from jinja2 import Template
from moto.ec2.models import ec2_backend
from moto.ec2.utils import resource_ids_from_querystring
class ElasticIPAddresses(object):
def allocate_address(self):
raise NotImplementedError('ElasticIPAddresses.allocate_address is not yet implemented')
def associate_address(self):
raise NotImplementedError('ElasticIPAddresses.associate_address is not yet implemented')
def describe_addresses(self):
raise NotImplementedError('ElasticIPAddresses.describe_addresses is not yet implemented')
def disassociate_address(self):
raise NotImplementedError('ElasticIPAddresses.disassociate_address is not yet implemented')
def release_address(self):
raise NotImplementedError('ElasticIPAddresses.release_address is not yet implemented')