1.0.0
This commit is contained in:
23
src/dynamix_sdk/api/cloudapi/compute/update.py
Normal file
23
src/dynamix_sdk/api/cloudapi/compute/update.py
Normal file
@@ -0,0 +1,23 @@
|
||||
import dynamix_sdk.base as _base
|
||||
import dynamix_sdk.api._nested as _nested
|
||||
|
||||
|
||||
class CloudapiComputeUpdateResultBool(_base.BaseAPIResultBool):
|
||||
pass
|
||||
|
||||
|
||||
class CloudapiComputeUpdateProtocol(_base.BasePostAPIFunctionProtocol):
|
||||
def update(
|
||||
self,
|
||||
*,
|
||||
compute_id: int,
|
||||
auto_start: None | bool = None,
|
||||
chipset: None | _nested.Chipset = None,
|
||||
cpu_pin: None | bool = None,
|
||||
description: None | str = None,
|
||||
hp_backed: None | bool = None,
|
||||
name: None | str = None,
|
||||
numa_affinity: None | _nested.NumaAffinity = None,
|
||||
preferred_cpu_cores: None | list[int] = None,
|
||||
) -> CloudapiComputeUpdateResultBool:
|
||||
...
|
||||
Reference in New Issue
Block a user