1.0.1
This commit is contained in:
29
src/dynamix_sdk/api/cloudapi/lb/_api.py
Normal file
29
src/dynamix_sdk/api/cloudapi/lb/_api.py
Normal 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
|
||||
Reference in New Issue
Block a user