Platform API¶
This package (deeporigin
) wraps a lower-level autogenerated client library to interact with the platform API.
The following modules are available to interact with various APIs on the platform:
platform.clusters_api
¶
API to interact with the clusters API. To list available methods in this module, use:
from deeporigin.platform import clusters_api
clusters_api.__all__
platform.organizations_api
¶
API to interact with the organizations API. To list available methods in this module, use:
from deeporigin.platform import organizations_api
organizations_api.__all__
platform.tools_api
¶
API to interact with the tools API. To list available methods in this module, use:
from deeporigin.platform import tools_api
tools_api.__all__
platform.users_api
¶
API to interact with the users API. To list available methods in this module, use:
from deeporigin.platform import users_api
users_api.__all__
platform.volumes_api
¶
API to interact with the volumes API. To list available methods in this module, use:
from deeporigin.platform import volumes_api
volumes_api.__all__
platform.workstations_api
¶
API to interact with the workstations API. To list available methods in this module, use:
from deeporigin.platform import workstations_api
workstations_api.__all__