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.
19 lines
403 B
19 lines
403 B
4 weeks ago
|
import dynamix_sdk.base as _base
|
||
|
|
||
|
|
||
|
class CloudapiLbFrontendBindResultBool(_base.BaseAPIResultBool):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CloudapiLbFrontendBindProtocol(_base.BasePostAPIFunctionProtocol):
|
||
|
def frontend_bind(
|
||
|
self,
|
||
|
*,
|
||
|
lb_id: int,
|
||
|
frontend_name: str,
|
||
|
binding_name: str,
|
||
|
ip_addr: str,
|
||
|
port: int,
|
||
|
) -> CloudapiLbFrontendBindResultBool:
|
||
|
...
|