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.
dynamix-python-sdk/src/dynamix_sdk/api/cloudapi/lb/create.py

23 lines
539 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[dict[str, str]] = None,
zone_id: None | int = None,
) -> CloudapiLbCreateResultInt:
...