This commit is contained in:
2025-06-06 08:20:45 +03:00
parent 346ffd4255
commit caf367262c
205 changed files with 6115 additions and 200 deletions

View File

@@ -0,0 +1,27 @@
import dynamix_sdk.base as _base
from dynamix_sdk.api import _nested
class CloudapiLbBackendUpdateResultBool(_base.BaseAPIResultBool):
pass
class CloudapiLbBackendUpdateProtocol(_base.BasePostAPIFunctionProtocol):
def backend_update(
self,
*,
lb_id: int,
backend_name: str,
inter: int = 5000,
algorithm: _nested.LBBackendAlgorithm = (
_nested.LBBackendAlgorithm.ROUNDROBIN
),
downinter: int = 1000,
rise: int = 2,
fall: int = 2,
slowstart: int = 60000,
maxconn: int = 250,
maxqueue: int = 256,
weight: int = 256,
) -> CloudapiLbBackendUpdateResultBool:
...