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):
|
2013-02-21 23:13:01 -05:00
|
|
|
def assign_private_ip_addresses(self):
|
2019-10-31 08:44:26 -07:00
|
|
|
if self.is_not_dryrun("AssignPrivateIPAddress"):
|
2017-02-23 21:37:43 -05:00
|
|
|
raise NotImplementedError(
|
2019-10-31 08:44:26 -07:00
|
|
|
"IPAddresses.assign_private_ip_addresses is not yet implemented"
|
|
|
|
)
|
2013-02-21 23:13:01 -05:00
|
|
|
|
|
|
|
def unassign_private_ip_addresses(self):
|
2019-10-31 08:44:26 -07:00
|
|
|
if self.is_not_dryrun("UnAssignPrivateIPAddress"):
|
2017-02-23 21:37:43 -05:00
|
|
|
raise NotImplementedError(
|
2019-10-31 08:44:26 -07:00
|
|
|
"IPAddresses.unassign_private_ip_addresses is not yet implemented"
|
|
|
|
)
|