18 lines
493 B
Python
18 lines
493 B
Python
from moto.core.responses import BaseResponse
|
|
|
|
|
|
class IPAddresses(BaseResponse):
|
|
def assign_private_ip_addresses(self) -> str:
|
|
self.error_on_dryrun()
|
|
|
|
raise NotImplementedError(
|
|
"IPAddresses.assign_private_ip_addresses is not yet implemented"
|
|
)
|
|
|
|
def unassign_private_ip_addresses(self) -> str:
|
|
self.error_on_dryrun()
|
|
|
|
raise NotImplementedError(
|
|
"IPAddresses.unassign_private_ip_addresses is not yet implemented"
|
|
)
|