daytona_api_client_async 0.0.0.dev0__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.
Files changed (209) hide show
  1. daytona_api_client_async/__init__.py +195 -0
  2. daytona_api_client_async/api/__init__.py +21 -0
  3. daytona_api_client_async/api/api_keys_api.py +1673 -0
  4. daytona_api_client_async/api/audit_api.py +750 -0
  5. daytona_api_client_async/api/config_api.py +279 -0
  6. daytona_api_client_async/api/default_api.py +1884 -0
  7. daytona_api_client_async/api/docker_registry_api.py +1965 -0
  8. daytona_api_client_async/api/health_api.py +282 -0
  9. daytona_api_client_async/api/object_storage_api.py +299 -0
  10. daytona_api_client_async/api/organizations_api.py +7836 -0
  11. daytona_api_client_async/api/preview_api.py +826 -0
  12. daytona_api_client_async/api/regions_api.py +316 -0
  13. daytona_api_client_async/api/runners_api.py +1560 -0
  14. daytona_api_client_async/api/sandbox_api.py +6927 -0
  15. daytona_api_client_async/api/snapshots_api.py +2630 -0
  16. daytona_api_client_async/api/toolbox_api.py +20759 -0
  17. daytona_api_client_async/api/users_api.py +2319 -0
  18. daytona_api_client_async/api/volumes_api.py +1419 -0
  19. daytona_api_client_async/api/webhooks_api.py +1704 -0
  20. daytona_api_client_async/api/workspace_api.py +4036 -0
  21. daytona_api_client_async/api_client.py +801 -0
  22. daytona_api_client_async/api_response.py +21 -0
  23. daytona_api_client_async/configuration.py +579 -0
  24. daytona_api_client_async/exceptions.py +217 -0
  25. daytona_api_client_async/models/__init__.py +162 -0
  26. daytona_api_client_async/models/account_provider.py +103 -0
  27. daytona_api_client_async/models/announcement.py +103 -0
  28. daytona_api_client_async/models/api_key_list.py +132 -0
  29. daytona_api_client_async/models/api_key_response.py +123 -0
  30. daytona_api_client_async/models/audit_log.py +128 -0
  31. daytona_api_client_async/models/build_info.py +108 -0
  32. daytona_api_client_async/models/command.py +105 -0
  33. daytona_api_client_async/models/completion_context.py +103 -0
  34. daytona_api_client_async/models/completion_item.py +113 -0
  35. daytona_api_client_async/models/completion_list.py +111 -0
  36. daytona_api_client_async/models/compressed_screenshot_response.py +105 -0
  37. daytona_api_client_async/models/computer_use_start_response.py +103 -0
  38. daytona_api_client_async/models/computer_use_status_response.py +108 -0
  39. daytona_api_client_async/models/computer_use_stop_response.py +103 -0
  40. daytona_api_client_async/models/configuration.py +145 -0
  41. daytona_api_client_async/models/create_api_key.py +119 -0
  42. daytona_api_client_async/models/create_audit_log.py +128 -0
  43. daytona_api_client_async/models/create_build_info.py +103 -0
  44. daytona_api_client_async/models/create_docker_registry.py +120 -0
  45. daytona_api_client_async/models/create_linked_account.py +103 -0
  46. daytona_api_client_async/models/create_organization.py +103 -0
  47. daytona_api_client_async/models/create_organization_invitation.py +115 -0
  48. daytona_api_client_async/models/create_organization_quota.py +117 -0
  49. daytona_api_client_async/models/create_organization_role.py +113 -0
  50. daytona_api_client_async/models/create_runner.py +130 -0
  51. daytona_api_client_async/models/create_sandbox.py +159 -0
  52. daytona_api_client_async/models/create_session_request.py +101 -0
  53. daytona_api_client_async/models/create_snapshot.py +121 -0
  54. daytona_api_client_async/models/create_user.py +127 -0
  55. daytona_api_client_async/models/create_volume.py +101 -0
  56. daytona_api_client_async/models/create_workspace.py +161 -0
  57. daytona_api_client_async/models/daytona_configuration.py +158 -0
  58. daytona_api_client_async/models/display_info_response.py +101 -0
  59. daytona_api_client_async/models/docker_registry.py +123 -0
  60. daytona_api_client_async/models/download_files.py +101 -0
  61. daytona_api_client_async/models/empty_response.py +101 -0
  62. daytona_api_client_async/models/execute_request.py +105 -0
  63. daytona_api_client_async/models/execute_response.py +103 -0
  64. daytona_api_client_async/models/file_info.py +115 -0
  65. daytona_api_client_async/models/file_status.py +107 -0
  66. daytona_api_client_async/models/git_add_request.py +103 -0
  67. daytona_api_client_async/models/git_branch_request.py +103 -0
  68. daytona_api_client_async/models/git_checkout_request.py +103 -0
  69. daytona_api_client_async/models/git_clone_request.py +111 -0
  70. daytona_api_client_async/models/git_commit_info.py +109 -0
  71. daytona_api_client_async/models/git_commit_request.py +109 -0
  72. daytona_api_client_async/models/git_commit_response.py +101 -0
  73. daytona_api_client_async/models/git_delete_branch_request.py +103 -0
  74. daytona_api_client_async/models/git_repo_request.py +105 -0
  75. daytona_api_client_async/models/git_status.py +117 -0
  76. daytona_api_client_async/models/health_controller_check200_response.py +154 -0
  77. daytona_api_client_async/models/health_controller_check200_response_info_value.py +101 -0
  78. daytona_api_client_async/models/health_controller_check503_response.py +154 -0
  79. daytona_api_client_async/models/keyboard_hotkey_request.py +101 -0
  80. daytona_api_client_async/models/keyboard_hotkey_response.py +103 -0
  81. daytona_api_client_async/models/keyboard_press_request.py +103 -0
  82. daytona_api_client_async/models/keyboard_press_response.py +105 -0
  83. daytona_api_client_async/models/keyboard_type_request.py +103 -0
  84. daytona_api_client_async/models/keyboard_type_response.py +103 -0
  85. daytona_api_client_async/models/list_branch_response.py +101 -0
  86. daytona_api_client_async/models/lsp_completion_params.py +117 -0
  87. daytona_api_client_async/models/lsp_document_request.py +105 -0
  88. daytona_api_client_async/models/lsp_location.py +107 -0
  89. daytona_api_client_async/models/lsp_server_request.py +103 -0
  90. daytona_api_client_async/models/lsp_symbol.py +109 -0
  91. daytona_api_client_async/models/match.py +105 -0
  92. daytona_api_client_async/models/mouse_click_request.py +107 -0
  93. daytona_api_client_async/models/mouse_click_response.py +103 -0
  94. daytona_api_client_async/models/mouse_drag_request.py +109 -0
  95. daytona_api_client_async/models/mouse_drag_response.py +103 -0
  96. daytona_api_client_async/models/mouse_move_request.py +103 -0
  97. daytona_api_client_async/models/mouse_move_response.py +103 -0
  98. daytona_api_client_async/models/mouse_position.py +103 -0
  99. daytona_api_client_async/models/mouse_scroll_request.py +107 -0
  100. daytona_api_client_async/models/mouse_scroll_response.py +101 -0
  101. daytona_api_client_async/models/oidc_config.py +105 -0
  102. daytona_api_client_async/models/organization.py +153 -0
  103. daytona_api_client_async/models/organization_invitation.py +144 -0
  104. daytona_api_client_async/models/organization_role.py +122 -0
  105. daytona_api_client_async/models/organization_sandbox_default_limited_network_egress.py +101 -0
  106. daytona_api_client_async/models/organization_sandbox_default_network_block_all.py +101 -0
  107. daytona_api_client_async/models/organization_suspension.py +106 -0
  108. daytona_api_client_async/models/organization_usage_overview.py +117 -0
  109. daytona_api_client_async/models/organization_user.py +131 -0
  110. daytona_api_client_async/models/paginated_audit_logs.py +117 -0
  111. daytona_api_client_async/models/paginated_sandboxes.py +115 -0
  112. daytona_api_client_async/models/paginated_snapshots.py +115 -0
  113. daytona_api_client_async/models/paginated_snapshots_dto.py +115 -0
  114. daytona_api_client_async/models/paginated_workspaces.py +115 -0
  115. daytona_api_client_async/models/port_preview_url.py +105 -0
  116. daytona_api_client_async/models/position.py +103 -0
  117. daytona_api_client_async/models/posthog_config.py +103 -0
  118. daytona_api_client_async/models/process_errors_response.py +103 -0
  119. daytona_api_client_async/models/process_logs_response.py +103 -0
  120. daytona_api_client_async/models/process_restart_response.py +103 -0
  121. daytona_api_client_async/models/process_status_response.py +103 -0
  122. daytona_api_client_async/models/project_dir_response.py +101 -0
  123. daytona_api_client_async/models/pty_create_request.py +111 -0
  124. daytona_api_client_async/models/pty_create_response.py +101 -0
  125. daytona_api_client_async/models/pty_list_response.py +109 -0
  126. daytona_api_client_async/models/pty_resize_request.py +103 -0
  127. daytona_api_client_async/models/pty_session_info.py +115 -0
  128. daytona_api_client_async/models/range.py +110 -0
  129. daytona_api_client_async/models/rate_limit_config.py +120 -0
  130. daytona_api_client_async/models/rate_limit_entry.py +103 -0
  131. daytona_api_client_async/models/region.py +114 -0
  132. daytona_api_client_async/models/region_quota.py +109 -0
  133. daytona_api_client_async/models/region_screenshot_response.py +105 -0
  134. daytona_api_client_async/models/region_usage_overview.py +113 -0
  135. daytona_api_client_async/models/registry_push_access_dto.py +111 -0
  136. daytona_api_client_async/models/replace_request.py +105 -0
  137. daytona_api_client_async/models/replace_result.py +105 -0
  138. daytona_api_client_async/models/runner.py +153 -0
  139. daytona_api_client_async/models/runner_region.py +39 -0
  140. daytona_api_client_async/models/runner_snapshot_dto.py +105 -0
  141. daytona_api_client_async/models/runner_state.py +41 -0
  142. daytona_api_client_async/models/sandbox.py +193 -0
  143. daytona_api_client_async/models/sandbox_class.py +39 -0
  144. daytona_api_client_async/models/sandbox_created_post_request.py +110 -0
  145. daytona_api_client_async/models/sandbox_created_post_request_data.py +152 -0
  146. daytona_api_client_async/models/sandbox_desired_state.py +41 -0
  147. daytona_api_client_async/models/sandbox_info.py +105 -0
  148. daytona_api_client_async/models/sandbox_labels.py +101 -0
  149. daytona_api_client_async/models/sandbox_state.py +52 -0
  150. daytona_api_client_async/models/sandbox_state_updated_post_request.py +110 -0
  151. daytona_api_client_async/models/sandbox_state_updated_post_request_data.py +129 -0
  152. daytona_api_client_async/models/sandbox_state_updated_post_request_data_sandbox.py +115 -0
  153. daytona_api_client_async/models/sandbox_volume.py +105 -0
  154. daytona_api_client_async/models/screenshot_response.py +105 -0
  155. daytona_api_client_async/models/search_files_response.py +101 -0
  156. daytona_api_client_async/models/send_webhook_dto.py +105 -0
  157. daytona_api_client_async/models/session.py +116 -0
  158. daytona_api_client_async/models/session_command_logs_response.py +103 -0
  159. daytona_api_client_async/models/session_execute_request.py +105 -0
  160. daytona_api_client_async/models/session_execute_response.py +105 -0
  161. daytona_api_client_async/models/set_snapshot_general_status_dto.py +101 -0
  162. daytona_api_client_async/models/snapshot_created_post_request.py +110 -0
  163. daytona_api_client_async/models/snapshot_created_post_request_data.py +136 -0
  164. daytona_api_client_async/models/snapshot_dto.py +159 -0
  165. daytona_api_client_async/models/snapshot_removed_post_request.py +106 -0
  166. daytona_api_client_async/models/snapshot_state.py +44 -0
  167. daytona_api_client_async/models/snapshot_state_updated_post_request.py +110 -0
  168. daytona_api_client_async/models/snapshot_state_updated_post_request_data.py +129 -0
  169. daytona_api_client_async/models/snapshot_state_updated_post_request_data_snapshot.py +115 -0
  170. daytona_api_client_async/models/ssh_access_dto.py +112 -0
  171. daytona_api_client_async/models/ssh_access_validation_dto.py +103 -0
  172. daytona_api_client_async/models/storage_access_dto.py +111 -0
  173. daytona_api_client_async/models/update_assigned_organization_roles.py +101 -0
  174. daytona_api_client_async/models/update_docker_registry.py +109 -0
  175. daytona_api_client_async/models/update_organization_default_region.py +101 -0
  176. daytona_api_client_async/models/update_organization_invitation.py +113 -0
  177. daytona_api_client_async/models/update_organization_member_access.py +110 -0
  178. daytona_api_client_async/models/update_organization_member_role.py +108 -0
  179. daytona_api_client_async/models/update_organization_quota.py +162 -0
  180. daytona_api_client_async/models/update_organization_region_quota.py +120 -0
  181. daytona_api_client_async/models/update_organization_role.py +113 -0
  182. daytona_api_client_async/models/update_sandbox_state_dto.py +110 -0
  183. daytona_api_client_async/models/user.py +118 -0
  184. daytona_api_client_async/models/user_home_dir_response.py +101 -0
  185. daytona_api_client_async/models/user_public_key.py +103 -0
  186. daytona_api_client_async/models/volume_created_post_request.py +110 -0
  187. daytona_api_client_async/models/volume_created_post_request_data.py +126 -0
  188. daytona_api_client_async/models/volume_dto.py +126 -0
  189. daytona_api_client_async/models/volume_state.py +43 -0
  190. daytona_api_client_async/models/volume_state_updated_post_request.py +110 -0
  191. daytona_api_client_async/models/volume_state_updated_post_request_data.py +129 -0
  192. daytona_api_client_async/models/volume_state_updated_post_request_data_volume.py +115 -0
  193. daytona_api_client_async/models/webhook_app_portal_access.py +101 -0
  194. daytona_api_client_async/models/webhook_controller_get_app_portal_access200_response.py +101 -0
  195. daytona_api_client_async/models/webhook_controller_get_initialization_status200_response.py +118 -0
  196. daytona_api_client_async/models/webhook_controller_get_status200_response.py +101 -0
  197. daytona_api_client_async/models/webhook_initialization_status.py +121 -0
  198. daytona_api_client_async/models/windows_response.py +103 -0
  199. daytona_api_client_async/models/work_dir_response.py +101 -0
  200. daytona_api_client_async/models/workdir_response.py +101 -0
  201. daytona_api_client_async/models/workspace.py +215 -0
  202. daytona_api_client_async/models/workspace_port_preview_url.py +103 -0
  203. daytona_api_client_async/py.typed +0 -0
  204. daytona_api_client_async/rest.py +214 -0
  205. daytona_api_client_async-0.0.0.dev0.dist-info/METADATA +27 -0
  206. daytona_api_client_async-0.0.0.dev0.dist-info/RECORD +209 -0
  207. daytona_api_client_async-0.0.0.dev0.dist-info/WHEEL +5 -0
  208. daytona_api_client_async-0.0.0.dev0.dist-info/licenses/LICENSE +190 -0
  209. daytona_api_client_async-0.0.0.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,209 @@
1
+ daytona_api_client_async/__init__.py,sha256=xTwzT9GqzOkRGjILtfVZt92p1H2XBvmAUyD44_SiS28,13922
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=SoHL84ICKqndTzkEbmBPT-IkpKf9JNwOKHr433JnHA4,1175
9
+ daytona_api_client_async/api/api_keys_api.py,sha256=heGX1DXmDSACSAOsgUAWaIohoCUG8QrNE-ImXCdLq2k,65902
10
+ daytona_api_client_async/api/audit_api.py,sha256=i3idid-s0rPJie_ob_L0BE93h1_exgoGicmicGZmoEU,31263
11
+ daytona_api_client_async/api/config_api.py,sha256=ava4ZsQfy3dMl6Oa7y-ualS5uIiRXNTfDCb8hgxrlf8,10350
12
+ daytona_api_client_async/api/default_api.py,sha256=YpjsubeCZFBTknw8d94xZ4Otfy7FeE_Uj7SG9V2WdSw,74558
13
+ daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
14
+ daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
15
+ daytona_api_client_async/api/object_storage_api.py,sha256=QoK9uj0nHB-2TWnbDNIj0dqNHk36tj13WR2z9ZCqOh8,11700
16
+ daytona_api_client_async/api/organizations_api.py,sha256=bcjnKVK9lJ4lg_UvW1mo3Gq-aDcDX0iGOSL6joTCkRI,311909
17
+ daytona_api_client_async/api/preview_api.py,sha256=PtBAUvWu8647b9jS3OQR3UC9h3FnD2cqCUJaEDTG6bs,31470
18
+ daytona_api_client_async/api/regions_api.py,sha256=4lfDJtWf6kYG73GEJy5IRkeHdJH3H7ykyh3CVJ97vLg,12414
19
+ daytona_api_client_async/api/runners_api.py,sha256=B7bYsN5Yp6Cs3JvNDAFNkLAvLElPN5IiSr2Chhk7xJE,58643
20
+ daytona_api_client_async/api/sandbox_api.py,sha256=nI6W6byaxTZ623NOhpC3QlENBJKUsMTXZGziNyfW6U8,292986
21
+ daytona_api_client_async/api/snapshots_api.py,sha256=VM9BdkKs9EnarrWZFH3zyT2lF9-sXLJWGepeUb_oPXE,106203
22
+ daytona_api_client_async/api/toolbox_api.py,sha256=bg5LMQnCwihVqajlRlbDicpUyaFujkXoX45emmMsHRA,851390
23
+ daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
24
+ daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
25
+ daytona_api_client_async/api/webhooks_api.py,sha256=JTMBBtbcPLpy1OsUX9aELWu67iA8HR-UsLRGSPCKav4,69846
26
+ daytona_api_client_async/api/workspace_api.py,sha256=YD89RTZgw2KqgS21qxSA3xBaxe29Pr8OslpT-SVW6pw,170106
27
+ daytona_api_client_async/models/__init__.py,sha256=bjO12RMzopaeEWiemFc5nzWqvflgGamrZmORR9LSHf8,12157
28
+ daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
29
+ daytona_api_client_async/models/announcement.py,sha256=zO3Wa5yUYP2BDJ_3Weemiob_eMNXUZ1B_np-lQSLSgM,3283
30
+ daytona_api_client_async/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
31
+ daytona_api_client_async/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
32
+ daytona_api_client_async/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
33
+ daytona_api_client_async/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
34
+ daytona_api_client_async/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJmN4ba0d2qFoBg,3403
35
+ daytona_api_client_async/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
36
+ daytona_api_client_async/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
37
+ daytona_api_client_async/models/completion_list.py,sha256=oWsIwnJ0WklFSQaIWFmyuok251GkjIPClJ0KdilWbc4,3647
38
+ daytona_api_client_async/models/compressed_screenshot_response.py,sha256=kyXtOVA01vDm8UUVNdOWFwj92fKvrpW4QfRL8NpHBMU,3694
39
+ daytona_api_client_async/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw1ajHFsVbkO0s3Wile4tsWJSf_8I,3336
40
+ daytona_api_client_async/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
41
+ daytona_api_client_async/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
42
+ daytona_api_client_async/models/configuration.py,sha256=bdubxU9IaifU1yOAVA4-Hdp17AKfOOvfzFlb4D1sdFI,6295
43
+ daytona_api_client_async/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
44
+ daytona_api_client_async/models/create_audit_log.py,sha256=c8Mr7c8CvzPmq7jeyaBleVtQWbWB9gYcnH45TqQIt68,7213
45
+ daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
46
+ daytona_api_client_async/models/create_docker_registry.py,sha256=1OY_X334xhZsevKHZj3VbRSHFQDkkPXMo-2zB5PCNdw,4337
47
+ daytona_api_client_async/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
48
+ daytona_api_client_async/models/create_organization.py,sha256=xri2YQpu5-cdotcOrMp7QuPsKBaSYCyW-9l4QgL-JOs,3300
49
+ daytona_api_client_async/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfVqffuwzuqaAsZ-Ml-1xGM5RndmIz-Gk,4016
50
+ daytona_api_client_async/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
51
+ daytona_api_client_async/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
52
+ daytona_api_client_async/models/create_runner.py,sha256=1dGs6EB7BhoGrMwMQPFMfZMwbGyHj08hTINLJlhb1ok,4429
53
+ daytona_api_client_async/models/create_sandbox.py,sha256=SXKvXjfO-qwYfnT10BXsMPuAbJU1N4EetEjvo5Tot3U,7777
54
+ daytona_api_client_async/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
55
+ daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0MDARjzHp3fSfRmeAtgVXc,4774
56
+ daytona_api_client_async/models/create_user.py,sha256=ORXCZ8HuYfkiloalUOdMFgiuUVKBBoBIL_xTy95I_nc,4666
57
+ daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
58
+ daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
59
+ daytona_api_client_async/models/daytona_configuration.py,sha256=FhLCgs3Ksy4UIu_E68cVhzV-Arqu2dBYB7JXPBPj9MQ,7690
60
+ daytona_api_client_async/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
61
+ daytona_api_client_async/models/docker_registry.py,sha256=vsV50KVZMVRHrm5O6ZkKvmbLlX0Lo_XVIzL3lyrRNOY,4326
62
+ daytona_api_client_async/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
63
+ daytona_api_client_async/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
64
+ daytona_api_client_async/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
65
+ daytona_api_client_async/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
66
+ daytona_api_client_async/models/file_info.py,sha256=XjAMg_C64Or2UqYeABmkupuL91x_lQ_lwEVrt6I8oQY,3624
67
+ daytona_api_client_async/models/file_status.py,sha256=FlYS6S_BXaGg-svQ5KXee_iEC-QlBsYLjghvSSXXZao,3231
68
+ daytona_api_client_async/models/git_add_request.py,sha256=goBcduXYh5TVK-IzXagQdsRm6j1O_Iu67RcGDdo2NDU,3156
69
+ daytona_api_client_async/models/git_branch_request.py,sha256=5xA1566ZIeeQoLItu9PXH0lQbxFjyWstTELlvuMbapU,3093
70
+ daytona_api_client_async/models/git_checkout_request.py,sha256=cNy-DCFoICt3B1RSbhxCTYELKO1pRrC0kGcCXedH0s8,3109
71
+ daytona_api_client_async/models/git_clone_request.py,sha256=WiGoiG8pwQBAOiZR0M94ajcoVmGtX-5ZCPSGtc8iHRI,3483
72
+ daytona_api_client_async/models/git_commit_info.py,sha256=VncJ0dBvx1_5Bg8NpPDUrpKQC6hoJmWnkkDKtrRG7ws,3320
73
+ daytona_api_client_async/models/git_commit_request.py,sha256=ri61x1TIPFQ_Z9zJHcEIwrw0yWEpTtp4tNJFPrANboQ,3525
74
+ daytona_api_client_async/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7axt6nQRE6uTPWPJZdJli-z5mYM,3032
75
+ daytona_api_client_async/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
76
+ daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
77
+ daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
78
+ daytona_api_client_async/models/health_controller_check200_response.py,sha256=G_jTEzrAG5Ets3tVBmQ_fsPLzbry3HmT1Xr4tVNvjAQ,5732
79
+ daytona_api_client_async/models/health_controller_check200_response_info_value.py,sha256=R1GEl8QQr1qyOHAN5XJMGIpy1TfiBg42BwhkzgHsbZk,3136
80
+ daytona_api_client_async/models/health_controller_check503_response.py,sha256=6wduhFHV-71FtjGlRgwu9hs4kZMC_GsIXcshWx9NCpo,5732
81
+ daytona_api_client_async/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
82
+ daytona_api_client_async/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
83
+ daytona_api_client_async/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
84
+ daytona_api_client_async/models/keyboard_press_response.py,sha256=_IWKFwa6i4VxdKu_8nzW2d-_L8q2ZeT-4WT8ZhHwgUI,3225
85
+ daytona_api_client_async/models/keyboard_type_request.py,sha256=EInMIZtMjQPzpwmwaxPtaDdCJohXOrCBIW7yGyOVbPE,3339
86
+ daytona_api_client_async/models/keyboard_type_response.py,sha256=XlpMMOXyT8vZYYe8a4kfiXExcopHcGyPNgsjyOFLPCA,3138
87
+ daytona_api_client_async/models/list_branch_response.py,sha256=xGsMf4O7UtthJWbPxxX8WuN8aUch9Pdn0PbLiV_3UUs,3058
88
+ daytona_api_client_async/models/lsp_completion_params.py,sha256=NLalMGgtovPKHIs2FuSByykeVrcvRiUFyyaKFV3TfT8,4200
89
+ daytona_api_client_async/models/lsp_document_request.py,sha256=E3ZQdeykxfDWjyx5jpqDxMNFrkwJIim81FCaM_4hQc0,3397
90
+ daytona_api_client_async/models/lsp_location.py,sha256=vm-l4CjDz_q6JdBHedv0FXJ9YJ2CbPyIYmnID5zPcC8,3337
91
+ daytona_api_client_async/models/lsp_server_request.py,sha256=jqA17U7j4aXDuBkosNqKdnWbeM7u8QrxTDThOGsUJoc,3292
92
+ daytona_api_client_async/models/lsp_symbol.py,sha256=84tJY46PFQh87WEYoWVll1CvzoWQqP3lF4qpV4gzOlE,3501
93
+ daytona_api_client_async/models/match.py,sha256=h0OT21plFQwIyK2fD3LClSyeW43L46oztO4oNuRtuzI,3177
94
+ daytona_api_client_async/models/mouse_click_request.py,sha256=9fGa_XGz-Y1YvaHU9TfgeNGi42aqf8bFgGdtUDUYhac,3686
95
+ daytona_api_client_async/models/mouse_click_response.py,sha256=tjW-nIfdKanWmGbje7xT6wleCWLXgKbOUs95kbDAkm4,3288
96
+ daytona_api_client_async/models/mouse_drag_request.py,sha256=mH8Lnr6py8cdvYHNEIXhPMD-gYYr-MnPzwgn0RxC-bg,3912
97
+ daytona_api_client_async/models/mouse_drag_response.py,sha256=mGyOSOxqzHK5eHL3V0jOVGZVaWQzt_OvJeZxoqzMY9I,3276
98
+ daytona_api_client_async/models/mouse_move_request.py,sha256=GDeX86NxkTZSaxsKd03tMCz7TcIIUp9RG9uAJcCe-14,3286
99
+ daytona_api_client_async/models/mouse_move_response.py,sha256=8dNZRVGwou0z5Hnm8qgcpH-Ms5e5NNilXkutTt2QLnY,3298
100
+ daytona_api_client_async/models/mouse_position.py,sha256=7SihmxntHoebKBqFus3FCThvOAc95zYtnDVsKOY29Cs,3262
101
+ daytona_api_client_async/models/mouse_scroll_request.py,sha256=k8gy6A4zgfA-s1_pcJ6Ju53E-WpfU68uiT370IoxiK0,3653
102
+ daytona_api_client_async/models/mouse_scroll_response.py,sha256=8jjnRrSdfynLVoJY5YpG4nKnum0FpV6JoWMsLHuQ5-w,3134
103
+ daytona_api_client_async/models/oidc_config.py,sha256=jK2m4ZS7iz7a0mpuvdSibdc2kSrZx3s_yJjNi6AD2Aw,3310
104
+ daytona_api_client_async/models/organization.py,sha256=RZo0_a4TB3kZPL-4B5FOdGKTOfjbHyDyCPu5DRgtzMk,7507
105
+ daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
106
+ daytona_api_client_async/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
107
+ daytona_api_client_async/models/organization_sandbox_default_limited_network_egress.py,sha256=ld2A6ECqHt-YkpUI2r1JrCfljjb-vmS6ESqrCQ3d6Tg,3387
108
+ daytona_api_client_async/models/organization_sandbox_default_network_block_all.py,sha256=RWdyeOiaFMess1gVzQyJT7hRDE8vtj2YzR1_ptxCsw8,3337
109
+ daytona_api_client_async/models/organization_suspension.py,sha256=Pd6oBCKzlvI7xAfjDamyte2eHJKOZBFgG3GXMUVOe2A,3586
110
+ daytona_api_client_async/models/organization_usage_overview.py,sha256=MLg3z41END-8SQEscHbyP3CFa1kmMiRi-2Aj8fzguZA,4426
111
+ daytona_api_client_async/models/organization_user.py,sha256=Dsk4ziJPNVk4_Nkm-RTePYTeS8sw3RBfHJ-ulY9-A2w,4895
112
+ daytona_api_client_async/models/paginated_audit_logs.py,sha256=TK7soICcbuZSSaU6sPL9S5J6jQh4Wg4WnhxQSleEoaM,4061
113
+ daytona_api_client_async/models/paginated_sandboxes.py,sha256=jrUkXENPWoczwyZOiLJ5rjpOU4EsSQBCBC7CbJ_qPmk,3836
114
+ daytona_api_client_async/models/paginated_snapshots.py,sha256=UzRopvfhULBx0UxudciaVcK697OMOm5aDIwlTXKQoVI,3853
115
+ daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
116
+ daytona_api_client_async/models/paginated_workspaces.py,sha256=emSPdjOduu8wXJqUki1_DLHExuP2e-ABy3EwgueJSmM,3862
117
+ daytona_api_client_async/models/port_preview_url.py,sha256=k7hDachl3cgItHO3Tfd-YrdM1VaT34aF25oNpgDLLuQ,3309
118
+ daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
119
+ daytona_api_client_async/models/posthog_config.py,sha256=G_bxf3xbxeikp1jbtJbfFCsjHl8CI61DyTc-VSjOmP4,3192
120
+ daytona_api_client_async/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
121
+ daytona_api_client_async/models/process_logs_response.py,sha256=dyg9HqPdnjbqxe3n8hMga9lKk3eRCuoU8SdLtaYKQUw,3308
122
+ daytona_api_client_async/models/process_restart_response.py,sha256=XnuTZl2bu5YTVfZ8Pi2h41MRRKR-6eymHfBcBpT13jk,3337
123
+ daytona_api_client_async/models/process_status_response.py,sha256=fnal7pllEO0Q_qiZ9rhz2EJnDfD-s7IaA3sr1otTzxI,3338
124
+ daytona_api_client_async/models/project_dir_response.py,sha256=o0Ibu6QIWgNay-YZqgJp5qSAiTemZbPnkhNiOLBGrE8,3059
125
+ daytona_api_client_async/models/pty_create_request.py,sha256=yXrgwzKlxC7TWLjhw2rJ6uSBd__L1WLge1CPuKl8gl8,4092
126
+ daytona_api_client_async/models/pty_create_response.py,sha256=gxAZp9LC0qoknbCyGGwuO349xvy4FyqDBuzo8FFwQbE,3152
127
+ daytona_api_client_async/models/pty_list_response.py,sha256=bltyXOVNSeQaKdKRsSfXsZ7EToykfRWSXdafor1RHRc,3598
128
+ daytona_api_client_async/models/pty_resize_request.py,sha256=jOhjIZat-zv5EuvTiqDE9Hq6uejEF28oZ_WW9SWeRSA,3257
129
+ daytona_api_client_async/models/pty_session_info.py,sha256=1cU_hHsNEOZyJrtT4xdzq1PevF2a_0nDWlMCXyKB_FY,4255
130
+ daytona_api_client_async/models/range.py,sha256=F48OUblVs_QhZ4FfNr_IIgWC42FXAXVDwX0I1z-9Gds,3518
131
+ daytona_api_client_async/models/rate_limit_config.py,sha256=bHH31bUQuacBPHMCXJAqEqW7wvlfQOeXxJ5mXg0ATa4,4891
132
+ daytona_api_client_async/models/rate_limit_entry.py,sha256=049oER0U35lOQCLFjOIP6HTeN3QD1YkaYTytG6Cm8qo,3306
133
+ daytona_api_client_async/models/region.py,sha256=yRbqZwx2OSQH_xUesuRSwKFdQJIGqFhcxkbkIvTZ3Gg,3862
134
+ daytona_api_client_async/models/region_quota.py,sha256=sS1D4A_Z4lH5sunKIpdGIkxFum5wzfoiDZxvMkTF43s,3709
135
+ daytona_api_client_async/models/region_screenshot_response.py,sha256=SCWHyJSAwC26cCxSKrBcgSqrQo7yD1E1V-0QRrffijg,3676
136
+ daytona_api_client_async/models/region_usage_overview.py,sha256=0Nlr9QkrFAaFOaHixBEptZ3G0SN9vHB4owXNLx5yiqs,4115
137
+ daytona_api_client_async/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
138
+ daytona_api_client_async/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
139
+ daytona_api_client_async/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
140
+ daytona_api_client_async/models/runner.py,sha256=kZehQBmOj7uc3f5zdjjmTfC3N9VYbM81uzIKI6z_2WA,7845
141
+ daytona_api_client_async/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
142
+ daytona_api_client_async/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
143
+ daytona_api_client_async/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
144
+ daytona_api_client_async/models/sandbox.py,sha256=N_RE_TIyIySLhNJtd8YbYzl9slXwoERP-NYlwV_rd_w,10037
145
+ daytona_api_client_async/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
146
+ daytona_api_client_async/models/sandbox_created_post_request.py,sha256=JqlrmmLBOvoEfwMdkTwPkxzHtvN75dBdhL4na8B5_dA,3667
147
+ daytona_api_client_async/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
148
+ daytona_api_client_async/models/sandbox_desired_state.py,sha256=BHvsm7h8ydWf5e48D7eFGRL9tD8vt7eMBMguZ1GChbc,818
149
+ daytona_api_client_async/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZTvYAq4aoeCJsU,3493
150
+ daytona_api_client_async/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
151
+ daytona_api_client_async/models/sandbox_state.py,sha256=a3niQChUHt9p-l4Jd2Qio6t6iP6Ic5iBk1G8_ttpGIU,1136
152
+ daytona_api_client_async/models/sandbox_state_updated_post_request.py,sha256=ADat2FHwm8XQ5epcbsHTeH3DUYMMCng142upJ-PoDlo,3708
153
+ daytona_api_client_async/models/sandbox_state_updated_post_request_data.py,sha256=RlSh1aZDrnnwT6OlMrzPSavXYAqxJ4rZ-dHQ3KREgG4,5273
154
+ daytona_api_client_async/models/sandbox_state_updated_post_request_data_sandbox.py,sha256=nqmEJJOiPtLoFUuC_R8la2ummVGukmVEbMkLOBeIl7U,4122
155
+ daytona_api_client_async/models/sandbox_volume.py,sha256=349f2TcJEmtlO688hAQ84t6IwWm5W6kXo2Q_3Lqa2-A,3539
156
+ daytona_api_client_async/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
157
+ daytona_api_client_async/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
158
+ daytona_api_client_async/models/send_webhook_dto.py,sha256=BGt7iS6gXvBpFDjToh9V7SMTv89hjU6Fapt6euxGSvc,3435
159
+ daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
160
+ daytona_api_client_async/models/session_command_logs_response.py,sha256=4-nfnZUkCRHn2n5_DDDMyyoH2ieBzRcVjU7ka7kuVE8,3254
161
+ daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
162
+ daytona_api_client_async/models/session_execute_response.py,sha256=JdYw8ql1ieE2IUpFHinerVK1aQ0iwjerHML2geJEHq0,3597
163
+ daytona_api_client_async/models/set_snapshot_general_status_dto.py,sha256=d1qZ9B51JmiJAYpCvUgiYgB40Ckj_0ubx9Jse9QMkmQ,3148
164
+ daytona_api_client_async/models/snapshot_created_post_request.py,sha256=C0kc7g4xBwUZdmsguAVC2z52xKXDVncqRb16twRCniY,3675
165
+ daytona_api_client_async/models/snapshot_created_post_request_data.py,sha256=jVpfuSvit_9DdmOGcHKXPCMTUR2mT-DsDZHThjfcsoI,5149
166
+ daytona_api_client_async/models/snapshot_dto.py,sha256=-27y_qwwLdJQw8xe9g9kZBLNRQlme6WgvQl7PWVpmmQ,6063
167
+ daytona_api_client_async/models/snapshot_removed_post_request.py,sha256=HdnT0xhpZVlQ-F-EIyDU_U5zdR4WaFXp-cFi_9wWIeM,3380
168
+ daytona_api_client_async/models/snapshot_state.py,sha256=SiCBteHsbiOfB9ZR_Yo3VBTOtCo1LAdH5r9GyM0AzAo,863
169
+ daytona_api_client_async/models/snapshot_state_updated_post_request.py,sha256=9GNXK_79Zj1RtCI0xzia-EkwCN9ntYceQ-0uTHUZT1Y,3716
170
+ daytona_api_client_async/models/snapshot_state_updated_post_request_data.py,sha256=aYEokomOPOjfNSYnPun4VeF70U3AFxFxumB7q349vSA,5038
171
+ daytona_api_client_async/models/snapshot_state_updated_post_request_data_snapshot.py,sha256=4lRfIgUpoVYIhxonHfeHGqW8vXXBHHJu_ewrCplyozk,4002
172
+ daytona_api_client_async/models/ssh_access_dto.py,sha256=SlKSwrMITp1Gs84p4g9Jo8jOp7pyXgZM-DSj1ywTnUc,3857
173
+ daytona_api_client_async/models/ssh_access_validation_dto.py,sha256=eMrFUOTh-F3aIsdrplQ1Wr-oWp_SOb3d7kP9B8_Q9zs,3306
174
+ daytona_api_client_async/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY5nUeaW8_2OPUeih614,3879
175
+ daytona_api_client_async/models/update_assigned_organization_roles.py,sha256=VQElJo3x7YUdjzJpCnCYiwEOvqBq1vXvv-ACjxlyVcg,3186
176
+ daytona_api_client_async/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
177
+ daytona_api_client_async/models/update_organization_default_region.py,sha256=m-rYvwKx4ew_vL8Ee3LfursLKAoM1mDj3OC2wiZgFtM,3239
178
+ daytona_api_client_async/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
179
+ daytona_api_client_async/models/update_organization_member_access.py,sha256=I0q60678RqxDc_-ZWqNf2drqEmEB1FMPpJ60ZL7-MbY,3646
180
+ daytona_api_client_async/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
181
+ daytona_api_client_async/models/update_organization_quota.py,sha256=DSDjssrY-TvGQ-8M-oF5Xuo5-94PuRY5TsWUexHCzvY,7072
182
+ daytona_api_client_async/models/update_organization_region_quota.py,sha256=roXVqt2TB5lPqNmgV-fR6L-d8KuYPCXI0GrGXjYfuPE,4303
183
+ daytona_api_client_async/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
184
+ daytona_api_client_async/models/update_sandbox_state_dto.py,sha256=KnvGd4EU82XiidRx_0ruHrEyMR1BjK2evfwjbtkJesc,4005
185
+ daytona_api_client_async/models/user.py,sha256=XK35zeb1pG--PfkkN4z0rmmt9mqdGQhbHcON5NoM9w8,4066
186
+ daytona_api_client_async/models/user_home_dir_response.py,sha256=Hw3BXi_AdWuJRQ7lzncLSnBKW1iulBMSFD5rP92aoY8,3063
187
+ daytona_api_client_async/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
188
+ daytona_api_client_async/models/volume_created_post_request.py,sha256=fS4INpQHcCd5OA2gj-HYeecEoUcpQt0D7tWNPhvkKLo,3659
189
+ daytona_api_client_async/models/volume_created_post_request_data.py,sha256=MEqGnebIYVqY4-CqWCZ6LUx7OdPQZprAeqMwY9-nCmE,4487
190
+ daytona_api_client_async/models/volume_dto.py,sha256=yqEdmaSVOLfHdF5nMXJUzbVChRh2K2lmpjfUi5vbJnA,4600
191
+ daytona_api_client_async/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
192
+ daytona_api_client_async/models/volume_state_updated_post_request.py,sha256=gDvb-UZsp3Vvcf2kkZ_qoCrBbgrdUvVwRofY0zZtNrg,3700
193
+ daytona_api_client_async/models/volume_state_updated_post_request_data.py,sha256=TDLCoyZ4P95jsdniTSv4lId_8oxI6JMjwJp5Eey-UOM,4740
194
+ daytona_api_client_async/models/volume_state_updated_post_request_data_volume.py,sha256=TIyzZQ_xwJ1-EK-RFuk5l2HIWzMvIbvcl2vIfwRaG8o,3858
195
+ daytona_api_client_async/models/webhook_app_portal_access.py,sha256=799jqtP3hC_tXVxEXOXOgxvwl-HedhvA5_lA065LPvY,3112
196
+ daytona_api_client_async/models/webhook_controller_get_app_portal_access200_response.py,sha256=QYeIu9ApCuX8sN53hCyjDHbHEmA4I4LSlSV1zA0qIeA,3230
197
+ daytona_api_client_async/models/webhook_controller_get_initialization_status200_response.py,sha256=xRw0jmNEYLphUdFxstgEk3EgP9xuavfQn-P-hZXI5w4,4497
198
+ daytona_api_client_async/models/webhook_controller_get_status200_response.py,sha256=aRWG6gX4340N2Xhv6F3_5xr29zcNxLE8k-I7E7PSqVE,3153
199
+ daytona_api_client_async/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
200
+ daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
201
+ daytona_api_client_async/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
202
+ daytona_api_client_async/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
203
+ daytona_api_client_async/models/workspace.py,sha256=2NE8v3TyJzWCmes0D94LYnIVKsO9SQiVwdI-3sRjJKM,11463
204
+ daytona_api_client_async/models/workspace_port_preview_url.py,sha256=WoNoKEFK2sitDp9Np5icJO8ZdqiM4G9iws8z6LZKkiA,3199
205
+ daytona_api_client_async-0.0.0.dev0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
206
+ daytona_api_client_async-0.0.0.dev0.dist-info/METADATA,sha256=cl4W2eM5ubSBfa5sFz7Ie8trHJeYTnB7GKIVO6sgafA,693
207
+ daytona_api_client_async-0.0.0.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
208
+ daytona_api_client_async-0.0.0.dev0.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
209
+ daytona_api_client_async-0.0.0.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Daytona
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1 @@
1
+ daytona_api_client_async