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.
22 lines
499 B
22 lines
499 B
import dynamix_sdk.base as _base
|
|
|
|
|
|
class CloudapiDisksCreateResultInt(_base.BaseAPIResultInt):
|
|
pass
|
|
|
|
|
|
class CloudapiDisksCreateProtocol(_base.BasePostAPIFunctionProtocol):
|
|
def create(
|
|
self,
|
|
*,
|
|
account_id: int,
|
|
grid_id: int,
|
|
name: str,
|
|
size_gb: int,
|
|
iops: int = 2000,
|
|
description: str | None = None,
|
|
sep_id: int | None = None,
|
|
sep_pool_name: str | None = None,
|
|
) -> CloudapiDisksCreateResultInt:
|
|
...
|