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.
17 lines
358 B
17 lines
358 B
import dynamix_sdk.base as _base
|
|
|
|
|
|
class CloudapiComputeChangeMacResultBool(_base.BaseAPIResultBool):
|
|
pass
|
|
|
|
|
|
class CloudapiComputeChangeMacProtocol(_base.BasePostAPIFunctionProtocol):
|
|
def change_mac(
|
|
self,
|
|
*,
|
|
vm_id: int,
|
|
current_mac: str,
|
|
new_mac: str,
|
|
) -> CloudapiComputeChangeMacResultBool:
|
|
...
|