2025-03-21 17:47:09 +03:00
|
|
|
import dynamix_sdk.base as _base
|
|
|
|
|
from .add_user import *
|
2025-06-06 08:20:45 +03:00
|
|
|
from .delete import *
|
2025-03-21 17:47:09 +03:00
|
|
|
from .delete_user import *
|
|
|
|
|
from .disable import *
|
|
|
|
|
from .enable import *
|
2025-06-06 08:20:45 +03:00
|
|
|
from .get import *
|
|
|
|
|
from .list import *
|
|
|
|
|
from .list_deleted import *
|
|
|
|
|
from .restore import *
|
|
|
|
|
from .update import *
|
2025-03-21 17:47:09 +03:00
|
|
|
from .update_user import *
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CloudapiAccountAPI(
|
|
|
|
|
_base.BaseAPI,
|
|
|
|
|
CloudapiAccountAddUserProtocol,
|
2025-06-06 08:20:45 +03:00
|
|
|
CloudapiAccountDeleteProtocol,
|
2025-03-21 17:47:09 +03:00
|
|
|
CloudapiAccountDeleteUserProtocol,
|
|
|
|
|
CloudapiAccountDisableProtocol,
|
|
|
|
|
CloudapiAccountEnableProtocol,
|
2025-06-06 08:20:45 +03:00
|
|
|
CloudapiAccountGetProtocol,
|
|
|
|
|
CloudapiAccountListDeletedProtocol,
|
|
|
|
|
CloudapiAccountListProtocol,
|
|
|
|
|
CloudapiAccountRestoreProtocol,
|
|
|
|
|
CloudapiAccountUpdateProtocol,
|
2025-03-21 17:47:09 +03:00
|
|
|
CloudapiAccountUpdateUserProtocol,
|
|
|
|
|
):
|
|
|
|
|
pass
|