You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
437 B
19 lines
437 B
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,
|
|
*,
|
|
ip_addr: str,
|
|
net_id: int,
|
|
net_type: _nested.NetTypeForChangeIP,
|
|
vm_id: int,
|
|
) -> CloudapiComputeChangeIpResultBool:
|
|
...
|