2025-06-06 08:20:45 +03:00
|
|
|
import dynamix_sdk.base as _base
|
|
|
|
|
import dynamix_sdk.api._nested as _nested
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CloudapiComputeChangeIpResultBool(_base.BaseAPIResultBool):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CloudapiComputeChangeIpProtocol(_base.BasePostAPIFunctionProtocol):
|
|
|
|
|
def change_ip(
|
|
|
|
|
self,
|
|
|
|
|
*,
|
|
|
|
|
vm_id: int,
|
2025-06-30 15:09:41 +03:00
|
|
|
net_type: _nested.NetTypeForChangeIP,
|
|
|
|
|
net_id: int,
|
|
|
|
|
ip_addr: str,
|
2025-06-06 08:20:45 +03:00
|
|
|
) -> CloudapiComputeChangeIpResultBool:
|
|
|
|
|
...
|