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.

23 lines
528 B

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,
ha_mode: bool = False,
start: bool = True,
sysctl_params: None | list[str] = None,
zone_id: None | int = None,
) -> CloudapiLbCreateResultInt:
...