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.
18 lines
369 B
18 lines
369 B
import dynamix_sdk.base as _base
|
|
|
|
|
|
class CloudapiComputeSetCustomFieldsResultBool(_base.BaseAPIResultBool):
|
|
pass
|
|
|
|
|
|
class CloudapiComputeSetCustomFieldsProtocol(
|
|
_base.BasePostAPIFunctionProtocol
|
|
):
|
|
def set_custom_fields(
|
|
self,
|
|
*,
|
|
vm_id: int,
|
|
custom_fields: str,
|
|
) -> CloudapiComputeSetCustomFieldsResultBool:
|
|
...
|