daytona_api_client_async 0.21.3a0__py3-none-any.whl
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.
Potentially problematic release.
This version of daytona_api_client_async might be problematic. Click here for more details.
- daytona_api_client_async/__init__.py +129 -0
- daytona_api_client_async/api/__init__.py +16 -0
- daytona_api_client_async/api/api_keys_api.py +1391 -0
- daytona_api_client_async/api/docker_registry_api.py +1965 -0
- daytona_api_client_async/api/images_api.py +2350 -0
- daytona_api_client_async/api/nodes_api.py +792 -0
- daytona_api_client_async/api/object_storage_api.py +298 -0
- daytona_api_client_async/api/organizations_api.py +6762 -0
- daytona_api_client_async/api/preview_api.py +819 -0
- daytona_api_client_async/api/runners_api.py +792 -0
- daytona_api_client_async/api/sandbox_api.py +3994 -0
- daytona_api_client_async/api/snapshots_api.py +2059 -0
- daytona_api_client_async/api/toolbox_api.py +11819 -0
- daytona_api_client_async/api/users_api.py +2075 -0
- daytona_api_client_async/api/volumes_api.py +1419 -0
- daytona_api_client_async/api/workspace_api.py +4036 -0
- daytona_api_client_async/api_client.py +801 -0
- daytona_api_client_async/api_response.py +21 -0
- daytona_api_client_async/configuration.py +579 -0
- daytona_api_client_async/exceptions.py +217 -0
- daytona_api_client_async/models/__init__.py +101 -0
- daytona_api_client_async/models/account_provider.py +103 -0
- daytona_api_client_async/models/api_key_list.py +130 -0
- daytona_api_client_async/models/api_key_response.py +123 -0
- daytona_api_client_async/models/build_image.py +107 -0
- daytona_api_client_async/models/build_info.py +108 -0
- daytona_api_client_async/models/build_snapshot.py +115 -0
- daytona_api_client_async/models/command.py +105 -0
- daytona_api_client_async/models/completion_context.py +103 -0
- daytona_api_client_async/models/completion_item.py +113 -0
- daytona_api_client_async/models/completion_list.py +111 -0
- daytona_api_client_async/models/create_api_key.py +119 -0
- daytona_api_client_async/models/create_build_info.py +103 -0
- daytona_api_client_async/models/create_docker_registry.py +120 -0
- daytona_api_client_async/models/create_image.py +105 -0
- daytona_api_client_async/models/create_linked_account.py +103 -0
- daytona_api_client_async/models/create_node.py +135 -0
- daytona_api_client_async/models/create_organization.py +101 -0
- daytona_api_client_async/models/create_organization_invitation.py +115 -0
- daytona_api_client_async/models/create_organization_quota.py +117 -0
- daytona_api_client_async/models/create_organization_role.py +113 -0
- daytona_api_client_async/models/create_runner.py +135 -0
- daytona_api_client_async/models/create_sandbox.py +161 -0
- daytona_api_client_async/models/create_session_request.py +101 -0
- daytona_api_client_async/models/create_snapshot.py +121 -0
- daytona_api_client_async/models/create_user.py +125 -0
- daytona_api_client_async/models/create_volume.py +101 -0
- daytona_api_client_async/models/create_workspace.py +161 -0
- daytona_api_client_async/models/docker_registry.py +123 -0
- daytona_api_client_async/models/execute_request.py +105 -0
- daytona_api_client_async/models/execute_response.py +103 -0
- daytona_api_client_async/models/file_info.py +115 -0
- daytona_api_client_async/models/file_status.py +107 -0
- daytona_api_client_async/models/git_add_request.py +103 -0
- daytona_api_client_async/models/git_branch_request.py +103 -0
- daytona_api_client_async/models/git_checkout_request.py +103 -0
- daytona_api_client_async/models/git_clone_request.py +111 -0
- daytona_api_client_async/models/git_commit_info.py +109 -0
- daytona_api_client_async/models/git_commit_request.py +107 -0
- daytona_api_client_async/models/git_commit_response.py +101 -0
- daytona_api_client_async/models/git_delete_branch_request.py +103 -0
- daytona_api_client_async/models/git_repo_request.py +105 -0
- daytona_api_client_async/models/git_status.py +117 -0
- daytona_api_client_async/models/image_dto.py +145 -0
- daytona_api_client_async/models/image_state.py +45 -0
- daytona_api_client_async/models/list_branch_response.py +101 -0
- daytona_api_client_async/models/lsp_completion_params.py +117 -0
- daytona_api_client_async/models/lsp_document_request.py +105 -0
- daytona_api_client_async/models/lsp_location.py +107 -0
- daytona_api_client_async/models/lsp_server_request.py +103 -0
- daytona_api_client_async/models/lsp_symbol.py +109 -0
- daytona_api_client_async/models/match.py +105 -0
- daytona_api_client_async/models/organization.py +120 -0
- daytona_api_client_async/models/organization_invitation.py +144 -0
- daytona_api_client_async/models/organization_role.py +122 -0
- daytona_api_client_async/models/organization_suspension.py +104 -0
- daytona_api_client_async/models/organization_user.py +131 -0
- daytona_api_client_async/models/paginated_images_dto.py +115 -0
- daytona_api_client_async/models/paginated_snapshots_dto.py +115 -0
- daytona_api_client_async/models/port_preview_url.py +103 -0
- daytona_api_client_async/models/position.py +103 -0
- daytona_api_client_async/models/project_dir_response.py +101 -0
- daytona_api_client_async/models/range.py +110 -0
- daytona_api_client_async/models/registry_push_access_dto.py +111 -0
- daytona_api_client_async/models/replace_request.py +105 -0
- daytona_api_client_async/models/replace_result.py +105 -0
- daytona_api_client_async/models/sandbox.py +180 -0
- daytona_api_client_async/models/sandbox_info.py +105 -0
- daytona_api_client_async/models/sandbox_labels.py +101 -0
- daytona_api_client_async/models/sandbox_state.py +52 -0
- daytona_api_client_async/models/sandbox_volume.py +103 -0
- daytona_api_client_async/models/search_files_response.py +101 -0
- daytona_api_client_async/models/session.py +116 -0
- daytona_api_client_async/models/session_execute_request.py +105 -0
- daytona_api_client_async/models/session_execute_response.py +105 -0
- daytona_api_client_async/models/set_image_general_status.py +101 -0
- daytona_api_client_async/models/set_snapshot_general_status_dto.py +101 -0
- daytona_api_client_async/models/snapshot_dto.py +161 -0
- daytona_api_client_async/models/snapshot_state.py +46 -0
- daytona_api_client_async/models/storage_access_dto.py +111 -0
- daytona_api_client_async/models/toggle_state.py +101 -0
- daytona_api_client_async/models/update_assigned_organization_roles.py +101 -0
- daytona_api_client_async/models/update_docker_registry.py +105 -0
- daytona_api_client_async/models/update_organization_invitation.py +113 -0
- daytona_api_client_async/models/update_organization_member_role.py +108 -0
- daytona_api_client_async/models/update_organization_quota.py +162 -0
- daytona_api_client_async/models/update_organization_role.py +113 -0
- daytona_api_client_async/models/usage_overview.py +113 -0
- daytona_api_client_async/models/user.py +115 -0
- daytona_api_client_async/models/user_public_key.py +103 -0
- daytona_api_client_async/models/volume_dto.py +126 -0
- daytona_api_client_async/models/volume_state.py +43 -0
- daytona_api_client_async/models/workspace.py +204 -0
- daytona_api_client_async/models/workspace_info.py +105 -0
- daytona_api_client_async/models/workspace_labels.py +101 -0
- daytona_api_client_async/models/workspace_state.py +51 -0
- daytona_api_client_async/models/workspace_volume.py +103 -0
- daytona_api_client_async/py.typed +0 -0
- daytona_api_client_async/rest.py +214 -0
- daytona_api_client_async-0.21.3a0.dist-info/METADATA +25 -0
- daytona_api_client_async-0.21.3a0.dist-info/RECORD +123 -0
- daytona_api_client_async-0.21.3a0.dist-info/WHEEL +5 -0
- daytona_api_client_async-0.21.3a0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Daytona
|
|
5
|
+
|
|
6
|
+
Daytona AI platform API Docs
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: support@daytona.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
import pprint
|
|
18
|
+
import re # noqa: F401
|
|
19
|
+
import json
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WorkspaceVolume(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WorkspaceVolume
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
volume_id: StrictStr = Field(description="The ID of the volume", alias="volumeId")
|
|
31
|
+
mount_path: StrictStr = Field(description="The mount path for the volume", alias="mountPath")
|
|
32
|
+
additional_properties: Dict[str, Any] = {}
|
|
33
|
+
__properties: ClassVar[List[str]] = ["volumeId", "mountPath"]
|
|
34
|
+
|
|
35
|
+
model_config = ConfigDict(
|
|
36
|
+
populate_by_name=True,
|
|
37
|
+
validate_assignment=True,
|
|
38
|
+
protected_namespaces=(),
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def to_str(self) -> str:
|
|
43
|
+
"""Returns the string representation of the model using alias"""
|
|
44
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
45
|
+
|
|
46
|
+
def to_json(self) -> str:
|
|
47
|
+
"""Returns the JSON representation of the model using alias"""
|
|
48
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
49
|
+
return json.dumps(self.to_dict())
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
53
|
+
"""Create an instance of WorkspaceVolume from a JSON string"""
|
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
|
55
|
+
|
|
56
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
57
|
+
"""Return the dictionary representation of the model using alias.
|
|
58
|
+
|
|
59
|
+
This has the following differences from calling pydantic's
|
|
60
|
+
`self.model_dump(by_alias=True)`:
|
|
61
|
+
|
|
62
|
+
* `None` is only added to the output dict for nullable fields that
|
|
63
|
+
were set at model initialization. Other fields with value `None`
|
|
64
|
+
are ignored.
|
|
65
|
+
* Fields in `self.additional_properties` are added to the output dict.
|
|
66
|
+
"""
|
|
67
|
+
excluded_fields: Set[str] = set([
|
|
68
|
+
"additional_properties",
|
|
69
|
+
])
|
|
70
|
+
|
|
71
|
+
_dict = self.model_dump(
|
|
72
|
+
by_alias=True,
|
|
73
|
+
exclude=excluded_fields,
|
|
74
|
+
exclude_none=True,
|
|
75
|
+
)
|
|
76
|
+
# puts key-value pairs in additional_properties in the top level
|
|
77
|
+
if self.additional_properties is not None:
|
|
78
|
+
for _key, _value in self.additional_properties.items():
|
|
79
|
+
_dict[_key] = _value
|
|
80
|
+
|
|
81
|
+
return _dict
|
|
82
|
+
|
|
83
|
+
@classmethod
|
|
84
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
85
|
+
"""Create an instance of WorkspaceVolume from a dict"""
|
|
86
|
+
if obj is None:
|
|
87
|
+
return None
|
|
88
|
+
|
|
89
|
+
if not isinstance(obj, dict):
|
|
90
|
+
return cls.model_validate(obj)
|
|
91
|
+
|
|
92
|
+
_obj = cls.model_validate({
|
|
93
|
+
"volumeId": obj.get("volumeId"),
|
|
94
|
+
"mountPath": obj.get("mountPath")
|
|
95
|
+
})
|
|
96
|
+
# store additional fields in additional_properties
|
|
97
|
+
for _key in obj.keys():
|
|
98
|
+
if _key not in cls.__properties:
|
|
99
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
|
100
|
+
|
|
101
|
+
return _obj
|
|
102
|
+
|
|
103
|
+
|
|
File without changes
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Daytona
|
|
5
|
+
|
|
6
|
+
Daytona AI platform API Docs
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: support@daytona.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import io
|
|
17
|
+
import json
|
|
18
|
+
import re
|
|
19
|
+
import ssl
|
|
20
|
+
from typing import Optional, Union
|
|
21
|
+
|
|
22
|
+
import aiohttp
|
|
23
|
+
import aiohttp_retry
|
|
24
|
+
|
|
25
|
+
from daytona_api_client_async.exceptions import ApiException, ApiValueError
|
|
26
|
+
|
|
27
|
+
RESTResponseType = aiohttp.ClientResponse
|
|
28
|
+
|
|
29
|
+
ALLOW_RETRY_METHODS = frozenset({'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PUT', 'TRACE'})
|
|
30
|
+
|
|
31
|
+
class RESTResponse(io.IOBase):
|
|
32
|
+
|
|
33
|
+
def __init__(self, resp) -> None:
|
|
34
|
+
self.response = resp
|
|
35
|
+
self.status = resp.status
|
|
36
|
+
self.reason = resp.reason
|
|
37
|
+
self.data = None
|
|
38
|
+
|
|
39
|
+
async def read(self):
|
|
40
|
+
if self.data is None:
|
|
41
|
+
self.data = await self.response.read()
|
|
42
|
+
return self.data
|
|
43
|
+
|
|
44
|
+
def getheaders(self):
|
|
45
|
+
"""Returns a CIMultiDictProxy of the response headers."""
|
|
46
|
+
return self.response.headers
|
|
47
|
+
|
|
48
|
+
def getheader(self, name, default=None):
|
|
49
|
+
"""Returns a given response header."""
|
|
50
|
+
return self.response.headers.get(name, default)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class RESTClientObject:
|
|
54
|
+
|
|
55
|
+
def __init__(self, configuration) -> None:
|
|
56
|
+
|
|
57
|
+
# maxsize is number of requests to host that are allowed in parallel
|
|
58
|
+
self.maxsize = configuration.connection_pool_maxsize
|
|
59
|
+
|
|
60
|
+
self.ssl_context = ssl.create_default_context(
|
|
61
|
+
cafile=configuration.ssl_ca_cert,
|
|
62
|
+
cadata=configuration.ca_cert_data,
|
|
63
|
+
)
|
|
64
|
+
if configuration.cert_file:
|
|
65
|
+
self.ssl_context.load_cert_chain(
|
|
66
|
+
configuration.cert_file, keyfile=configuration.key_file
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
if not configuration.verify_ssl:
|
|
70
|
+
self.ssl_context.check_hostname = False
|
|
71
|
+
self.ssl_context.verify_mode = ssl.CERT_NONE
|
|
72
|
+
|
|
73
|
+
self.proxy = configuration.proxy
|
|
74
|
+
self.proxy_headers = configuration.proxy_headers
|
|
75
|
+
|
|
76
|
+
self.retries = configuration.retries
|
|
77
|
+
|
|
78
|
+
self.pool_manager: Optional[aiohttp.ClientSession] = None
|
|
79
|
+
self.retry_client: Optional[aiohttp_retry.RetryClient] = None
|
|
80
|
+
|
|
81
|
+
async def close(self) -> None:
|
|
82
|
+
if self.pool_manager:
|
|
83
|
+
await self.pool_manager.close()
|
|
84
|
+
if self.retry_client is not None:
|
|
85
|
+
await self.retry_client.close()
|
|
86
|
+
|
|
87
|
+
async def request(
|
|
88
|
+
self,
|
|
89
|
+
method,
|
|
90
|
+
url,
|
|
91
|
+
headers=None,
|
|
92
|
+
body=None,
|
|
93
|
+
post_params=None,
|
|
94
|
+
_request_timeout=None
|
|
95
|
+
):
|
|
96
|
+
"""Execute request
|
|
97
|
+
|
|
98
|
+
:param method: http request method
|
|
99
|
+
:param url: http request url
|
|
100
|
+
:param headers: http request headers
|
|
101
|
+
:param body: request json body, for `application/json`
|
|
102
|
+
:param post_params: request post parameters,
|
|
103
|
+
`application/x-www-form-urlencoded`
|
|
104
|
+
and `multipart/form-data`
|
|
105
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
106
|
+
number provided, it will be total request
|
|
107
|
+
timeout. It can also be a pair (tuple) of
|
|
108
|
+
(connection, read) timeouts.
|
|
109
|
+
"""
|
|
110
|
+
method = method.upper()
|
|
111
|
+
assert method in [
|
|
112
|
+
'GET',
|
|
113
|
+
'HEAD',
|
|
114
|
+
'DELETE',
|
|
115
|
+
'POST',
|
|
116
|
+
'PUT',
|
|
117
|
+
'PATCH',
|
|
118
|
+
'OPTIONS'
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
if post_params and body:
|
|
122
|
+
raise ApiValueError(
|
|
123
|
+
"body parameter cannot be used with post_params parameter."
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
post_params = post_params or {}
|
|
127
|
+
headers = headers or {}
|
|
128
|
+
# url already contains the URL query string
|
|
129
|
+
timeout = _request_timeout or 5 * 60
|
|
130
|
+
|
|
131
|
+
if 'Content-Type' not in headers:
|
|
132
|
+
headers['Content-Type'] = 'application/json'
|
|
133
|
+
|
|
134
|
+
args = {
|
|
135
|
+
"method": method,
|
|
136
|
+
"url": url,
|
|
137
|
+
"timeout": timeout,
|
|
138
|
+
"headers": headers
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if self.proxy:
|
|
142
|
+
args["proxy"] = self.proxy
|
|
143
|
+
if self.proxy_headers:
|
|
144
|
+
args["proxy_headers"] = self.proxy_headers
|
|
145
|
+
|
|
146
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
|
147
|
+
if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
|
|
148
|
+
if re.search('json', headers['Content-Type'], re.IGNORECASE):
|
|
149
|
+
if body is not None:
|
|
150
|
+
body = json.dumps(body)
|
|
151
|
+
args["data"] = body
|
|
152
|
+
elif headers['Content-Type'] == 'application/x-www-form-urlencoded':
|
|
153
|
+
args["data"] = aiohttp.FormData(post_params)
|
|
154
|
+
elif headers['Content-Type'] == 'multipart/form-data':
|
|
155
|
+
# must del headers['Content-Type'], or the correct
|
|
156
|
+
# Content-Type which generated by aiohttp
|
|
157
|
+
del headers['Content-Type']
|
|
158
|
+
data = aiohttp.FormData()
|
|
159
|
+
for param in post_params:
|
|
160
|
+
k, v = param
|
|
161
|
+
if isinstance(v, tuple) and len(v) == 3:
|
|
162
|
+
data.add_field(
|
|
163
|
+
k,
|
|
164
|
+
value=v[1],
|
|
165
|
+
filename=v[0],
|
|
166
|
+
content_type=v[2]
|
|
167
|
+
)
|
|
168
|
+
else:
|
|
169
|
+
# Ensures that dict objects are serialized
|
|
170
|
+
if isinstance(v, dict):
|
|
171
|
+
v = json.dumps(v)
|
|
172
|
+
elif isinstance(v, int):
|
|
173
|
+
v = str(v)
|
|
174
|
+
data.add_field(k, v)
|
|
175
|
+
args["data"] = data
|
|
176
|
+
|
|
177
|
+
# Pass a `bytes` or `str` parameter directly in the body to support
|
|
178
|
+
# other content types than Json when `body` argument is provided
|
|
179
|
+
# in serialized form
|
|
180
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
|
181
|
+
args["data"] = body
|
|
182
|
+
else:
|
|
183
|
+
# Cannot generate the request from given parameters
|
|
184
|
+
msg = """Cannot prepare a request message for provided
|
|
185
|
+
arguments. Please check that your arguments match
|
|
186
|
+
declared content type."""
|
|
187
|
+
raise ApiException(status=0, reason=msg)
|
|
188
|
+
|
|
189
|
+
pool_manager: Union[aiohttp.ClientSession, aiohttp_retry.RetryClient]
|
|
190
|
+
|
|
191
|
+
# https pool manager
|
|
192
|
+
if self.pool_manager is None:
|
|
193
|
+
self.pool_manager = aiohttp.ClientSession(
|
|
194
|
+
connector=aiohttp.TCPConnector(limit=self.maxsize, ssl=self.ssl_context),
|
|
195
|
+
trust_env=True,
|
|
196
|
+
)
|
|
197
|
+
pool_manager = self.pool_manager
|
|
198
|
+
|
|
199
|
+
if self.retries is not None and method in ALLOW_RETRY_METHODS:
|
|
200
|
+
if self.retry_client is None:
|
|
201
|
+
self.retry_client = aiohttp_retry.RetryClient(
|
|
202
|
+
client_session=self.pool_manager,
|
|
203
|
+
retry_options=aiohttp_retry.ExponentialRetry(
|
|
204
|
+
attempts=self.retries,
|
|
205
|
+
factor=2.0,
|
|
206
|
+
start_timeout=0.1,
|
|
207
|
+
max_timeout=120.0
|
|
208
|
+
)
|
|
209
|
+
)
|
|
210
|
+
pool_manager = self.retry_client
|
|
211
|
+
|
|
212
|
+
r = await pool_manager.request(**args)
|
|
213
|
+
|
|
214
|
+
return RESTResponse(r)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: daytona_api_client_async
|
|
3
|
+
Version: 0.21.3a0
|
|
4
|
+
Summary: Daytona
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: Daytona Platforms Inc.
|
|
7
|
+
Author-email: support@daytona.com
|
|
8
|
+
Keywords: OpenAPI,OpenAPI-Generator,Daytona
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: urllib3<3.0.0,>=1.25.3
|
|
11
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
12
|
+
Requires-Dist: aiohttp>=3.8.4
|
|
13
|
+
Requires-Dist: aiohttp-retry>=2.8.3
|
|
14
|
+
Requires-Dist: pydantic>=2
|
|
15
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: author-email
|
|
18
|
+
Dynamic: description
|
|
19
|
+
Dynamic: description-content-type
|
|
20
|
+
Dynamic: keywords
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
Daytona AI platform API Docs
|
|
25
|
+
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
daytona_api_client_async/__init__.py,sha256=Q-ul6zSTwl1w_SIYab4YsD4RfHTbacAGS76CxwLbuMA,8314
|
|
2
|
+
daytona_api_client_async/api_client.py,sha256=FrpVLztK7lFu1O0ZPkojl5l-tB_jGIKmDAc5k-VOWJg,27598
|
|
3
|
+
daytona_api_client_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
daytona_api_client_async/configuration.py,sha256=hWTtQJ-3aR2SzZScWV02gUUaOt1-L99egXbDD6X692Y,17963
|
|
5
|
+
daytona_api_client_async/exceptions.py,sha256=3gaH4PrTgR6rYIRmHOcYlIDJ-mqS-M_Ut5wcEcVbtdU,6424
|
|
6
|
+
daytona_api_client_async/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
daytona_api_client_async/rest.py,sha256=AqeTEhjdo8wt1a1ngzVVRrzKiDhOkalF6LUM6z6RNqw,7255
|
|
8
|
+
daytona_api_client_async/api/__init__.py,sha256=GlQQru2AkHFflZvxQZk13TGtwjIw09lDgl9Kg4MLbPk,861
|
|
9
|
+
daytona_api_client_async/api/api_keys_api.py,sha256=Bw9dqx-luPwOrYGeEZBIH3qSrnCcLdpyHkH1IRxg8Ms,54877
|
|
10
|
+
daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
|
|
11
|
+
daytona_api_client_async/api/images_api.py,sha256=BRQ3DBgRQqu8VPmLb3ILmtd31jjALVsRra-Qm8Xt1Vc,93499
|
|
12
|
+
daytona_api_client_async/api/nodes_api.py,sha256=Ecm01Dot8NN5ScqYziMavHmuMkiQ-D190TExSSW8IbU,29201
|
|
13
|
+
daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-VXax9W0S20_lZgEpoz02U,11677
|
|
14
|
+
daytona_api_client_async/api/organizations_api.py,sha256=Lvr7dNBS3CoYm4QaO_YTMuC-TRcBgT1F4sLckVfgP3o,267874
|
|
15
|
+
daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
|
|
16
|
+
daytona_api_client_async/api/runners_api.py,sha256=2-EUtCG1fcjKDUdh9iBqoN0_M2Zat8KghhF4NmT6ZCE,29321
|
|
17
|
+
daytona_api_client_async/api/sandbox_api.py,sha256=ZoVetw617cDpOROLqhrnms7IuXwoUYq6kC9PaJ8Cod8,162407
|
|
18
|
+
daytona_api_client_async/api/snapshots_api.py,sha256=C5zAUM8N1HFZ0Bmyl3AiXwNJPg_dlO-SP-5jhErPDD8,82728
|
|
19
|
+
daytona_api_client_async/api/toolbox_api.py,sha256=iQ1f33pX92rUTIGeTIDotf9UA_SO3l3CoYVX1T68jJg,468251
|
|
20
|
+
daytona_api_client_async/api/users_api.py,sha256=m-20QIRMPlDnEn9WLwTQZeT3IcoQkpMyxYixm_R4Xn8,77691
|
|
21
|
+
daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
|
|
22
|
+
daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
|
|
23
|
+
daytona_api_client_async/models/__init__.py,sha256=th3fvWIYB15jsurF9G_SlHX8ZNfPeSr1OGOXCokxgqE,6863
|
|
24
|
+
daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
25
|
+
daytona_api_client_async/models/api_key_list.py,sha256=rJd1xwxcyWA_rRT_FXJvoDnB1xM4l1zUSXDRPuW-r9Y,4967
|
|
26
|
+
daytona_api_client_async/models/api_key_response.py,sha256=OIXwvgE2XgJod_KmMOIsnW2VlotYImFTHQzAWm_A3pc,4573
|
|
27
|
+
daytona_api_client_async/models/build_image.py,sha256=1mfN7J2GFk8P2N5CJ5Enx4TXSLt43_uIpy4Hab-SPWc,3554
|
|
28
|
+
daytona_api_client_async/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
|
|
29
|
+
daytona_api_client_async/models/build_snapshot.py,sha256=B-zB0ogD3dA5pIRWcu1r3PZArgNBwV9AxVX8nZ8HkuU,4221
|
|
30
|
+
daytona_api_client_async/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJmN4ba0d2qFoBg,3403
|
|
31
|
+
daytona_api_client_async/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
|
|
32
|
+
daytona_api_client_async/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
|
|
33
|
+
daytona_api_client_async/models/completion_list.py,sha256=oWsIwnJ0WklFSQaIWFmyuok251GkjIPClJ0KdilWbc4,3647
|
|
34
|
+
daytona_api_client_async/models/create_api_key.py,sha256=E8jDqiPudlMWHyuZNRMR1dPoAgnmrZpr58nzu5qrKoI,4313
|
|
35
|
+
daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
36
|
+
daytona_api_client_async/models/create_docker_registry.py,sha256=pOdS9twot2wjKWcf3-fxq4UuzmUUCFBcPdIIqKynR7c,4322
|
|
37
|
+
daytona_api_client_async/models/create_image.py,sha256=THngVmDF8VoDwRu8rQFcja3JGkSVsfguVmvjPRkJnbU,3415
|
|
38
|
+
daytona_api_client_async/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
39
|
+
daytona_api_client_async/models/create_node.py,sha256=oMRNg2Zt_o4s8FYZF_94kaJ5K53zgT5GtxHrfvFt-xc,4516
|
|
40
|
+
daytona_api_client_async/models/create_organization.py,sha256=0sDPZBYWzMT5pc0edRwPRnDZ9nz4rlOhnNhmwxbtfZg,3091
|
|
41
|
+
daytona_api_client_async/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfVqffuwzuqaAsZ-Ml-1xGM5RndmIz-Gk,4016
|
|
42
|
+
daytona_api_client_async/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
|
|
43
|
+
daytona_api_client_async/models/create_organization_role.py,sha256=yuSpdd9YQco18BMLL1Ni3ZWNryiKpR1qeBjOcQ4hNLU,4031
|
|
44
|
+
daytona_api_client_async/models/create_runner.py,sha256=x-o7jaz4tXwfMH7FctKQjW9kmvCZajRuZwJZYwSmoz4,4524
|
|
45
|
+
daytona_api_client_async/models/create_sandbox.py,sha256=_NSLZVolFY9kV8k3is4e-Q9F8tK9T_L-ndY5e0YsFWc,7095
|
|
46
|
+
daytona_api_client_async/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
|
|
47
|
+
daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0MDARjzHp3fSfRmeAtgVXc,4774
|
|
48
|
+
daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
|
|
49
|
+
daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
|
|
50
|
+
daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
|
|
51
|
+
daytona_api_client_async/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
|
|
52
|
+
daytona_api_client_async/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
|
|
53
|
+
daytona_api_client_async/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
|
|
54
|
+
daytona_api_client_async/models/file_info.py,sha256=XjAMg_C64Or2UqYeABmkupuL91x_lQ_lwEVrt6I8oQY,3624
|
|
55
|
+
daytona_api_client_async/models/file_status.py,sha256=FlYS6S_BXaGg-svQ5KXee_iEC-QlBsYLjghvSSXXZao,3231
|
|
56
|
+
daytona_api_client_async/models/git_add_request.py,sha256=goBcduXYh5TVK-IzXagQdsRm6j1O_Iu67RcGDdo2NDU,3156
|
|
57
|
+
daytona_api_client_async/models/git_branch_request.py,sha256=5xA1566ZIeeQoLItu9PXH0lQbxFjyWstTELlvuMbapU,3093
|
|
58
|
+
daytona_api_client_async/models/git_checkout_request.py,sha256=cNy-DCFoICt3B1RSbhxCTYELKO1pRrC0kGcCXedH0s8,3109
|
|
59
|
+
daytona_api_client_async/models/git_clone_request.py,sha256=WiGoiG8pwQBAOiZR0M94ajcoVmGtX-5ZCPSGtc8iHRI,3483
|
|
60
|
+
daytona_api_client_async/models/git_commit_info.py,sha256=VncJ0dBvx1_5Bg8NpPDUrpKQC6hoJmWnkkDKtrRG7ws,3320
|
|
61
|
+
daytona_api_client_async/models/git_commit_request.py,sha256=_gtn48nT6RboB1VDJoQNpVrKc2lgSVgWdP4YkiX5UpY,3247
|
|
62
|
+
daytona_api_client_async/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7axt6nQRE6uTPWPJZdJli-z5mYM,3032
|
|
63
|
+
daytona_api_client_async/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
|
|
64
|
+
daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
|
|
65
|
+
daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
|
|
66
|
+
daytona_api_client_async/models/image_dto.py,sha256=6LMXMuObi2HH82ybY2qILl121Xy9a5XqXYSc46NlUMA,5164
|
|
67
|
+
daytona_api_client_async/models/image_state.py,sha256=y71lehJMB4DjFKYxCrQ_-su4Rd-y7PQUEzocS8v-LII,918
|
|
68
|
+
daytona_api_client_async/models/list_branch_response.py,sha256=xGsMf4O7UtthJWbPxxX8WuN8aUch9Pdn0PbLiV_3UUs,3058
|
|
69
|
+
daytona_api_client_async/models/lsp_completion_params.py,sha256=NLalMGgtovPKHIs2FuSByykeVrcvRiUFyyaKFV3TfT8,4200
|
|
70
|
+
daytona_api_client_async/models/lsp_document_request.py,sha256=E3ZQdeykxfDWjyx5jpqDxMNFrkwJIim81FCaM_4hQc0,3397
|
|
71
|
+
daytona_api_client_async/models/lsp_location.py,sha256=vm-l4CjDz_q6JdBHedv0FXJ9YJ2CbPyIYmnID5zPcC8,3337
|
|
72
|
+
daytona_api_client_async/models/lsp_server_request.py,sha256=jqA17U7j4aXDuBkosNqKdnWbeM7u8QrxTDThOGsUJoc,3292
|
|
73
|
+
daytona_api_client_async/models/lsp_symbol.py,sha256=84tJY46PFQh87WEYoWVll1CvzoWQqP3lF4qpV4gzOlE,3501
|
|
74
|
+
daytona_api_client_async/models/match.py,sha256=h0OT21plFQwIyK2fD3LClSyeW43L46oztO4oNuRtuzI,3177
|
|
75
|
+
daytona_api_client_async/models/organization.py,sha256=ld6jkgn1DyXHTM1R635toY8JMDYlayAua9sFQLfJh_4,4411
|
|
76
|
+
daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
|
|
77
|
+
daytona_api_client_async/models/organization_role.py,sha256=CuPMczKxNUpHeJPPaqBX7i72__T4PX7f_lQgZhtqoxI,4533
|
|
78
|
+
daytona_api_client_async/models/organization_suspension.py,sha256=YQSqu_htRmq9vPMsrTdoK4ce1iC_Y0SXrn2CKj7q_TE,3246
|
|
79
|
+
daytona_api_client_async/models/organization_user.py,sha256=Dsk4ziJPNVk4_Nkm-RTePYTeS8sw3RBfHJ-ulY9-A2w,4895
|
|
80
|
+
daytona_api_client_async/models/paginated_images_dto.py,sha256=3I2PVVW6j3dlvBQepNSfkTjcq89l07R81U9b_fTV57s,3841
|
|
81
|
+
daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
|
|
82
|
+
daytona_api_client_async/models/port_preview_url.py,sha256=JHGM3A51QTE5sYb0OVkelWwMCfA1KrHx4viqcSf6W2M,3163
|
|
83
|
+
daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
|
|
84
|
+
daytona_api_client_async/models/project_dir_response.py,sha256=o0Ibu6QIWgNay-YZqgJp5qSAiTemZbPnkhNiOLBGrE8,3059
|
|
85
|
+
daytona_api_client_async/models/range.py,sha256=F48OUblVs_QhZ4FfNr_IIgWC42FXAXVDwX0I1z-9Gds,3518
|
|
86
|
+
daytona_api_client_async/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
|
|
87
|
+
daytona_api_client_async/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
|
|
88
|
+
daytona_api_client_async/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
|
|
89
|
+
daytona_api_client_async/models/sandbox.py,sha256=CTEQM_XhcM0yQhPtJzamN5nC44j0IjUa-_yAQ-1XWhQ,8627
|
|
90
|
+
daytona_api_client_async/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
|
|
91
|
+
daytona_api_client_async/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
|
|
92
|
+
daytona_api_client_async/models/sandbox_state.py,sha256=PDvt8EowYJrte0vov6MQafNEU9XaHGLS7xTgpRPybqY,1136
|
|
93
|
+
daytona_api_client_async/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
|
|
94
|
+
daytona_api_client_async/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
|
|
95
|
+
daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
|
|
96
|
+
daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
|
|
97
|
+
daytona_api_client_async/models/session_execute_response.py,sha256=_TYkpP7y3HKGYRKUPS1PxXlWQKl2iHOqeYP6jwNR48Q,3558
|
|
98
|
+
daytona_api_client_async/models/set_image_general_status.py,sha256=V3B4pw1yrfdbxTuC0sXVhGO-8qCeEgC0vVuvzZPyxf8,3121
|
|
99
|
+
daytona_api_client_async/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
|
|
100
|
+
daytona_api_client_async/models/snapshot_dto.py,sha256=Stjc8ZecK17MmWT5hYDpa4D1X8G4VGHOY1ZC24LufAg,6141
|
|
101
|
+
daytona_api_client_async/models/snapshot_state.py,sha256=U8BrsExL-o4hSPbkLP2lRQtRl1LIRsheNOij84H8JzE,949
|
|
102
|
+
daytona_api_client_async/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
|
|
103
|
+
daytona_api_client_async/models/toggle_state.py,sha256=6EGZ3_exKZ45Awog-I-9SiEE1wzxVk-dSSfl9IyMf1E,3087
|
|
104
|
+
daytona_api_client_async/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
105
|
+
daytona_api_client_async/models/update_docker_registry.py,sha256=XHnBWIRTxZtCXv-rNUVd96dkSqDENPSiC9EUQ_GwyxU,3366
|
|
106
|
+
daytona_api_client_async/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
107
|
+
daytona_api_client_async/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
108
|
+
daytona_api_client_async/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
109
|
+
daytona_api_client_async/models/update_organization_role.py,sha256=5AtiPcJlOFIqV3zyExT2hIHQcWCAbLzfAHX7mVxBs4o,4031
|
|
110
|
+
daytona_api_client_async/models/usage_overview.py,sha256=OvQ7AS-BvkGeVDtlV2eo9sBAZt1jRmJqPUHJCT4F6bU,4126
|
|
111
|
+
daytona_api_client_async/models/user.py,sha256=VQVYrcI4T_MUz21_rweYVcHEpBsjlhBamDFm2eyJMfE,3890
|
|
112
|
+
daytona_api_client_async/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
|
|
113
|
+
daytona_api_client_async/models/volume_dto.py,sha256=yqEdmaSVOLfHdF5nMXJUzbVChRh2K2lmpjfUi5vbJnA,4600
|
|
114
|
+
daytona_api_client_async/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
|
|
115
|
+
daytona_api_client_async/models/workspace.py,sha256=ddtGkDR_f4p8STRYI-BvxxKN7AYHa2MB_YqOMoY20as,10206
|
|
116
|
+
daytona_api_client_async/models/workspace_info.py,sha256=aO9EkS6E4LhjrFAY25FJZYnhI6VZt2wQVS-Rj0ptILQ,3503
|
|
117
|
+
daytona_api_client_async/models/workspace_labels.py,sha256=aMjsVYM4rezpMD6jLVbPqdi72DIIltjqPP0kuGueUsg,3099
|
|
118
|
+
daytona_api_client_async/models/workspace_state.py,sha256=AqPukjpvYLhkThzx8T4WsKKSuXOOxLwFZ8385AtNVtE,1108
|
|
119
|
+
daytona_api_client_async/models/workspace_volume.py,sha256=Suo2yiRw80i_24Yp5lFsWpQoykTOxqjHYVQPnx84vGc,3268
|
|
120
|
+
daytona_api_client_async-0.21.3a0.dist-info/METADATA,sha256=ju53HfsL3Ln4Kl0P1PN6EOcBPh51Tai0Ot4j2pp2zXI,648
|
|
121
|
+
daytona_api_client_async-0.21.3a0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
122
|
+
daytona_api_client_async-0.21.3a0.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
123
|
+
daytona_api_client_async-0.21.3a0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
daytona_api_client_async
|