voidrun 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- voidrun-0.0.1/.gitignore +151 -0
- voidrun-0.0.1/PKG-INFO +27 -0
- voidrun-0.0.1/README.md +3 -0
- voidrun-0.0.1/pyproject.toml +55 -0
- voidrun-0.0.1/voidrun/__init__.py +4 -0
- voidrun-0.0.1/voidrun/api_client/__init__.py +160 -0
- voidrun-0.0.1/voidrun/api_client/api/__init__.py +10 -0
- voidrun-0.0.1/voidrun/api_client/api/authentication_api.py +313 -0
- voidrun-0.0.1/voidrun/api_client/api/execution_api.py +4410 -0
- voidrun-0.0.1/voidrun/api_client/api/file_system_api.py +5106 -0
- voidrun-0.0.1/voidrun/api_client/api/images_api.py +1370 -0
- voidrun-0.0.1/voidrun/api_client/api/organizations_api.py +1132 -0
- voidrun-0.0.1/voidrun/api_client/api/sandboxes_api.py +2761 -0
- voidrun-0.0.1/voidrun/api_client/api_client.py +804 -0
- voidrun-0.0.1/voidrun/api_client/api_response.py +21 -0
- voidrun-0.0.1/voidrun/api_client/configuration.py +612 -0
- voidrun-0.0.1/voidrun/api_client/exceptions.py +219 -0
- voidrun-0.0.1/voidrun/api_client/models/__init__.py +67 -0
- voidrun-0.0.1/voidrun/api_client/models/api_key_response.py +107 -0
- voidrun-0.0.1/voidrun/api_client/models/api_response_sandbox.py +100 -0
- voidrun-0.0.1/voidrun/api_client/models/api_response_sandboxes_list.py +105 -0
- voidrun-0.0.1/voidrun/api_client/models/api_response_sandboxes_list_meta.py +93 -0
- voidrun-0.0.1/voidrun/api_client/models/command_kill_response.py +89 -0
- voidrun-0.0.1/voidrun/api_client/models/command_list_response.py +97 -0
- voidrun-0.0.1/voidrun/api_client/models/command_run_response.py +91 -0
- voidrun-0.0.1/voidrun/api_client/models/command_wait_response.py +96 -0
- voidrun-0.0.1/voidrun/api_client/models/compress_request.py +99 -0
- voidrun-0.0.1/voidrun/api_client/models/create_file_request.py +87 -0
- voidrun-0.0.1/voidrun/api_client/models/create_image_request.py +91 -0
- voidrun-0.0.1/voidrun/api_client/models/create_pty_session200_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/create_pty_session200_response_all_of_data.py +90 -0
- voidrun-0.0.1/voidrun/api_client/models/create_pty_session_request.py +90 -0
- voidrun-0.0.1/voidrun/api_client/models/create_sandbox201_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/create_sandbox_request.py +109 -0
- voidrun-0.0.1/voidrun/api_client/models/disk_usage.py +91 -0
- voidrun-0.0.1/voidrun/api_client/models/error_response.py +89 -0
- voidrun-0.0.1/voidrun/api_client/models/exec_request.py +97 -0
- voidrun-0.0.1/voidrun/api_client/models/exec_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/exec_response_data.py +91 -0
- voidrun-0.0.1/voidrun/api_client/models/execute_in_session_request.py +87 -0
- voidrun-0.0.1/voidrun/api_client/models/extract_request.py +89 -0
- voidrun-0.0.1/voidrun/api_client/models/file_event.py +106 -0
- voidrun-0.0.1/voidrun/api_client/models/file_info.py +98 -0
- voidrun-0.0.1/voidrun/api_client/models/file_stats.py +102 -0
- voidrun-0.0.1/voidrun/api_client/models/generate_api_key_request.py +89 -0
- voidrun-0.0.1/voidrun/api_client/models/generated_api_key_response.py +98 -0
- voidrun-0.0.1/voidrun/api_client/models/get_pty_buffer200_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/get_pty_buffer200_response_all_of_data.py +87 -0
- voidrun-0.0.1/voidrun/api_client/models/image.py +100 -0
- voidrun-0.0.1/voidrun/api_client/models/kill_background_process_request.py +87 -0
- voidrun-0.0.1/voidrun/api_client/models/list_files200_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/list_files200_response_data.py +97 -0
- voidrun-0.0.1/voidrun/api_client/models/list_pty_sessions200_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/list_pty_sessions200_response_all_of_data.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/organization.py +104 -0
- voidrun-0.0.1/voidrun/api_client/models/process_info.py +101 -0
- voidrun-0.0.1/voidrun/api_client/models/pty_session_info.py +94 -0
- voidrun-0.0.1/voidrun/api_client/models/register_request.py +90 -0
- voidrun-0.0.1/voidrun/api_client/models/register_response.py +93 -0
- voidrun-0.0.1/voidrun/api_client/models/register_response_data.py +89 -0
- voidrun-0.0.1/voidrun/api_client/models/resize_terminal_request.py +90 -0
- voidrun-0.0.1/voidrun/api_client/models/restore_sandbox_request.py +102 -0
- voidrun-0.0.1/voidrun/api_client/models/run_background_command_request.py +94 -0
- voidrun-0.0.1/voidrun/api_client/models/sandbox.py +118 -0
- voidrun-0.0.1/voidrun/api_client/models/snapshot.py +92 -0
- voidrun-0.0.1/voidrun/api_client/models/start_watch200_response.py +95 -0
- voidrun-0.0.1/voidrun/api_client/models/start_watch200_response_data.py +88 -0
- voidrun-0.0.1/voidrun/api_client/models/start_watch_request.py +91 -0
- voidrun-0.0.1/voidrun/api_client/models/success_response.py +91 -0
- voidrun-0.0.1/voidrun/api_client/py.typed +0 -0
- voidrun-0.0.1/voidrun/api_client/rest.py +263 -0
- voidrun-0.0.1/voidrun/client.py +140 -0
- voidrun-0.0.1/voidrun/commands.py +117 -0
- voidrun-0.0.1/voidrun/fs.py +254 -0
- voidrun-0.0.1/voidrun/interpreter.py +93 -0
- voidrun-0.0.1/voidrun/pty.py +164 -0
- voidrun-0.0.1/voidrun/response.py +23 -0
- voidrun-0.0.1/voidrun/sandbox.py +131 -0
voidrun-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so may be deleted later.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
.python-version
|
|
87
|
+
|
|
88
|
+
# pipenv
|
|
89
|
+
# According to pypa/pipenv#1191, it is recommended to not commit Pipfile.lock if it is a library.
|
|
90
|
+
# For an application, you should commit it.
|
|
91
|
+
# Pipfile.lock
|
|
92
|
+
|
|
93
|
+
# poetry
|
|
94
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
95
|
+
# poetry.lock
|
|
96
|
+
|
|
97
|
+
# pdm
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
99
|
+
# pdm.lock
|
|
100
|
+
|
|
101
|
+
# PEP 582; used by e.g. github.com/pdm-project/pdm
|
|
102
|
+
__pypackages__/
|
|
103
|
+
|
|
104
|
+
# Celery stuff
|
|
105
|
+
celerybeat-schedule
|
|
106
|
+
celerybeat.pid
|
|
107
|
+
|
|
108
|
+
# SageMath parsed files
|
|
109
|
+
*.sage.py
|
|
110
|
+
|
|
111
|
+
# Environments
|
|
112
|
+
.env
|
|
113
|
+
.venv
|
|
114
|
+
env/
|
|
115
|
+
venv/
|
|
116
|
+
ENV/
|
|
117
|
+
env.bak/
|
|
118
|
+
venv.bak/
|
|
119
|
+
|
|
120
|
+
# Spyder project settings
|
|
121
|
+
.spyderproject
|
|
122
|
+
.spyproject
|
|
123
|
+
|
|
124
|
+
# Rope project settings
|
|
125
|
+
.ropeproject
|
|
126
|
+
|
|
127
|
+
# mkdocs documentation
|
|
128
|
+
/site
|
|
129
|
+
|
|
130
|
+
# mypy
|
|
131
|
+
.mypy_cache/
|
|
132
|
+
.dmypy.json
|
|
133
|
+
dmypy.json
|
|
134
|
+
|
|
135
|
+
# Pyre type checker
|
|
136
|
+
.pyre/
|
|
137
|
+
|
|
138
|
+
# pytype static type analyzer
|
|
139
|
+
.pytype/
|
|
140
|
+
|
|
141
|
+
# Cython debug symbols
|
|
142
|
+
cython_debug/
|
|
143
|
+
|
|
144
|
+
# PyCharm
|
|
145
|
+
.idea/
|
|
146
|
+
|
|
147
|
+
# VS Code
|
|
148
|
+
.vscode/
|
|
149
|
+
|
|
150
|
+
# Hatch
|
|
151
|
+
.hatch/
|
voidrun-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: voidrun
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Python SDK for VoidRun AI Sandbox
|
|
5
|
+
Project-URL: Homepage, https://voidrun.io
|
|
6
|
+
Project-URL: Documentation, https://docs.voidrun.io
|
|
7
|
+
Project-URL: Repository, https://github.com/voidrun/py-sdk
|
|
8
|
+
Author-email: VoidRun Team <support@voidrun.io>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Classifier: Framework :: AsyncIO
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Requires-Dist: certifi
|
|
16
|
+
Requires-Dist: httpx>=0.24.0
|
|
17
|
+
Requires-Dist: pydantic>=2.0.0
|
|
18
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
19
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
20
|
+
Requires-Dist: typing-extensions>=4.0.0
|
|
21
|
+
Requires-Dist: urllib3>=2.0.0
|
|
22
|
+
Requires-Dist: websockets>=11.0
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# Voidrun Python SDK
|
|
26
|
+
|
|
27
|
+
Python SDK for the Voidrun API.
|
voidrun-0.0.1/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "voidrun"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Python SDK for VoidRun AI Sandbox"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "VoidRun Team", email = "support@voidrun.io" },
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Framework :: AsyncIO",
|
|
20
|
+
]
|
|
21
|
+
dependencies = [
|
|
22
|
+
"pydantic>=2.0.0",
|
|
23
|
+
"urllib3>=2.0.0",
|
|
24
|
+
"certifi",
|
|
25
|
+
"python-dateutil>=2.8.2",
|
|
26
|
+
"websockets>=11.0",
|
|
27
|
+
"python-dotenv>=1.0.0",
|
|
28
|
+
"typing-extensions>=4.0.0",
|
|
29
|
+
"httpx>=0.24.0",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://voidrun.io"
|
|
34
|
+
Documentation = "https://docs.voidrun.io"
|
|
35
|
+
Repository = "https://github.com/voidrun/py-sdk"
|
|
36
|
+
|
|
37
|
+
[tool.hatch.build.targets.sdist]
|
|
38
|
+
exclude = [
|
|
39
|
+
"/.github",
|
|
40
|
+
"/examples",
|
|
41
|
+
"/tests",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[tool.hatch.build.targets.wheel]
|
|
45
|
+
packages = ["voidrun"]
|
|
46
|
+
|
|
47
|
+
[tool.hatch.envs.default]
|
|
48
|
+
dependencies = [
|
|
49
|
+
"pytest",
|
|
50
|
+
"pytest-asyncio",
|
|
51
|
+
"pytest-mock",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[tool.hatch.envs.default.scripts]
|
|
55
|
+
test = "pytest {args:tests}"
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Hyper Fleet Native API
|
|
7
|
+
|
|
8
|
+
Hyper Fleet Native API provides comprehensive management of virtual machines (sandboxes), file system operations, execution environments, and organizational resources. All endpoints except `/api/register` require the `X-API-Key` header for authentication.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "0.1.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"AuthenticationApi",
|
|
22
|
+
"ExecutionApi",
|
|
23
|
+
"FileSystemApi",
|
|
24
|
+
"ImagesApi",
|
|
25
|
+
"OrganizationsApi",
|
|
26
|
+
"SandboxesApi",
|
|
27
|
+
"ApiResponse",
|
|
28
|
+
"ApiClient",
|
|
29
|
+
"Configuration",
|
|
30
|
+
"OpenApiException",
|
|
31
|
+
"ApiTypeError",
|
|
32
|
+
"ApiValueError",
|
|
33
|
+
"ApiKeyError",
|
|
34
|
+
"ApiAttributeError",
|
|
35
|
+
"ApiException",
|
|
36
|
+
"APIKeyResponse",
|
|
37
|
+
"ApiResponseSandbox",
|
|
38
|
+
"ApiResponseSandboxesList",
|
|
39
|
+
"ApiResponseSandboxesListMeta",
|
|
40
|
+
"CommandKillResponse",
|
|
41
|
+
"CommandListResponse",
|
|
42
|
+
"CommandRunResponse",
|
|
43
|
+
"CommandWaitResponse",
|
|
44
|
+
"CompressRequest",
|
|
45
|
+
"CreateFileRequest",
|
|
46
|
+
"CreateImageRequest",
|
|
47
|
+
"CreatePTYSession200Response",
|
|
48
|
+
"CreatePTYSession200ResponseAllOfData",
|
|
49
|
+
"CreatePTYSessionRequest",
|
|
50
|
+
"CreateSandbox201Response",
|
|
51
|
+
"CreateSandboxRequest",
|
|
52
|
+
"DiskUsage",
|
|
53
|
+
"ErrorResponse",
|
|
54
|
+
"ExecRequest",
|
|
55
|
+
"ExecResponse",
|
|
56
|
+
"ExecResponseData",
|
|
57
|
+
"ExecuteInSessionRequest",
|
|
58
|
+
"ExtractRequest",
|
|
59
|
+
"FileEvent",
|
|
60
|
+
"FileInfo",
|
|
61
|
+
"FileStats",
|
|
62
|
+
"GenerateAPIKeyRequest",
|
|
63
|
+
"GeneratedAPIKeyResponse",
|
|
64
|
+
"GetPTYBuffer200Response",
|
|
65
|
+
"GetPTYBuffer200ResponseAllOfData",
|
|
66
|
+
"Image",
|
|
67
|
+
"KillBackgroundProcessRequest",
|
|
68
|
+
"ListFiles200Response",
|
|
69
|
+
"ListFiles200ResponseData",
|
|
70
|
+
"ListPTYSessions200Response",
|
|
71
|
+
"ListPTYSessions200ResponseAllOfData",
|
|
72
|
+
"Organization",
|
|
73
|
+
"PTYSessionInfo",
|
|
74
|
+
"ProcessInfo",
|
|
75
|
+
"RegisterRequest",
|
|
76
|
+
"RegisterResponse",
|
|
77
|
+
"RegisterResponseData",
|
|
78
|
+
"ResizeTerminalRequest",
|
|
79
|
+
"RestoreSandboxRequest",
|
|
80
|
+
"RunBackgroundCommandRequest",
|
|
81
|
+
"Sandbox",
|
|
82
|
+
"Snapshot",
|
|
83
|
+
"StartWatch200Response",
|
|
84
|
+
"StartWatch200ResponseData",
|
|
85
|
+
"StartWatchRequest",
|
|
86
|
+
"SuccessResponse",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
# import apis into sdk package
|
|
90
|
+
from voidrun.api_client.api.authentication_api import AuthenticationApi as AuthenticationApi
|
|
91
|
+
from voidrun.api_client.api.execution_api import ExecutionApi as ExecutionApi
|
|
92
|
+
from voidrun.api_client.api.file_system_api import FileSystemApi as FileSystemApi
|
|
93
|
+
from voidrun.api_client.api.images_api import ImagesApi as ImagesApi
|
|
94
|
+
from voidrun.api_client.api.organizations_api import OrganizationsApi as OrganizationsApi
|
|
95
|
+
from voidrun.api_client.api.sandboxes_api import SandboxesApi as SandboxesApi
|
|
96
|
+
|
|
97
|
+
# import ApiClient
|
|
98
|
+
from voidrun.api_client.api_response import ApiResponse as ApiResponse
|
|
99
|
+
from voidrun.api_client.api_client import ApiClient as ApiClient
|
|
100
|
+
from voidrun.api_client.configuration import Configuration as Configuration
|
|
101
|
+
from voidrun.api_client.exceptions import OpenApiException as OpenApiException
|
|
102
|
+
from voidrun.api_client.exceptions import ApiTypeError as ApiTypeError
|
|
103
|
+
from voidrun.api_client.exceptions import ApiValueError as ApiValueError
|
|
104
|
+
from voidrun.api_client.exceptions import ApiKeyError as ApiKeyError
|
|
105
|
+
from voidrun.api_client.exceptions import ApiAttributeError as ApiAttributeError
|
|
106
|
+
from voidrun.api_client.exceptions import ApiException as ApiException
|
|
107
|
+
|
|
108
|
+
# import models into sdk package
|
|
109
|
+
from voidrun.api_client.models.api_key_response import APIKeyResponse as APIKeyResponse
|
|
110
|
+
from voidrun.api_client.models.api_response_sandbox import ApiResponseSandbox as ApiResponseSandbox
|
|
111
|
+
from voidrun.api_client.models.api_response_sandboxes_list import ApiResponseSandboxesList as ApiResponseSandboxesList
|
|
112
|
+
from voidrun.api_client.models.api_response_sandboxes_list_meta import ApiResponseSandboxesListMeta as ApiResponseSandboxesListMeta
|
|
113
|
+
from voidrun.api_client.models.command_kill_response import CommandKillResponse as CommandKillResponse
|
|
114
|
+
from voidrun.api_client.models.command_list_response import CommandListResponse as CommandListResponse
|
|
115
|
+
from voidrun.api_client.models.command_run_response import CommandRunResponse as CommandRunResponse
|
|
116
|
+
from voidrun.api_client.models.command_wait_response import CommandWaitResponse as CommandWaitResponse
|
|
117
|
+
from voidrun.api_client.models.compress_request import CompressRequest as CompressRequest
|
|
118
|
+
from voidrun.api_client.models.create_file_request import CreateFileRequest as CreateFileRequest
|
|
119
|
+
from voidrun.api_client.models.create_image_request import CreateImageRequest as CreateImageRequest
|
|
120
|
+
from voidrun.api_client.models.create_pty_session200_response import CreatePTYSession200Response as CreatePTYSession200Response
|
|
121
|
+
from voidrun.api_client.models.create_pty_session200_response_all_of_data import CreatePTYSession200ResponseAllOfData as CreatePTYSession200ResponseAllOfData
|
|
122
|
+
from voidrun.api_client.models.create_pty_session_request import CreatePTYSessionRequest as CreatePTYSessionRequest
|
|
123
|
+
from voidrun.api_client.models.create_sandbox201_response import CreateSandbox201Response as CreateSandbox201Response
|
|
124
|
+
from voidrun.api_client.models.create_sandbox_request import CreateSandboxRequest as CreateSandboxRequest
|
|
125
|
+
from voidrun.api_client.models.disk_usage import DiskUsage as DiskUsage
|
|
126
|
+
from voidrun.api_client.models.error_response import ErrorResponse as ErrorResponse
|
|
127
|
+
from voidrun.api_client.models.exec_request import ExecRequest as ExecRequest
|
|
128
|
+
from voidrun.api_client.models.exec_response import ExecResponse as ExecResponse
|
|
129
|
+
from voidrun.api_client.models.exec_response_data import ExecResponseData as ExecResponseData
|
|
130
|
+
from voidrun.api_client.models.execute_in_session_request import ExecuteInSessionRequest as ExecuteInSessionRequest
|
|
131
|
+
from voidrun.api_client.models.extract_request import ExtractRequest as ExtractRequest
|
|
132
|
+
from voidrun.api_client.models.file_event import FileEvent as FileEvent
|
|
133
|
+
from voidrun.api_client.models.file_info import FileInfo as FileInfo
|
|
134
|
+
from voidrun.api_client.models.file_stats import FileStats as FileStats
|
|
135
|
+
from voidrun.api_client.models.generate_api_key_request import GenerateAPIKeyRequest as GenerateAPIKeyRequest
|
|
136
|
+
from voidrun.api_client.models.generated_api_key_response import GeneratedAPIKeyResponse as GeneratedAPIKeyResponse
|
|
137
|
+
from voidrun.api_client.models.get_pty_buffer200_response import GetPTYBuffer200Response as GetPTYBuffer200Response
|
|
138
|
+
from voidrun.api_client.models.get_pty_buffer200_response_all_of_data import GetPTYBuffer200ResponseAllOfData as GetPTYBuffer200ResponseAllOfData
|
|
139
|
+
from voidrun.api_client.models.image import Image as Image
|
|
140
|
+
from voidrun.api_client.models.kill_background_process_request import KillBackgroundProcessRequest as KillBackgroundProcessRequest
|
|
141
|
+
from voidrun.api_client.models.list_files200_response import ListFiles200Response as ListFiles200Response
|
|
142
|
+
from voidrun.api_client.models.list_files200_response_data import ListFiles200ResponseData as ListFiles200ResponseData
|
|
143
|
+
from voidrun.api_client.models.list_pty_sessions200_response import ListPTYSessions200Response as ListPTYSessions200Response
|
|
144
|
+
from voidrun.api_client.models.list_pty_sessions200_response_all_of_data import ListPTYSessions200ResponseAllOfData as ListPTYSessions200ResponseAllOfData
|
|
145
|
+
from voidrun.api_client.models.organization import Organization as Organization
|
|
146
|
+
from voidrun.api_client.models.pty_session_info import PTYSessionInfo as PTYSessionInfo
|
|
147
|
+
from voidrun.api_client.models.process_info import ProcessInfo as ProcessInfo
|
|
148
|
+
from voidrun.api_client.models.register_request import RegisterRequest as RegisterRequest
|
|
149
|
+
from voidrun.api_client.models.register_response import RegisterResponse as RegisterResponse
|
|
150
|
+
from voidrun.api_client.models.register_response_data import RegisterResponseData as RegisterResponseData
|
|
151
|
+
from voidrun.api_client.models.resize_terminal_request import ResizeTerminalRequest as ResizeTerminalRequest
|
|
152
|
+
from voidrun.api_client.models.restore_sandbox_request import RestoreSandboxRequest as RestoreSandboxRequest
|
|
153
|
+
from voidrun.api_client.models.run_background_command_request import RunBackgroundCommandRequest as RunBackgroundCommandRequest
|
|
154
|
+
from voidrun.api_client.models.sandbox import Sandbox as Sandbox
|
|
155
|
+
from voidrun.api_client.models.snapshot import Snapshot as Snapshot
|
|
156
|
+
from voidrun.api_client.models.start_watch200_response import StartWatch200Response as StartWatch200Response
|
|
157
|
+
from voidrun.api_client.models.start_watch200_response_data import StartWatch200ResponseData as StartWatch200ResponseData
|
|
158
|
+
from voidrun.api_client.models.start_watch_request import StartWatchRequest as StartWatchRequest
|
|
159
|
+
from voidrun.api_client.models.success_response import SuccessResponse as SuccessResponse
|
|
160
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from voidrun.api_client.api.authentication_api import AuthenticationApi
|
|
5
|
+
from voidrun.api_client.api.execution_api import ExecutionApi
|
|
6
|
+
from voidrun.api_client.api.file_system_api import FileSystemApi
|
|
7
|
+
from voidrun.api_client.api.images_api import ImagesApi
|
|
8
|
+
from voidrun.api_client.api.organizations_api import OrganizationsApi
|
|
9
|
+
from voidrun.api_client.api.sandboxes_api import SandboxesApi
|
|
10
|
+
|