daytona_api_client_async 0.26.0rc2__py3-none-any.whl → 0.27.0__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.

@@ -18,6 +18,7 @@
18
18
  __version__ = "0.0.0-dev"
19
19
 
20
20
  # import apis into sdk package
21
+ from daytona_api_client_async.api.health_api import HealthApi
21
22
  from daytona_api_client_async.api.api_keys_api import ApiKeysApi
22
23
  from daytona_api_client_async.api.audit_api import AuditApi
23
24
  from daytona_api_client_async.api.docker_registry_api import DockerRegistryApi
@@ -90,6 +91,9 @@ from daytona_api_client_async.models.git_commit_response import GitCommitRespons
90
91
  from daytona_api_client_async.models.git_delete_branch_request import GitDeleteBranchRequest
91
92
  from daytona_api_client_async.models.git_repo_request import GitRepoRequest
92
93
  from daytona_api_client_async.models.git_status import GitStatus
94
+ from daytona_api_client_async.models.health_controller_check200_response import HealthControllerCheck200Response
95
+ from daytona_api_client_async.models.health_controller_check200_response_info_value import HealthControllerCheck200ResponseInfoValue
96
+ from daytona_api_client_async.models.health_controller_check503_response import HealthControllerCheck503Response
93
97
  from daytona_api_client_async.models.keyboard_hotkey_request import KeyboardHotkeyRequest
94
98
  from daytona_api_client_async.models.keyboard_press_request import KeyboardPressRequest
95
99
  from daytona_api_client_async.models.keyboard_type_request import KeyboardTypeRequest
@@ -143,7 +147,6 @@ from daytona_api_client_async.models.screenshot_response import ScreenshotRespon
143
147
  from daytona_api_client_async.models.search_files_response import SearchFilesResponse
144
148
  from daytona_api_client_async.models.send_webhook_dto import SendWebhookDto
145
149
  from daytona_api_client_async.models.session import Session
146
- from daytona_api_client_async.models.session_command_logs_response import SessionCommandLogsResponse
147
150
  from daytona_api_client_async.models.session_execute_request import SessionExecuteRequest
148
151
  from daytona_api_client_async.models.session_execute_response import SessionExecuteResponse
149
152
  from daytona_api_client_async.models.set_snapshot_general_status_dto import SetSnapshotGeneralStatusDto
@@ -1,6 +1,7 @@
1
1
  # flake8: noqa
2
2
 
3
3
  # import apis into api package
4
+ from daytona_api_client_async.api.health_api import HealthApi
4
5
  from daytona_api_client_async.api.api_keys_api import ApiKeysApi
5
6
  from daytona_api_client_async.api.audit_api import AuditApi
6
7
  from daytona_api_client_async.api.docker_registry_api import DockerRegistryApi
@@ -596,6 +596,288 @@ class ApiKeysApi:
596
596
 
597
597
 
598
598
 
599
+ @validate_call
600
+ async def delete_api_key_for_user(
601
+ self,
602
+ user_id: StrictStr,
603
+ name: StrictStr,
604
+ x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
605
+ _request_timeout: Union[
606
+ None,
607
+ Annotated[StrictFloat, Field(gt=0)],
608
+ Tuple[
609
+ Annotated[StrictFloat, Field(gt=0)],
610
+ Annotated[StrictFloat, Field(gt=0)]
611
+ ]
612
+ ] = None,
613
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
614
+ _content_type: Optional[StrictStr] = None,
615
+ _headers: Optional[Dict[StrictStr, Any]] = None,
616
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
617
+ ) -> None:
618
+ """Delete API key for user
619
+
620
+
621
+ :param user_id: (required)
622
+ :type user_id: str
623
+ :param name: (required)
624
+ :type name: str
625
+ :param x_daytona_organization_id: Use with JWT to specify the organization ID
626
+ :type x_daytona_organization_id: str
627
+ :param _request_timeout: timeout setting for this request. If one
628
+ number provided, it will be total request
629
+ timeout. It can also be a pair (tuple) of
630
+ (connection, read) timeouts.
631
+ :type _request_timeout: int, tuple(int, int), optional
632
+ :param _request_auth: set to override the auth_settings for an a single
633
+ request; this effectively ignores the
634
+ authentication in the spec for a single request.
635
+ :type _request_auth: dict, optional
636
+ :param _content_type: force content-type for the request.
637
+ :type _content_type: str, Optional
638
+ :param _headers: set to override the headers for a single
639
+ request; this effectively ignores the headers
640
+ in the spec for a single request.
641
+ :type _headers: dict, optional
642
+ :param _host_index: set to override the host_index for a single
643
+ request; this effectively ignores the host_index
644
+ in the spec for a single request.
645
+ :type _host_index: int, optional
646
+ :return: Returns the result object.
647
+ """ # noqa: E501
648
+
649
+ _param = self._delete_api_key_for_user_serialize(
650
+ user_id=user_id,
651
+ name=name,
652
+ x_daytona_organization_id=x_daytona_organization_id,
653
+ _request_auth=_request_auth,
654
+ _content_type=_content_type,
655
+ _headers=_headers,
656
+ _host_index=_host_index
657
+ )
658
+
659
+ _response_types_map: Dict[str, Optional[str]] = {
660
+ '204': None,
661
+ }
662
+ response_data = await self.api_client.call_api(
663
+ *_param,
664
+ _request_timeout=_request_timeout
665
+ )
666
+ await response_data.read()
667
+ return self.api_client.response_deserialize(
668
+ response_data=response_data,
669
+ response_types_map=_response_types_map,
670
+ ).data
671
+
672
+
673
+ @validate_call
674
+ async def delete_api_key_for_user_with_http_info(
675
+ self,
676
+ user_id: StrictStr,
677
+ name: StrictStr,
678
+ x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
679
+ _request_timeout: Union[
680
+ None,
681
+ Annotated[StrictFloat, Field(gt=0)],
682
+ Tuple[
683
+ Annotated[StrictFloat, Field(gt=0)],
684
+ Annotated[StrictFloat, Field(gt=0)]
685
+ ]
686
+ ] = None,
687
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
688
+ _content_type: Optional[StrictStr] = None,
689
+ _headers: Optional[Dict[StrictStr, Any]] = None,
690
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
691
+ ) -> ApiResponse[None]:
692
+ """Delete API key for user
693
+
694
+
695
+ :param user_id: (required)
696
+ :type user_id: str
697
+ :param name: (required)
698
+ :type name: str
699
+ :param x_daytona_organization_id: Use with JWT to specify the organization ID
700
+ :type x_daytona_organization_id: str
701
+ :param _request_timeout: timeout setting for this request. If one
702
+ number provided, it will be total request
703
+ timeout. It can also be a pair (tuple) of
704
+ (connection, read) timeouts.
705
+ :type _request_timeout: int, tuple(int, int), optional
706
+ :param _request_auth: set to override the auth_settings for an a single
707
+ request; this effectively ignores the
708
+ authentication in the spec for a single request.
709
+ :type _request_auth: dict, optional
710
+ :param _content_type: force content-type for the request.
711
+ :type _content_type: str, Optional
712
+ :param _headers: set to override the headers for a single
713
+ request; this effectively ignores the headers
714
+ in the spec for a single request.
715
+ :type _headers: dict, optional
716
+ :param _host_index: set to override the host_index for a single
717
+ request; this effectively ignores the host_index
718
+ in the spec for a single request.
719
+ :type _host_index: int, optional
720
+ :return: Returns the result object.
721
+ """ # noqa: E501
722
+
723
+ _param = self._delete_api_key_for_user_serialize(
724
+ user_id=user_id,
725
+ name=name,
726
+ x_daytona_organization_id=x_daytona_organization_id,
727
+ _request_auth=_request_auth,
728
+ _content_type=_content_type,
729
+ _headers=_headers,
730
+ _host_index=_host_index
731
+ )
732
+
733
+ _response_types_map: Dict[str, Optional[str]] = {
734
+ '204': None,
735
+ }
736
+ response_data = await self.api_client.call_api(
737
+ *_param,
738
+ _request_timeout=_request_timeout
739
+ )
740
+ await response_data.read()
741
+ return self.api_client.response_deserialize(
742
+ response_data=response_data,
743
+ response_types_map=_response_types_map,
744
+ )
745
+
746
+
747
+ @validate_call
748
+ async def delete_api_key_for_user_without_preload_content(
749
+ self,
750
+ user_id: StrictStr,
751
+ name: StrictStr,
752
+ x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
753
+ _request_timeout: Union[
754
+ None,
755
+ Annotated[StrictFloat, Field(gt=0)],
756
+ Tuple[
757
+ Annotated[StrictFloat, Field(gt=0)],
758
+ Annotated[StrictFloat, Field(gt=0)]
759
+ ]
760
+ ] = None,
761
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
762
+ _content_type: Optional[StrictStr] = None,
763
+ _headers: Optional[Dict[StrictStr, Any]] = None,
764
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
765
+ ) -> RESTResponseType:
766
+ """Delete API key for user
767
+
768
+
769
+ :param user_id: (required)
770
+ :type user_id: str
771
+ :param name: (required)
772
+ :type name: str
773
+ :param x_daytona_organization_id: Use with JWT to specify the organization ID
774
+ :type x_daytona_organization_id: str
775
+ :param _request_timeout: timeout setting for this request. If one
776
+ number provided, it will be total request
777
+ timeout. It can also be a pair (tuple) of
778
+ (connection, read) timeouts.
779
+ :type _request_timeout: int, tuple(int, int), optional
780
+ :param _request_auth: set to override the auth_settings for an a single
781
+ request; this effectively ignores the
782
+ authentication in the spec for a single request.
783
+ :type _request_auth: dict, optional
784
+ :param _content_type: force content-type for the request.
785
+ :type _content_type: str, Optional
786
+ :param _headers: set to override the headers for a single
787
+ request; this effectively ignores the headers
788
+ in the spec for a single request.
789
+ :type _headers: dict, optional
790
+ :param _host_index: set to override the host_index for a single
791
+ request; this effectively ignores the host_index
792
+ in the spec for a single request.
793
+ :type _host_index: int, optional
794
+ :return: Returns the result object.
795
+ """ # noqa: E501
796
+
797
+ _param = self._delete_api_key_for_user_serialize(
798
+ user_id=user_id,
799
+ name=name,
800
+ x_daytona_organization_id=x_daytona_organization_id,
801
+ _request_auth=_request_auth,
802
+ _content_type=_content_type,
803
+ _headers=_headers,
804
+ _host_index=_host_index
805
+ )
806
+
807
+ _response_types_map: Dict[str, Optional[str]] = {
808
+ '204': None,
809
+ }
810
+ response_data = await self.api_client.call_api(
811
+ *_param,
812
+ _request_timeout=_request_timeout
813
+ )
814
+ return response_data.response
815
+
816
+
817
+ def _delete_api_key_for_user_serialize(
818
+ self,
819
+ user_id,
820
+ name,
821
+ x_daytona_organization_id,
822
+ _request_auth,
823
+ _content_type,
824
+ _headers,
825
+ _host_index,
826
+ ) -> RequestSerialized:
827
+
828
+ _host = None
829
+
830
+ _collection_formats: Dict[str, str] = {
831
+ }
832
+
833
+ _path_params: Dict[str, str] = {}
834
+ _query_params: List[Tuple[str, str]] = []
835
+ _header_params: Dict[str, Optional[str]] = _headers or {}
836
+ _form_params: List[Tuple[str, str]] = []
837
+ _files: Dict[
838
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
839
+ ] = {}
840
+ _body_params: Optional[bytes] = None
841
+
842
+ # process the path parameters
843
+ if user_id is not None:
844
+ _path_params['userId'] = user_id
845
+ if name is not None:
846
+ _path_params['name'] = name
847
+ # process the query parameters
848
+ # process the header parameters
849
+ if x_daytona_organization_id is not None:
850
+ _header_params['X-Daytona-Organization-ID'] = x_daytona_organization_id
851
+ # process the form parameters
852
+ # process the body parameter
853
+
854
+
855
+
856
+
857
+ # authentication setting
858
+ _auth_settings: List[str] = [
859
+ 'bearer',
860
+ 'oauth2'
861
+ ]
862
+
863
+ return self.api_client.param_serialize(
864
+ method='DELETE',
865
+ resource_path='/api-keys/{userId}/{name}',
866
+ path_params=_path_params,
867
+ query_params=_query_params,
868
+ header_params=_header_params,
869
+ body=_body_params,
870
+ post_params=_form_params,
871
+ files=_files,
872
+ auth_settings=_auth_settings,
873
+ collection_formats=_collection_formats,
874
+ _host=_host,
875
+ _request_auth=_request_auth
876
+ )
877
+
878
+
879
+
880
+
599
881
  @validate_call
600
882
  async def get_api_key(
601
883
  self,
@@ -0,0 +1,282 @@
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
+ import warnings
16
+ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
+ from typing import Any, Dict, List, Optional, Tuple, Union
18
+ from typing_extensions import Annotated
19
+
20
+ from daytona_api_client_async.models.health_controller_check200_response import HealthControllerCheck200Response
21
+
22
+ from daytona_api_client_async.api_client import ApiClient, RequestSerialized
23
+ from daytona_api_client_async.api_response import ApiResponse
24
+ from daytona_api_client_async.rest import RESTResponseType
25
+
26
+
27
+ class HealthApi:
28
+ """NOTE: This class is auto generated by OpenAPI Generator
29
+ Ref: https://openapi-generator.tech
30
+
31
+ Do not edit the class manually.
32
+ """
33
+
34
+ def __init__(self, api_client=None) -> None:
35
+ if api_client is None:
36
+ api_client = ApiClient.get_default()
37
+ self.api_client = api_client
38
+
39
+
40
+ @validate_call
41
+ async def health_controller_check(
42
+ self,
43
+ _request_timeout: Union[
44
+ None,
45
+ Annotated[StrictFloat, Field(gt=0)],
46
+ Tuple[
47
+ Annotated[StrictFloat, Field(gt=0)],
48
+ Annotated[StrictFloat, Field(gt=0)]
49
+ ]
50
+ ] = None,
51
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
52
+ _content_type: Optional[StrictStr] = None,
53
+ _headers: Optional[Dict[StrictStr, Any]] = None,
54
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
55
+ ) -> HealthControllerCheck200Response:
56
+ """health_controller_check
57
+
58
+
59
+ :param _request_timeout: timeout setting for this request. If one
60
+ number provided, it will be total request
61
+ timeout. It can also be a pair (tuple) of
62
+ (connection, read) timeouts.
63
+ :type _request_timeout: int, tuple(int, int), optional
64
+ :param _request_auth: set to override the auth_settings for an a single
65
+ request; this effectively ignores the
66
+ authentication in the spec for a single request.
67
+ :type _request_auth: dict, optional
68
+ :param _content_type: force content-type for the request.
69
+ :type _content_type: str, Optional
70
+ :param _headers: set to override the headers for a single
71
+ request; this effectively ignores the headers
72
+ in the spec for a single request.
73
+ :type _headers: dict, optional
74
+ :param _host_index: set to override the host_index for a single
75
+ request; this effectively ignores the host_index
76
+ in the spec for a single request.
77
+ :type _host_index: int, optional
78
+ :return: Returns the result object.
79
+ """ # noqa: E501
80
+
81
+ _param = self._health_controller_check_serialize(
82
+ _request_auth=_request_auth,
83
+ _content_type=_content_type,
84
+ _headers=_headers,
85
+ _host_index=_host_index
86
+ )
87
+
88
+ _response_types_map: Dict[str, Optional[str]] = {
89
+ '200': "HealthControllerCheck200Response",
90
+ '503': "HealthControllerCheck503Response",
91
+ }
92
+ response_data = await self.api_client.call_api(
93
+ *_param,
94
+ _request_timeout=_request_timeout
95
+ )
96
+ await response_data.read()
97
+ return self.api_client.response_deserialize(
98
+ response_data=response_data,
99
+ response_types_map=_response_types_map,
100
+ ).data
101
+
102
+
103
+ @validate_call
104
+ async def health_controller_check_with_http_info(
105
+ self,
106
+ _request_timeout: Union[
107
+ None,
108
+ Annotated[StrictFloat, Field(gt=0)],
109
+ Tuple[
110
+ Annotated[StrictFloat, Field(gt=0)],
111
+ Annotated[StrictFloat, Field(gt=0)]
112
+ ]
113
+ ] = None,
114
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
115
+ _content_type: Optional[StrictStr] = None,
116
+ _headers: Optional[Dict[StrictStr, Any]] = None,
117
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
118
+ ) -> ApiResponse[HealthControllerCheck200Response]:
119
+ """health_controller_check
120
+
121
+
122
+ :param _request_timeout: timeout setting for this request. If one
123
+ number provided, it will be total request
124
+ timeout. It can also be a pair (tuple) of
125
+ (connection, read) timeouts.
126
+ :type _request_timeout: int, tuple(int, int), optional
127
+ :param _request_auth: set to override the auth_settings for an a single
128
+ request; this effectively ignores the
129
+ authentication in the spec for a single request.
130
+ :type _request_auth: dict, optional
131
+ :param _content_type: force content-type for the request.
132
+ :type _content_type: str, Optional
133
+ :param _headers: set to override the headers for a single
134
+ request; this effectively ignores the headers
135
+ in the spec for a single request.
136
+ :type _headers: dict, optional
137
+ :param _host_index: set to override the host_index for a single
138
+ request; this effectively ignores the host_index
139
+ in the spec for a single request.
140
+ :type _host_index: int, optional
141
+ :return: Returns the result object.
142
+ """ # noqa: E501
143
+
144
+ _param = self._health_controller_check_serialize(
145
+ _request_auth=_request_auth,
146
+ _content_type=_content_type,
147
+ _headers=_headers,
148
+ _host_index=_host_index
149
+ )
150
+
151
+ _response_types_map: Dict[str, Optional[str]] = {
152
+ '200': "HealthControllerCheck200Response",
153
+ '503': "HealthControllerCheck503Response",
154
+ }
155
+ response_data = await self.api_client.call_api(
156
+ *_param,
157
+ _request_timeout=_request_timeout
158
+ )
159
+ await response_data.read()
160
+ return self.api_client.response_deserialize(
161
+ response_data=response_data,
162
+ response_types_map=_response_types_map,
163
+ )
164
+
165
+
166
+ @validate_call
167
+ async def health_controller_check_without_preload_content(
168
+ self,
169
+ _request_timeout: Union[
170
+ None,
171
+ Annotated[StrictFloat, Field(gt=0)],
172
+ Tuple[
173
+ Annotated[StrictFloat, Field(gt=0)],
174
+ Annotated[StrictFloat, Field(gt=0)]
175
+ ]
176
+ ] = None,
177
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
178
+ _content_type: Optional[StrictStr] = None,
179
+ _headers: Optional[Dict[StrictStr, Any]] = None,
180
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
181
+ ) -> RESTResponseType:
182
+ """health_controller_check
183
+
184
+
185
+ :param _request_timeout: timeout setting for this request. If one
186
+ number provided, it will be total request
187
+ timeout. It can also be a pair (tuple) of
188
+ (connection, read) timeouts.
189
+ :type _request_timeout: int, tuple(int, int), optional
190
+ :param _request_auth: set to override the auth_settings for an a single
191
+ request; this effectively ignores the
192
+ authentication in the spec for a single request.
193
+ :type _request_auth: dict, optional
194
+ :param _content_type: force content-type for the request.
195
+ :type _content_type: str, Optional
196
+ :param _headers: set to override the headers for a single
197
+ request; this effectively ignores the headers
198
+ in the spec for a single request.
199
+ :type _headers: dict, optional
200
+ :param _host_index: set to override the host_index for a single
201
+ request; this effectively ignores the host_index
202
+ in the spec for a single request.
203
+ :type _host_index: int, optional
204
+ :return: Returns the result object.
205
+ """ # noqa: E501
206
+
207
+ _param = self._health_controller_check_serialize(
208
+ _request_auth=_request_auth,
209
+ _content_type=_content_type,
210
+ _headers=_headers,
211
+ _host_index=_host_index
212
+ )
213
+
214
+ _response_types_map: Dict[str, Optional[str]] = {
215
+ '200': "HealthControllerCheck200Response",
216
+ '503': "HealthControllerCheck503Response",
217
+ }
218
+ response_data = await self.api_client.call_api(
219
+ *_param,
220
+ _request_timeout=_request_timeout
221
+ )
222
+ return response_data.response
223
+
224
+
225
+ def _health_controller_check_serialize(
226
+ self,
227
+ _request_auth,
228
+ _content_type,
229
+ _headers,
230
+ _host_index,
231
+ ) -> RequestSerialized:
232
+
233
+ _host = None
234
+
235
+ _collection_formats: Dict[str, str] = {
236
+ }
237
+
238
+ _path_params: Dict[str, str] = {}
239
+ _query_params: List[Tuple[str, str]] = []
240
+ _header_params: Dict[str, Optional[str]] = _headers or {}
241
+ _form_params: List[Tuple[str, str]] = []
242
+ _files: Dict[
243
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
244
+ ] = {}
245
+ _body_params: Optional[bytes] = None
246
+
247
+ # process the path parameters
248
+ # process the query parameters
249
+ # process the header parameters
250
+ # process the form parameters
251
+ # process the body parameter
252
+
253
+
254
+ # set the HTTP header `Accept`
255
+ if 'Accept' not in _header_params:
256
+ _header_params['Accept'] = self.api_client.select_header_accept(
257
+ [
258
+ 'application/json'
259
+ ]
260
+ )
261
+
262
+
263
+ # authentication setting
264
+ _auth_settings: List[str] = [
265
+ ]
266
+
267
+ return self.api_client.param_serialize(
268
+ method='GET',
269
+ resource_path='/health',
270
+ path_params=_path_params,
271
+ query_params=_query_params,
272
+ header_params=_header_params,
273
+ body=_body_params,
274
+ post_params=_form_params,
275
+ files=_files,
276
+ auth_settings=_auth_settings,
277
+ collection_formats=_collection_formats,
278
+ _host=_host,
279
+ _request_auth=_request_auth
280
+ )
281
+
282
+
@@ -70,7 +70,6 @@ from daytona_api_client_async.models.replace_result import ReplaceResult
70
70
  from daytona_api_client_async.models.screenshot_response import ScreenshotResponse
71
71
  from daytona_api_client_async.models.search_files_response import SearchFilesResponse
72
72
  from daytona_api_client_async.models.session import Session
73
- from daytona_api_client_async.models.session_command_logs_response import SessionCommandLogsResponse
74
73
  from daytona_api_client_async.models.session_execute_request import SessionExecuteRequest
75
74
  from daytona_api_client_async.models.session_execute_response import SessionExecuteResponse
76
75
  from daytona_api_client_async.models.windows_response import WindowsResponse
@@ -6004,7 +6003,7 @@ class ToolboxApi:
6004
6003
  _content_type: Optional[StrictStr] = None,
6005
6004
  _headers: Optional[Dict[StrictStr, Any]] = None,
6006
6005
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6007
- ) -> SessionCommandLogsResponse:
6006
+ ) -> str:
6008
6007
  """Get command logs
6009
6008
 
6010
6009
  Get logs for a specific command in a session
@@ -6054,7 +6053,7 @@ class ToolboxApi:
6054
6053
  )
6055
6054
 
6056
6055
  _response_types_map: Dict[str, Optional[str]] = {
6057
- '200': "SessionCommandLogsResponse",
6056
+ '200': "str",
6058
6057
  }
6059
6058
  response_data = await self.api_client.call_api(
6060
6059
  *_param,
@@ -6087,7 +6086,7 @@ class ToolboxApi:
6087
6086
  _content_type: Optional[StrictStr] = None,
6088
6087
  _headers: Optional[Dict[StrictStr, Any]] = None,
6089
6088
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6090
- ) -> ApiResponse[SessionCommandLogsResponse]:
6089
+ ) -> ApiResponse[str]:
6091
6090
  """Get command logs
6092
6091
 
6093
6092
  Get logs for a specific command in a session
@@ -6137,7 +6136,7 @@ class ToolboxApi:
6137
6136
  )
6138
6137
 
6139
6138
  _response_types_map: Dict[str, Optional[str]] = {
6140
- '200': "SessionCommandLogsResponse",
6139
+ '200': "str",
6141
6140
  }
6142
6141
  response_data = await self.api_client.call_api(
6143
6142
  *_param,
@@ -6220,7 +6219,7 @@ class ToolboxApi:
6220
6219
  )
6221
6220
 
6222
6221
  _response_types_map: Dict[str, Optional[str]] = {
6223
- '200': "SessionCommandLogsResponse",
6222
+ '200': "str",
6224
6223
  }
6225
6224
  response_data = await self.api_client.call_api(
6226
6225
  *_param,
@@ -6279,7 +6278,7 @@ class ToolboxApi:
6279
6278
  if 'Accept' not in _header_params:
6280
6279
  _header_params['Accept'] = self.api_client.select_header_accept(
6281
6280
  [
6282
- 'application/json'
6281
+ 'text/plain'
6283
6282
  ]
6284
6283
  )
6285
6284
 
@@ -60,6 +60,9 @@ from daytona_api_client_async.models.git_commit_response import GitCommitRespons
60
60
  from daytona_api_client_async.models.git_delete_branch_request import GitDeleteBranchRequest
61
61
  from daytona_api_client_async.models.git_repo_request import GitRepoRequest
62
62
  from daytona_api_client_async.models.git_status import GitStatus
63
+ from daytona_api_client_async.models.health_controller_check200_response import HealthControllerCheck200Response
64
+ from daytona_api_client_async.models.health_controller_check200_response_info_value import HealthControllerCheck200ResponseInfoValue
65
+ from daytona_api_client_async.models.health_controller_check503_response import HealthControllerCheck503Response
63
66
  from daytona_api_client_async.models.keyboard_hotkey_request import KeyboardHotkeyRequest
64
67
  from daytona_api_client_async.models.keyboard_press_request import KeyboardPressRequest
65
68
  from daytona_api_client_async.models.keyboard_type_request import KeyboardTypeRequest
@@ -113,7 +116,6 @@ from daytona_api_client_async.models.screenshot_response import ScreenshotRespon
113
116
  from daytona_api_client_async.models.search_files_response import SearchFilesResponse
114
117
  from daytona_api_client_async.models.send_webhook_dto import SendWebhookDto
115
118
  from daytona_api_client_async.models.session import Session
116
- from daytona_api_client_async.models.session_command_logs_response import SessionCommandLogsResponse
117
119
  from daytona_api_client_async.models.session_execute_request import SessionExecuteRequest
118
120
  from daytona_api_client_async.models.session_execute_response import SessionExecuteResponse
119
121
  from daytona_api_client_async.models.set_snapshot_general_status_dto import SetSnapshotGeneralStatusDto
@@ -34,8 +34,9 @@ class ApiKeyList(BaseModel):
34
34
  permissions: List[StrictStr] = Field(description="The list of organization resource permissions assigned to the API key")
35
35
  last_used_at: Optional[datetime] = Field(description="When the API key was last used", alias="lastUsedAt")
36
36
  expires_at: Optional[datetime] = Field(description="When the API key expires", alias="expiresAt")
37
+ user_id: StrictStr = Field(description="The user ID of the user who created the API key", alias="userId")
37
38
  additional_properties: Dict[str, Any] = {}
38
- __properties: ClassVar[List[str]] = ["name", "value", "createdAt", "permissions", "lastUsedAt", "expiresAt"]
39
+ __properties: ClassVar[List[str]] = ["name", "value", "createdAt", "permissions", "lastUsedAt", "expiresAt", "userId"]
39
40
 
40
41
  @field_validator('permissions')
41
42
  def permissions_validate_enum(cls, value):
@@ -118,7 +119,8 @@ class ApiKeyList(BaseModel):
118
119
  "createdAt": obj.get("createdAt"),
119
120
  "permissions": obj.get("permissions"),
120
121
  "lastUsedAt": obj.get("lastUsedAt"),
121
- "expiresAt": obj.get("expiresAt")
122
+ "expiresAt": obj.get("expiresAt"),
123
+ "userId": obj.get("userId")
122
124
  })
123
125
  # store additional fields in additional_properties
124
126
  for _key in obj.keys():
@@ -0,0 +1,154 @@
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, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from daytona_api_client_async.models.health_controller_check200_response_info_value import HealthControllerCheck200ResponseInfoValue
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class HealthControllerCheck200Response(BaseModel):
28
+ """
29
+ HealthControllerCheck200Response
30
+ """ # noqa: E501
31
+ status: Optional[StrictStr] = None
32
+ info: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
33
+ error: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
34
+ details: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
35
+ additional_properties: Dict[str, Any] = {}
36
+ __properties: ClassVar[List[str]] = ["status", "info", "error", "details"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of HealthControllerCheck200Response from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ * Fields in `self.additional_properties` are added to the output dict.
69
+ """
70
+ excluded_fields: Set[str] = set([
71
+ "additional_properties",
72
+ ])
73
+
74
+ _dict = self.model_dump(
75
+ by_alias=True,
76
+ exclude=excluded_fields,
77
+ exclude_none=True,
78
+ )
79
+ # override the default output from pydantic by calling `to_dict()` of each value in info (dict)
80
+ _field_dict = {}
81
+ if self.info:
82
+ for _key_info in self.info:
83
+ if self.info[_key_info]:
84
+ _field_dict[_key_info] = self.info[_key_info].to_dict()
85
+ _dict['info'] = _field_dict
86
+ # override the default output from pydantic by calling `to_dict()` of each value in error (dict)
87
+ _field_dict = {}
88
+ if self.error:
89
+ for _key_error in self.error:
90
+ if self.error[_key_error]:
91
+ _field_dict[_key_error] = self.error[_key_error].to_dict()
92
+ _dict['error'] = _field_dict
93
+ # override the default output from pydantic by calling `to_dict()` of each value in details (dict)
94
+ _field_dict = {}
95
+ if self.details:
96
+ for _key_details in self.details:
97
+ if self.details[_key_details]:
98
+ _field_dict[_key_details] = self.details[_key_details].to_dict()
99
+ _dict['details'] = _field_dict
100
+ # puts key-value pairs in additional_properties in the top level
101
+ if self.additional_properties is not None:
102
+ for _key, _value in self.additional_properties.items():
103
+ _dict[_key] = _value
104
+
105
+ # set to None if info (nullable) is None
106
+ # and model_fields_set contains the field
107
+ if self.info is None and "info" in self.model_fields_set:
108
+ _dict['info'] = None
109
+
110
+ # set to None if error (nullable) is None
111
+ # and model_fields_set contains the field
112
+ if self.error is None and "error" in self.model_fields_set:
113
+ _dict['error'] = None
114
+
115
+ return _dict
116
+
117
+ @classmethod
118
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
119
+ """Create an instance of HealthControllerCheck200Response from a dict"""
120
+ if obj is None:
121
+ return None
122
+
123
+ if not isinstance(obj, dict):
124
+ return cls.model_validate(obj)
125
+
126
+ _obj = cls.model_validate({
127
+ "status": obj.get("status"),
128
+ "info": dict(
129
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
130
+ for _k, _v in obj["info"].items()
131
+ )
132
+ if obj.get("info") is not None
133
+ else None,
134
+ "error": dict(
135
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
136
+ for _k, _v in obj["error"].items()
137
+ )
138
+ if obj.get("error") is not None
139
+ else None,
140
+ "details": dict(
141
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
142
+ for _k, _v in obj["details"].items()
143
+ )
144
+ if obj.get("details") is not None
145
+ else None
146
+ })
147
+ # store additional fields in additional_properties
148
+ for _key in obj.keys():
149
+ if _key not in cls.__properties:
150
+ _obj.additional_properties[_key] = obj.get(_key)
151
+
152
+ return _obj
153
+
154
+
@@ -0,0 +1,101 @@
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, StrictStr
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class HealthControllerCheck200ResponseInfoValue(BaseModel):
27
+ """
28
+ HealthControllerCheck200ResponseInfoValue
29
+ """ # noqa: E501
30
+ status: StrictStr
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["status"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of HealthControllerCheck200ResponseInfoValue from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ * Fields in `self.additional_properties` are added to the output dict.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ "additional_properties",
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # puts key-value pairs in additional_properties in the top level
76
+ if self.additional_properties is not None:
77
+ for _key, _value in self.additional_properties.items():
78
+ _dict[_key] = _value
79
+
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of HealthControllerCheck200ResponseInfoValue from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "status": obj.get("status")
93
+ })
94
+ # store additional fields in additional_properties
95
+ for _key in obj.keys():
96
+ if _key not in cls.__properties:
97
+ _obj.additional_properties[_key] = obj.get(_key)
98
+
99
+ return _obj
100
+
101
+
@@ -0,0 +1,154 @@
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, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from daytona_api_client_async.models.health_controller_check200_response_info_value import HealthControllerCheck200ResponseInfoValue
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class HealthControllerCheck503Response(BaseModel):
28
+ """
29
+ HealthControllerCheck503Response
30
+ """ # noqa: E501
31
+ status: Optional[StrictStr] = None
32
+ info: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
33
+ error: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
34
+ details: Optional[Dict[str, HealthControllerCheck200ResponseInfoValue]] = None
35
+ additional_properties: Dict[str, Any] = {}
36
+ __properties: ClassVar[List[str]] = ["status", "info", "error", "details"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of HealthControllerCheck503Response from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ * Fields in `self.additional_properties` are added to the output dict.
69
+ """
70
+ excluded_fields: Set[str] = set([
71
+ "additional_properties",
72
+ ])
73
+
74
+ _dict = self.model_dump(
75
+ by_alias=True,
76
+ exclude=excluded_fields,
77
+ exclude_none=True,
78
+ )
79
+ # override the default output from pydantic by calling `to_dict()` of each value in info (dict)
80
+ _field_dict = {}
81
+ if self.info:
82
+ for _key_info in self.info:
83
+ if self.info[_key_info]:
84
+ _field_dict[_key_info] = self.info[_key_info].to_dict()
85
+ _dict['info'] = _field_dict
86
+ # override the default output from pydantic by calling `to_dict()` of each value in error (dict)
87
+ _field_dict = {}
88
+ if self.error:
89
+ for _key_error in self.error:
90
+ if self.error[_key_error]:
91
+ _field_dict[_key_error] = self.error[_key_error].to_dict()
92
+ _dict['error'] = _field_dict
93
+ # override the default output from pydantic by calling `to_dict()` of each value in details (dict)
94
+ _field_dict = {}
95
+ if self.details:
96
+ for _key_details in self.details:
97
+ if self.details[_key_details]:
98
+ _field_dict[_key_details] = self.details[_key_details].to_dict()
99
+ _dict['details'] = _field_dict
100
+ # puts key-value pairs in additional_properties in the top level
101
+ if self.additional_properties is not None:
102
+ for _key, _value in self.additional_properties.items():
103
+ _dict[_key] = _value
104
+
105
+ # set to None if info (nullable) is None
106
+ # and model_fields_set contains the field
107
+ if self.info is None and "info" in self.model_fields_set:
108
+ _dict['info'] = None
109
+
110
+ # set to None if error (nullable) is None
111
+ # and model_fields_set contains the field
112
+ if self.error is None and "error" in self.model_fields_set:
113
+ _dict['error'] = None
114
+
115
+ return _dict
116
+
117
+ @classmethod
118
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
119
+ """Create an instance of HealthControllerCheck503Response from a dict"""
120
+ if obj is None:
121
+ return None
122
+
123
+ if not isinstance(obj, dict):
124
+ return cls.model_validate(obj)
125
+
126
+ _obj = cls.model_validate({
127
+ "status": obj.get("status"),
128
+ "info": dict(
129
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
130
+ for _k, _v in obj["info"].items()
131
+ )
132
+ if obj.get("info") is not None
133
+ else None,
134
+ "error": dict(
135
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
136
+ for _k, _v in obj["error"].items()
137
+ )
138
+ if obj.get("error") is not None
139
+ else None,
140
+ "details": dict(
141
+ (_k, HealthControllerCheck200ResponseInfoValue.from_dict(_v))
142
+ for _k, _v in obj["details"].items()
143
+ )
144
+ if obj.get("details") is not None
145
+ else None
146
+ })
147
+ # store additional fields in additional_properties
148
+ for _key in obj.keys():
149
+ if _key not in cls.__properties:
150
+ _obj.additional_properties[_key] = obj.get(_key)
151
+
152
+ return _obj
153
+
154
+
@@ -28,11 +28,10 @@ class SessionExecuteResponse(BaseModel):
28
28
  SessionExecuteResponse
29
29
  """ # noqa: E501
30
30
  cmd_id: Optional[StrictStr] = Field(default=None, description="The ID of the executed command", alias="cmdId")
31
- stdout: Optional[StrictStr] = Field(default=None, description="The stdout of the executed command")
32
- stderr: Optional[StrictStr] = Field(default=None, description="The stderr of the executed command")
31
+ output: Optional[StrictStr] = Field(default=None, description="The output of the executed command marked with stdout and stderr prefixes")
33
32
  exit_code: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The exit code of the executed command", alias="exitCode")
34
33
  additional_properties: Dict[str, Any] = {}
35
- __properties: ClassVar[List[str]] = ["cmdId", "stdout", "stderr", "exitCode"]
34
+ __properties: ClassVar[List[str]] = ["cmdId", "output", "exitCode"]
36
35
 
37
36
  model_config = ConfigDict(
38
37
  populate_by_name=True,
@@ -93,8 +92,7 @@ class SessionExecuteResponse(BaseModel):
93
92
 
94
93
  _obj = cls.model_validate({
95
94
  "cmdId": obj.get("cmdId"),
96
- "stdout": obj.get("stdout"),
97
- "stderr": obj.get("stderr"),
95
+ "output": obj.get("output"),
98
96
  "exitCode": obj.get("exitCode")
99
97
  })
100
98
  # store additional fields in additional_properties
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client_async
3
- Version: 0.26.0rc2
3
+ Version: 0.27.0
4
4
  Summary: Daytona
5
5
  Home-page:
6
6
  Author: Daytona Platforms Inc.
@@ -1,29 +1,30 @@
1
- daytona_api_client_async/__init__.py,sha256=SSwkspt2177F6AAF5MRAH58zzNGkRXFR8oCIq1BKLkI,11738
1
+ daytona_api_client_async/__init__.py,sha256=s4Ia5nh_36_OH413ket7DnVnKjfXgu7rF3Ucfmy0nH4,12058
2
2
  daytona_api_client_async/api_client.py,sha256=FrpVLztK7lFu1O0ZPkojl5l-tB_jGIKmDAc5k-VOWJg,27598
3
3
  daytona_api_client_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  daytona_api_client_async/configuration.py,sha256=hWTtQJ-3aR2SzZScWV02gUUaOt1-L99egXbDD6X692Y,17963
5
5
  daytona_api_client_async/exceptions.py,sha256=3gaH4PrTgR6rYIRmHOcYlIDJ-mqS-M_Ut5wcEcVbtdU,6424
6
6
  daytona_api_client_async/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  daytona_api_client_async/rest.py,sha256=AqeTEhjdo8wt1a1ngzVVRrzKiDhOkalF6LUM6z6RNqw,7255
8
- daytona_api_client_async/api/__init__.py,sha256=J9OwX3rh77e_wS49dPBEci--sMmZ1LPta7HhHlFZG94,987
9
- daytona_api_client_async/api/api_keys_api.py,sha256=Bw9dqx-luPwOrYGeEZBIH3qSrnCcLdpyHkH1IRxg8Ms,54877
8
+ daytona_api_client_async/api/__init__.py,sha256=AZfvHY1kjcNcQyCeE16d2KZQcN1jCh-vVyEifO-9l3I,1049
9
+ daytona_api_client_async/api/api_keys_api.py,sha256=heGX1DXmDSACSAOsgUAWaIohoCUG8QrNE-ImXCdLq2k,65902
10
10
  daytona_api_client_async/api/audit_api.py,sha256=U0tkNK3qcXG6hx_V51UNdTf0xRoZy3Qwn7Kbmg0MEnU,34388
11
11
  daytona_api_client_async/api/default_api.py,sha256=YpjsubeCZFBTknw8d94xZ4Otfy7FeE_Uj7SG9V2WdSw,74558
12
12
  daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
13
+ daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
13
14
  daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-VXax9W0S20_lZgEpoz02U,11677
14
15
  daytona_api_client_async/api/organizations_api.py,sha256=a7lgjZwlfoxCnGkpaE6tRZmTtJfJ6w65Ebua31jpSBM,278010
15
16
  daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
16
17
  daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
17
18
  daytona_api_client_async/api/sandbox_api.py,sha256=H3as1sU9Jn_O-0srRO03MGpx8YuG7x5zRDdaf_YBl6U,211728
18
19
  daytona_api_client_async/api/snapshots_api.py,sha256=8e6q5AKAhheGbJoMriLG_7-LmAuJoA_xafZtWh2nKPQ,103648
19
- daytona_api_client_async/api/toolbox_api.py,sha256=M_Wj8xn62lHFm0xC9-901D3OCl0nJUrcL63yXXh7EEM,723793
20
+ daytona_api_client_async/api/toolbox_api.py,sha256=yP_lQRsO6ErtSzNr3yq3V5bfrk5NdlJWuMsFwq1iHwQ,723571
20
21
  daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
21
22
  daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
22
23
  daytona_api_client_async/api/webhooks_api.py,sha256=JTMBBtbcPLpy1OsUX9aELWu67iA8HR-UsLRGSPCKav4,69846
23
24
  daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
24
- daytona_api_client_async/models/__init__.py,sha256=VBQyX-KUNF0ojkxUd4elLEFrpqkM8XP_R0k0OdLiw0k,10161
25
+ daytona_api_client_async/models/__init__.py,sha256=eMQnnZ-2I0v2uDUv0vBGZ0Kq_XjogyJeO7mGYUqpbIY,10419
25
26
  daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
26
- daytona_api_client_async/models/api_key_list.py,sha256=LwEm8q2SjDOGa04S0kkk4GRbZPvrpVJ-4Ju1dgcp0b8,5005
27
+ daytona_api_client_async/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
27
28
  daytona_api_client_async/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
28
29
  daytona_api_client_async/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
29
30
  daytona_api_client_async/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
@@ -68,6 +69,9 @@ daytona_api_client_async/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7a
68
69
  daytona_api_client_async/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
69
70
  daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
70
71
  daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
72
+ daytona_api_client_async/models/health_controller_check200_response.py,sha256=G_jTEzrAG5Ets3tVBmQ_fsPLzbry3HmT1Xr4tVNvjAQ,5732
73
+ daytona_api_client_async/models/health_controller_check200_response_info_value.py,sha256=R1GEl8QQr1qyOHAN5XJMGIpy1TfiBg42BwhkzgHsbZk,3136
74
+ daytona_api_client_async/models/health_controller_check503_response.py,sha256=6wduhFHV-71FtjGlRgwu9hs4kZMC_GsIXcshWx9NCpo,5732
71
75
  daytona_api_client_async/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
72
76
  daytona_api_client_async/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
73
77
  daytona_api_client_async/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
@@ -132,7 +136,7 @@ daytona_api_client_async/models/send_webhook_dto.py,sha256=BGt7iS6gXvBpFDjToh9V7
132
136
  daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
133
137
  daytona_api_client_async/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
134
138
  daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
135
- daytona_api_client_async/models/session_execute_response.py,sha256=IDOtQigdtudUv38VJVl0tVXP6L-0y38UCmY3Z2Uc3R8,3713
139
+ daytona_api_client_async/models/session_execute_response.py,sha256=JdYw8ql1ieE2IUpFHinerVK1aQ0iwjerHML2geJEHq0,3597
136
140
  daytona_api_client_async/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
137
141
  daytona_api_client_async/models/snapshot_created_post_request.py,sha256=C0kc7g4xBwUZdmsguAVC2z52xKXDVncqRb16twRCniY,3675
138
142
  daytona_api_client_async/models/snapshot_created_post_request_data.py,sha256=Ya0R0nnDp1zYH6-h6gKk9eLMOaEWjNPUi8x_wTlzmR4,5093
@@ -167,8 +171,8 @@ daytona_api_client_async/models/webhook_controller_get_status200_response.py,sha
167
171
  daytona_api_client_async/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
168
172
  daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
169
173
  daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
170
- daytona_api_client_async-0.26.0rc2.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
171
- daytona_api_client_async-0.26.0rc2.dist-info/METADATA,sha256=DS5WQc_QCOy2ERjKUrGX2-P1pE_0pQANs7OpMRvnGSU,693
172
- daytona_api_client_async-0.26.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
173
- daytona_api_client_async-0.26.0rc2.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
174
- daytona_api_client_async-0.26.0rc2.dist-info/RECORD,,
174
+ daytona_api_client_async-0.27.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
175
+ daytona_api_client_async-0.27.0.dist-info/METADATA,sha256=Ulth_ynVMs4tTl01DUqSsKvs-mxXEIJR-Jhq61zMBrQ,690
176
+ daytona_api_client_async-0.27.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
177
+ daytona_api_client_async-0.27.0.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
178
+ daytona_api_client_async-0.27.0.dist-info/RECORD,,