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,29 @@
import dynamix_sdk.base as _base
from .backend_create import *
from .backend_delete import *
from .backend_server_add import *
from .backend_server_delete import *
from .backend_server_update import *
from .backend_update import *
from .create import *
from .delete import *
from .get import *
from .list import *
from .list_deleted import *
class CloudapiLbAPI(
_base.BaseAPI,
CloudapiLbBackendCreateProtocol,
CloudapiLbBackendDeleteProtocol,
CloudapiLbBackendServerAddProtocol,
CloudapiLbBackendServerDeleteProtocol,
CloudapiLbBackendServerUpdateProtocol,
CloudapiLbBackendUpdateProtocol,
CloudapiLbCreateProtocol,
CloudapiLbDeleteProtocol,
CloudapiLbGetProtocol,
CloudapiLbListDeletedProtocol,
CloudapiLbListProtocol,
):
pass