Files
dynamix-python-sdk/src/dynamix_sdk/api/cloudapi/k8s/_api.py

58 lines
1.7 KiB
Python
Raw Normal View History

2025-07-21 20:27:59 +07:00
import dynamix_sdk.base as _base
from .create import *
from .delete import *
2025-11-25 18:09:46 +03:00
from .delete_master_from_group import *
from .delete_worker_from_group import *
from .disable import *
from .enable import *
2025-07-21 20:27:59 +07:00
from .get import *
from .get_config import *
2025-11-25 18:09:46 +03:00
from .get_node_annotations import *
from .get_node_labels import *
from .get_node_taints import *
2025-07-21 20:27:59 +07:00
from .list import *
from .list_deleted import *
2025-11-25 18:09:46 +03:00
from .migrate_to_zone import *
2025-07-21 20:27:59 +07:00
from .restore import *
2025-11-25 18:09:46 +03:00
from .start import *
from .stop import *
from .update import *
from .update_worker_nodes_meta_data import *
from .worker_add import *
2025-07-21 20:27:59 +07:00
from .worker_reset import *
from .worker_restart import *
from .workers_group_add import *
from .workers_group_delete import *
from .workers_group_get_by_name import *
class CloudapiK8sAPI(
_base.BaseAPI,
CloudapiK8sCreateProtocol,
2025-11-25 18:09:46 +03:00
CloudapiK8sDeleteMasterFromGroupProtocol,
2025-07-21 20:27:59 +07:00
CloudapiK8sDeleteProtocol,
2025-11-25 18:09:46 +03:00
CloudapiK8sDeleteWorkerFromGroupProtocol,
CloudapiK8sDisableProtocol,
CloudapiK8sEnableProtocol,
2025-07-21 20:27:59 +07:00
CloudapiK8sGetConfigProtocol,
2025-11-25 18:09:46 +03:00
CloudapiK8sGetNodeAnnotationsProtocol,
CloudapiK8sGetNodeLabelsProtocol,
CloudapiK8sGetNodeTaintsProtocol,
2025-07-21 20:27:59 +07:00
CloudapiK8sGetProtocol,
CloudapiK8sListDeletedProtocol,
CloudapiK8sListProtocol,
2025-11-25 18:09:46 +03:00
CloudapiK8sMigrateToZoneProtocol,
2025-07-21 20:27:59 +07:00
CloudapiK8sRestoreProtocol,
2025-11-25 18:09:46 +03:00
CloudapiK8sStartProtocol,
CloudapiK8sStopProtocol,
CloudapiK8sUpdateProtocol,
CloudapiK8sUpdateWorkerNodesMetaDataProtocol,
CloudapiK8sWorkerAddProtocol,
2025-07-21 20:27:59 +07:00
CloudapiK8sWorkerResetProtocol,
CloudapiK8sWorkerRestartProtocol,
CloudapiK8sWorkersGroupAddProtocol,
CloudapiK8sWorkersGroupDeleteProtocol,
CloudapiK8sWorkersGroupGetByNameProtocol,
):
pass