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
501 B
22 lines
501 B
2 months ago
|
import dynamix_sdk.base as _base
|
||
|
|
||
|
|
||
|
class CloudapiLbCreateResultInt(_base.BaseAPIResultInt):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CloudapiLbCreateProtocol(_base.BasePostAPIFunctionProtocol):
|
||
|
def create(
|
||
|
self,
|
||
|
*,
|
||
|
ext_net_id: int,
|
||
|
name: str,
|
||
|
rg_id: int,
|
||
|
vins_id: int,
|
||
|
description: None | str = None,
|
||
|
highly_available: bool = False,
|
||
|
start: bool = True,
|
||
|
sysctl_params: None | list[str] = None,
|
||
|
) -> CloudapiLbCreateResultInt:
|
||
|
...
|