2025-06-06 08:20:45 +03:00
|
|
|
import dynamix_sdk.base as _base
|
2025-11-25 18:09:46 +03:00
|
|
|
from .change_storage_policy import *
|
2025-06-06 08:20:45 +03:00
|
|
|
from .create import *
|
|
|
|
|
from .create_virtual import *
|
|
|
|
|
from .delete import *
|
|
|
|
|
from .get import *
|
|
|
|
|
from .link import *
|
|
|
|
|
from .list import *
|
|
|
|
|
from .rename import *
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CloudapiImageAPI(
|
|
|
|
|
_base.BaseAPI,
|
2025-11-25 18:09:46 +03:00
|
|
|
CloudapiImageChangeStoragePolicyProtocol,
|
2025-06-06 08:20:45 +03:00
|
|
|
CloudapiImageCreateProtocol,
|
|
|
|
|
CloudapiImageCreateVirtualProtocol,
|
|
|
|
|
CloudapiImageDeleteProtocol,
|
|
|
|
|
CloudapiImageGetProtocol,
|
|
|
|
|
CloudapiImageLinkProtocol,
|
|
|
|
|
CloudapiImageListProtocol,
|
|
|
|
|
CloudapiImageRenameProtocol,
|
|
|
|
|
):
|
|
|
|
|
pass
|