This commit is contained in:
2025-06-06 08:20:45 +03:00
parent 346ffd4255
commit caf367262c
205 changed files with 6115 additions and 200 deletions

View File

@@ -0,0 +1,15 @@
import dynamix_sdk.base as _base
class CloudapiComputeSnapshotCreateResultStr(_base.BaseAPIResultStr):
pass
class CloudapiComputeSnapshotCreateProtocol(_base.BasePostAPIFunctionProtocol):
def snapshot_create(
self,
*,
vm_id: int,
label: str,
) -> CloudapiComputeSnapshotCreateResultStr:
...