moto/moto/ec2/responses/ip_addresses.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
493 B
Python
Raw Permalink Normal View History

2017-02-11 19:41:04 -05:00
from moto.core.responses import BaseResponse
2013-02-21 23:13:01 -05:00
2013-12-29 08:40:38 -05:00
class IPAddresses(BaseResponse):
2023-02-16 20:43:43 -01:00
def assign_private_ip_addresses(self) -> str:
2023-02-14 12:43:28 -01:00
self.error_on_dryrun()
raise NotImplementedError(
"IPAddresses.assign_private_ip_addresses is not yet implemented"
)
2013-02-21 23:13:01 -05:00
2023-02-16 20:43:43 -01:00
def unassign_private_ip_addresses(self) -> str:
2023-02-14 12:43:28 -01:00
self.error_on_dryrun()
raise NotImplementedError(
"IPAddresses.unassign_private_ip_addresses is not yet implemented"
)