thestage 0.6.4__py3-none-any.whl → 0.6.6__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 (73) hide show
  1. thestage/__init__.py +1 -1
  2. thestage/color_scheme/color_scheme.py +1 -0
  3. thestage/controllers/base_controller.py +4 -3
  4. thestage/controllers/config_controller.py +16 -4
  5. thestage/controllers/container_controller.py +147 -49
  6. thestage/controllers/instance_controller.py +35 -9
  7. thestage/controllers/project_controller.py +334 -86
  8. thestage/entities/container.py +5 -3
  9. thestage/entities/project_inference_simulator.py +2 -1
  10. thestage/entities/project_inference_simulator_model.py +1 -1
  11. thestage/entities/project_task.py +2 -3
  12. thestage/entities/rented_instance.py +2 -2
  13. thestage/entities/self_hosted_instance.py +2 -2
  14. thestage/helpers/error_handler.py +3 -3
  15. thestage/services/clients/git/git_client.py +8 -12
  16. thestage/services/clients/thestage_api/api_client.py +144 -109
  17. thestage/services/clients/thestage_api/dtos/base_controller/connect_resolve_response.py +21 -0
  18. thestage/services/clients/thestage_api/dtos/container_param_request.py +1 -1
  19. thestage/services/clients/thestage_api/dtos/container_response.py +1 -21
  20. thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py +2 -1
  21. thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py +7 -1
  22. thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py +0 -1
  23. thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py +1 -0
  24. thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py +2 -1
  25. thestage/services/clients/thestage_api/dtos/inference_controller/{inference_simulator_list_for_project_request.py → inference_simulator_list_request.py} +3 -2
  26. thestage/services/clients/thestage_api/dtos/inference_controller/{inference_simulator_list_for_project_response.py → inference_simulator_list_response.py} +1 -1
  27. thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py +2 -1
  28. thestage/services/clients/thestage_api/dtos/instance_rented_response.py +4 -37
  29. thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py +3 -3
  30. thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py +3 -11
  31. thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py +1 -0
  32. thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py +2 -1
  33. thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py +2 -4
  34. thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py +5 -3
  35. thestage/services/clients/thestage_api/dtos/project_response.py +3 -15
  36. thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py +2 -20
  37. thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py +1 -1
  38. thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py +4 -2
  39. thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py +1 -1
  40. thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py +4 -1
  41. thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py +0 -2
  42. thestage/services/config_provider/config_provider.py +2 -2
  43. thestage/services/connect/connect_service.py +76 -73
  44. thestage/services/container/container_service.py +23 -19
  45. thestage/services/container/mapper/container_mapper.py +2 -1
  46. thestage/services/instance/instance_service.py +13 -20
  47. thestage/services/instance/mapper/instance_mapper.py +1 -3
  48. thestage/services/instance/mapper/selfhosted_mapper.py +3 -4
  49. thestage/services/logging/logging_service.py +40 -40
  50. thestage/services/project/dto/inference_simulator_dto.py +1 -10
  51. thestage/services/project/dto/inference_simulator_model_dto.py +2 -10
  52. thestage/services/project/dto/project_config.py +3 -2
  53. thestage/services/project/mapper/project_inference_simulator_mapper.py +1 -0
  54. thestage/services/project/mapper/project_inference_simulator_model_mapper.py +3 -3
  55. thestage/services/project/mapper/project_task_mapper.py +2 -3
  56. thestage/services/project/project_service.py +161 -131
  57. thestage/services/remote_server_service.py +1 -0
  58. thestage/services/task/dto/task_dto.py +3 -23
  59. {thestage-0.6.4.dist-info → thestage-0.6.6.dist-info}/METADATA +3 -2
  60. {thestage-0.6.4.dist-info → thestage-0.6.6.dist-info}/RECORD +63 -72
  61. {thestage-0.6.4.dist-info → thestage-0.6.6.dist-info}/WHEEL +1 -1
  62. thestage/services/clients/thestage_api/dtos/cloud_provider_region.py +0 -19
  63. thestage/services/clients/thestage_api/dtos/docker_container_assigned_device.py +0 -10
  64. thestage/services/clients/thestage_api/dtos/enums/currency_type.py +0 -10
  65. thestage/services/clients/thestage_api/dtos/enums/daemon_status.py +0 -9
  66. thestage/services/clients/thestage_api/dtos/enums/disk_type.py +0 -7
  67. thestage/services/clients/thestage_api/dtos/enums/drive_type.py +0 -7
  68. thestage/services/clients/thestage_api/dtos/enums/instance_type.py +0 -7
  69. thestage/services/clients/thestage_api/dtos/enums/location_region.py +0 -11
  70. thestage/services/clients/thestage_api/dtos/enums/power_status.py +0 -10
  71. thestage/services/clients/thestage_api/dtos/price_definition.py +0 -14
  72. {thestage-0.6.4.dist-info → thestage-0.6.6.dist-info}/entry_points.txt +0 -0
  73. {thestage-0.6.4.dist-info → thestage-0.6.6.dist-info/licenses}/LICENSE.txt +0 -0
@@ -11,30 +11,10 @@ from thestage.services.clients.thestage_api.dtos.selfhosted_instance_response im
11
11
  class TaskDto(BaseModel):
12
12
  model_config = ConfigDict(use_enum_values=True)
13
13
 
14
- id: Optional[int] = Field(None, alias='id')
15
- instance_rented_id: Optional[int] = Field(None, alias='instanceRentedId')
16
- selfhosted_instance_id: Optional[int] = Field(None, alias='selfhostedInstanceId')
17
- docker_container_id: Optional[int] = Field(None, alias='dockerContainerId')
18
- description: Optional[str] = Field(None, alias='description')
14
+ public_id: Optional[str] = Field(None, alias='publicId')
15
+ docker_container_public_id: Optional[str] = Field(None, alias='dockerContainerPublicId')
19
16
  title: Optional[str] = Field(None, alias='title')
20
- source_path: Optional[str] = Field(None, alias='sourcePath')
21
- source_target_path: Optional[str] = Field(None, alias='sourceTargetPath')
22
- data_path: Optional[str] = Field(None, alias='dataPath')
23
- result_destination_path: Optional[str] = Field(None, alias='resultDestinationPath')
24
- run_command: Optional[str] = Field(None, alias='runCommand')
25
- commit_hash: Optional[str] = Field(None, alias='commitHash')
26
- ordinal_number_for_sketch: Optional[int] = Field(None, alias='ordinalNumberForSketch')
27
- user_id: Optional[int] = Field(None, alias='userId')
28
17
  frontend_status: FrontendStatusDto = Field(None, alias='frontendStatus')
29
- created_at: Optional[str] = Field(None, alias='createdAt')
30
- updated_at: Optional[str] = Field(None, alias='updatedAt')
18
+ commit_hash: Optional[str] = Field(None, alias='commitHash')
31
19
  started_at: Optional[str] = Field(None, alias='startedAt')
32
20
  finished_at: Optional[str] = Field(None, alias='finishedAt')
33
- client_id: Optional[int] = Field(None, alias='clientId')
34
-
35
- instance_rented: Optional[InstanceRentedDto] = Field(None, alias='instanceRented')
36
- selfhosted_instance: Optional[SelfHostedInstanceDto] = Field(None, alias='selfhostedInstance')
37
- docker_container: Optional[DockerContainerDto] = Field(None, alias='dockerContainer')
38
-
39
- exit_code: Optional[int] = Field(None, alias='exitCode')
40
- failure_reason: Optional[str] = Field(None, alias='failureReason')
@@ -1,7 +1,8 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: thestage
3
- Version: 0.6.4
3
+ Version: 0.6.6
4
4
  Summary:
5
+ License-File: LICENSE.txt
5
6
  Author: TheStage AI team
6
7
  Author-email: hello@thestage.ai
7
8
  Requires-Python: >=3.9,<=3.13
@@ -1,33 +1,33 @@
1
1
  thestage/.env,sha256=lHeR-H4TiBp4z06bWt7oND9LMMVXP3WCKY7lQltDM3M,129
2
- thestage/__init__.py,sha256=_DRvfFKWKADujVE2sliedLGBeSo7nwI-3kPAatcyvDk,64
2
+ thestage/__init__.py,sha256=IO0lPlZY3Ps8mQl7mW6sfOiw93IVvBGApb2QecBNa6U,64
3
3
  thestage/__main__.py,sha256=4ObdWrDRaIASaR06IxtFSsoMu58eyL0MnD64habvPj8,101
4
4
  thestage/cli_command.py,sha256=P93LXDruJWecmF5xn-D2uhMOSD9iSJl-gP4oG9aD56k,2173
5
5
  thestage/cli_command_helper.py,sha256=f5NZQ4MZJ7yyxPvkQW7ilIAxN_19Mx_zzSqedhZtd6g,1939
6
- thestage/color_scheme/color_scheme.py,sha256=qaSSS_OzPsqI7yV1TC3Ne0PnsWDWo5xqU8j_7JYG-TI,210
6
+ thestage/color_scheme/color_scheme.py,sha256=Wex4gj3bS1vh-IO4fGT0NPaHC-PNpbHSiFfL2VTmT-U,232
7
7
  thestage/config/__init__.py,sha256=RNobilYVK1WAM1utcQ8ZuATKc9Zh9M9BAjCLZTnR_TA,428
8
8
  thestage/config/config_storage.py,sha256=QxUCPJCCNs_PHuz_5TbAOXaeTCIT34IiQXJQzPAXlss,140
9
9
  thestage/config/env_base.py,sha256=RNBQ17yk1ieu1kdUlM7Qe7mDCoxstgGUwwhe265o4dQ,367
10
10
  thestage/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- thestage/controllers/base_controller.py,sha256=52uvBAL9Z-otP-oXGZoRZ7AjR0nAOrXzBang9PhyVyE,2458
12
- thestage/controllers/config_controller.py,sha256=hj9SiPCC1o1loJx8txl5wMh_S52RD-OdpvOWJG1NM6E,5417
13
- thestage/controllers/container_controller.py,sha256=Es3s4NOa0fYCqYSUv6unv3ryqRQ5t_f6yrybZhileZM,15312
14
- thestage/controllers/instance_controller.py,sha256=uV0ZLqTsz7CfQA6T_ZhepPz3KfDFCW5wgiWoNvrH_OE,6680
15
- thestage/controllers/project_controller.py,sha256=zFCcst-zO0msU3Jx3uVdKhYdPG5bHoxmXpxdVBP6s5U,32039
11
+ thestage/controllers/base_controller.py,sha256=BjTWHPynPrOcD0Jb3h6bqeIMSZxy6Elja3Rdgl93mXU,2508
12
+ thestage/controllers/config_controller.py,sha256=WEw4H5ZfJfUhfBimLa1Lava-h8zp2TZ4GyHVyzeTMdo,5964
13
+ thestage/controllers/container_controller.py,sha256=oAFDWelChvRRIWTeeOMVufIOQXfqSS9NnF8kqEnhrNk,18244
14
+ thestage/controllers/instance_controller.py,sha256=147zqteL_F8lhF4blgRLJHemFnhQ_EGsK2nbSxjV26c,7396
15
+ thestage/controllers/project_controller.py,sha256=8rahTBA6Xt-nlSVBIyeMCOrsakDYgK6rM3KHjonQAr0,40509
16
16
  thestage/controllers/utils_controller.py,sha256=ac-TLWC2wrmxJYNFOltoQKCTpFaKB6p937odona64OI,912
17
17
  thestage/debug_main.dist.py,sha256=UPIJ58yf-6FtXZj-FLAwxi7HononseuCYm9xb5KlxTs,783
18
18
  thestage/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- thestage/entities/container.py,sha256=jP8ZUQPSMdAG5Z68FFKLYpBFI7Hf42Jz4_NXnRj5css,533
19
+ thestage/entities/container.py,sha256=k9A04P9WSrZJPU-SqJ7Ld0sxFaFJvWmFMlBImyHkHbk,660
20
20
  thestage/entities/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  thestage/entities/enums/order_direction_type.py,sha256=zC9-FLhn8-6NVmSlgeKXKBnVJKH8RLtuUYApQIb1zcU,95
22
22
  thestage/entities/enums/shell_type.py,sha256=-XcPiI3psjeIzd0VXWHdca5Ttgbu9M5oQPeZUZLJRMc,118
23
23
  thestage/entities/enums/tail_output_type.py,sha256=6S55VRRosrI3yZW8XeAGm4u12H4haeiBRvoaExUCWcU,84
24
24
  thestage/entities/enums/yes_no_response.py,sha256=PXXkB7KMB-XCHvKOBRuX6NRKyq8UW0G228OICRr2ZTk,86
25
25
  thestage/entities/file_item.py,sha256=hxUbdne6AYFHJfuQ8l0XQO86IuC8Pyx_OrPw_0lhN_o,828
26
- thestage/entities/project_inference_simulator.py,sha256=J7Kq3Stb9EElaa8LYLo5kzLLAzgG0ibg4u1iNo0ZUns,597
27
- thestage/entities/project_inference_simulator_model.py,sha256=PVl2mXsqfmLuZ1Czr_IeeRd_J-kFznAKVAhWJty2poE,568
28
- thestage/entities/project_task.py,sha256=7uewPIC_HF32OviQHU7uyJ8KokCuK5OjB47r-ltdpyI,672
29
- thestage/entities/rented_instance.py,sha256=NjYKaO0oZ3a55OJHrMyWK9ueeXw8HtVgm9-0nobo_kg,632
30
- thestage/entities/self_hosted_instance.py,sha256=oJeKpLyqBdFxWiaoxJq6XDyXjRwYsCs40uM1AF6YMng,629
26
+ thestage/entities/project_inference_simulator.py,sha256=Rgj5byZDq-uFI2ugOIMfW7CgJNYHfUyidhUbZ_kMoDk,647
27
+ thestage/entities/project_inference_simulator_model.py,sha256=bg0ZVkz5lCHvUYIT3F4Z2xkwIy1rYIrbWHKSW-T_yJA,575
28
+ thestage/entities/project_task.py,sha256=6UQaJMTuqDQJtbmbafD1iLjgE7CrlPL7AsGkIU91nNQ,594
29
+ thestage/entities/rented_instance.py,sha256=DyekXeui3YiiKZmqtvb40n6j6w4_ly80TSjcAbjWlcU,628
30
+ thestage/entities/self_hosted_instance.py,sha256=blsOdCMZPYM_xK4Zx4ZdGD43Ayy8j7ifX30O3fZ2XiM,630
31
31
  thestage/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  thestage/exceptions/auth_exception.py,sha256=HZeiF3aocqukmClUfIDCk5izb4tpG4KEbhyXtVl2z34,214
33
33
  thestage/exceptions/base_exception.py,sha256=ekov63Q0OZLeLOu6bhHN9KLo8pPn0XLCMZwZrVULhDw,282
@@ -38,7 +38,7 @@ thestage/exceptions/git_access_exception.py,sha256=ZyB5qrz6fok1jOEKtt3PXP9vq3vOm
38
38
  thestage/exceptions/remote_server_exception.py,sha256=Z1R5Wjw3w7VdqURhjidGkNhJL9lsA76txkAZPA5Uv70,595
39
39
  thestage/git/ProgressPrinter.py,sha256=z99BPq3KYycClL-7fmsERIIuZ03papdIYOhR8A7b9AA,573
40
40
  thestage/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- thestage/helpers/error_handler.py,sha256=_KArMtEmlwvZmPcbbO-fGYSuMKMmOTErZONf1jkFpu8,5355
41
+ thestage/helpers/error_handler.py,sha256=-f4i11vca1kMjQNFfp3PU1qPaiLg-aq5j9VPgnPVSGA,5366
42
42
  thestage/helpers/exception_hook.py,sha256=jekDs7smzI1UjXkuMut_uM725GL3c6Gr_zmyEYdDjV8,334
43
43
  thestage/helpers/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
44
  thestage/helpers/logger/app_logger.py,sha256=4dgZ_8k28R887rmIHmCTn2QVg0stqTk8hcXa5CF4VJc,1607
@@ -53,18 +53,17 @@ thestage/services/abstract_service.py,sha256=fsGXb0plZ9SvGBWAY4y599BH196YoFP3BJ7
53
53
  thestage/services/app_config_service.py,sha256=bbiXxcLoh_XC3mgsAo9ciksblPvUEcnG2oCIm1jMyo4,1679
54
54
  thestage/services/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  thestage/services/clients/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- thestage/services/clients/git/git_client.py,sha256=PAob7rcwLNoHMDW1ZyRGGGpbYKWahaAp0DrPVKrKUzM,16811
56
+ thestage/services/clients/git/git_client.py,sha256=BzfiGizn0rByUL8x-XNbzJ_Zs169CwvLJI7NZ6rp4kI,16443
57
57
  thestage/services/clients/thestage_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- thestage/services/clients/thestage_api/api_client.py,sha256=CGB-IlumCFd3auYcTRrslQ8qTRDpf5gFA_rGVVV5xBM,30322
58
+ thestage/services/clients/thestage_api/api_client.py,sha256=VLH_-WSbX4n3AFlLgQHJcLMEu28rTCVX59L2zGyPW7M,32257
59
59
  thestage/services/clients/thestage_api/core/api_client_core.py,sha256=lEffuh30f6oV2lp90UuET90OUxnrMh2PHjquF6_sT6E,3453
60
60
  thestage/services/clients/thestage_api/core/http_client_exception.py,sha256=JH-874Gu9T1b1_FpPBLqdyt9U0PyhpwRCe_oDc6c_jI,385
61
61
  thestage/services/clients/thestage_api/dtos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ thestage/services/clients/thestage_api/dtos/base_controller/connect_resolve_response.py,sha256=EvbEMdYYXhkfqWeU9kajBUO8yJcAM8y4CvA8GbaiM3c,1021
62
63
  thestage/services/clients/thestage_api/dtos/base_response.py,sha256=R6jjhvv0U0XD8j5N5T36q-6liiEAUy7xINFA1H7CMB8,410
63
- thestage/services/clients/thestage_api/dtos/cloud_provider_region.py,sha256=EJNhQywINW0dtjXKHEDb-etkWQ7keXNUSDhH-h9cabs,1011
64
- thestage/services/clients/thestage_api/dtos/container_param_request.py,sha256=8Mp9-ZqkvoVw_lyCjo-7syMA4zCKXhs367PIl5DhWN8,436
65
- thestage/services/clients/thestage_api/dtos/container_response.py,sha256=15WqoxXw6VkombfRbWvR_gLTPyOfE2qidaDBj1oy--w,3763
66
- thestage/services/clients/thestage_api/dtos/docker_container_assigned_device.py,sha256=u_OE30OpGIeqF4Wnil44JCLIN5rQfpLReTIXfJEbtyk,361
67
- thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py,sha256=AMNmxoWGt4yAS7juirOCurhlNqEkKAV2C974tLZ212A,500
64
+ thestage/services/clients/thestage_api/dtos/container_param_request.py,sha256=Os3FTzbOIcEIFMpJFsFm0hhGV1ZfIyKrUw9OtwRw1Z0,449
65
+ thestage/services/clients/thestage_api/dtos/container_response.py,sha256=hMrQe6RvurGONfFweSTRHi44AP1HVvIFPRmAZ1g8RHY,2445
66
+ thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py,sha256=iJndw9cmH8cXMP-pzwmrU76xBMiMI8auAg3--TWBNcM,578
68
67
  thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_response.py,sha256=DfbXk6ikZK78NxlaC5nGujVeSrafTRu7H8QslarmfqE,663
69
68
  thestage/services/clients/thestage_api/dtos/docker_container_mapping.py,sha256=pH0lCKTDheDI16NasqQiF288szUgpw758W27JrJo0QI,372
70
69
  thestage/services/clients/thestage_api/dtos/entity_filter_request.py,sha256=akovBYk0vK6a9M90eDFnCqx70Mde4Wtb6e0ulhtGMLo,514
@@ -72,105 +71,97 @@ thestage/services/clients/thestage_api/dtos/enums/__init__.py,sha256=47DEQpj8HBS
72
71
  thestage/services/clients/thestage_api/dtos/enums/container_pending_action.py,sha256=7DMt4KdpO91-NnU-Rb2s8ikDpt3IxsyBYEH1lWhR9MI,222
73
72
  thestage/services/clients/thestage_api/dtos/enums/container_status.py,sha256=CpXOUJgpqKMRW7QKyJSeegtj_aQBOfDcNsvztMAJvzw,457
74
73
  thestage/services/clients/thestage_api/dtos/enums/cpu_type.py,sha256=lNgTW92gc-MolKThbJmY6xXcrgEFdVxXcH07T2KQ2_o,154
75
- thestage/services/clients/thestage_api/dtos/enums/currency_type.py,sha256=ojfTE12pyDQ6GXZfoQlpftcArtRVu8kApHUm7QC9lJM,202
76
- thestage/services/clients/thestage_api/dtos/enums/daemon_status.py,sha256=vFuCVysI6PF-XM7QOgdivg13Uuy9IzBAV8bg_afd4pQ,182
77
- thestage/services/clients/thestage_api/dtos/enums/disk_type.py,sha256=tsi4XyKxohIY0W_sgskxTklIiqDwINZ6pgo8Kt-AOS0,129
78
- thestage/services/clients/thestage_api/dtos/enums/drive_type.py,sha256=xqs2I9w2cuOmQ86kcMZHetCe18lNqzH6TAYnfwkQPcM,130
79
74
  thestage/services/clients/thestage_api/dtos/enums/gpu_name.py,sha256=YO3iYlo7wTT6wEpkJDRcOO8NAc3WMxEQXMQ8jTFKH6k,162
80
75
  thestage/services/clients/thestage_api/dtos/enums/inference_model_status.py,sha256=OgoJBh8u5kveForMoxKCCXesE23C8MTGWiMKTUmmKls,256
81
76
  thestage/services/clients/thestage_api/dtos/enums/inference_simulator_status.py,sha256=mC8_xCjP0p_tmzx41rgLRwYgbijWcR9xs4m9goZY1Ck,436
82
77
  thestage/services/clients/thestage_api/dtos/enums/instance_rented_status.py,sha256=_uk5memh9fOPybFugvNANdhnj2-1Gpx1SE9ZpG6d88k,490
83
- thestage/services/clients/thestage_api/dtos/enums/instance_type.py,sha256=bdyRr3Up7LpdHZjVsVjg_4lmxME5CQZ6DJ0__tgmpMk,159
84
- thestage/services/clients/thestage_api/dtos/enums/location_region.py,sha256=t0TLDgFhZTe6eOZxhp1a52bB-ZPERwxoHv0c928Vxvk,281
85
- thestage/services/clients/thestage_api/dtos/enums/power_status.py,sha256=jNmebTN4qcQs8pwlG2QSy0kTwOyBEkfCl84Gl1npK4g,239
86
78
  thestage/services/clients/thestage_api/dtos/enums/provider_name.py,sha256=StLglFLewOa7pQYOb3aGzIPuhc937Qr2c4UlQFJXUto,287
87
79
  thestage/services/clients/thestage_api/dtos/enums/selfhosted_status.py,sha256=_OsxObVpczLJ9CJKh4nRh0X6lXw9PfQMTYOGEvze9R8,285
88
80
  thestage/services/clients/thestage_api/dtos/enums/task_execution_status.py,sha256=MU14K1PvkLEFnUizeVt8x_u1IP2OVkyf5pLFdrUUtYg,303
89
81
  thestage/services/clients/thestage_api/dtos/enums/task_status.py,sha256=Zg4QkuHilWTC6D_lKsby7u4y1rSRs69_kzfeFWCWoFg,282
90
82
  thestage/services/clients/thestage_api/dtos/frontend_status.py,sha256=MKrqCmFWVe-8InJqavkqz1w1N35OcT3ndBrXOu7mKdA,312
91
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py,sha256=5R8snv8kMqpyFtxiLKLNotGc-2a4cZYrf6_a8vY5wgg,612
92
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py,sha256=KMq_ySkrQC-sGUB4Znbj2qImjSPHOLKosnsOqJFsMBg,496
93
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py,sha256=5NcSMRSlTon_zg9hI2SxRGd17Y5lRTGP3TXgOercjlw,408
83
+ thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py,sha256=xOO4ky_2CEGWCnPuBtEhhZ8BxJArFKZR_WnGYcqV7b8,870
84
+ thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py,sha256=mX_Parrm8ddTY9nqR4AYlI5WXAVpx1hI7yUEqJiiOFQ,383
85
+ thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py,sha256=CAEzVOlud8dR3ifZLu09LIKAxt2iwZnjq4HmD0a6HXg,478
94
86
  thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_response.py,sha256=lis4effVtF39eW8gCkWzJKxMVhIMAg3_8JHub83JR6s,422
95
- thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py,sha256=syCIJgOYxzm4E53qRVLh4u1ZbSP23_O09WhELMH6QIg,337
87
+ thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py,sha256=63nSt4XucJHhHf99m-bdBTe8T6j-tLIQzs1XI71pd3U,399
96
88
  thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_response.py,sha256=zTt5ewR3oh4qyL0pzt0QP2jANrUpA-5V8As1YqNy3hA,474
97
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_request.py,sha256=zsDl-23C2hGZIYwk4aR8wCXP6KDdOObanLsPYkQOplw,508
98
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_for_project_response.py,sha256=YVMbjwz18wWdn9OIzQcc50Vc8e9r2zQc4csIUDDGPyQ,554
99
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py,sha256=ljK-NhYCGojuHHJjOW3WcT6hSSf1lsBHEUyZe3UT-lE,486
89
+ thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_request.py,sha256=JVpjCSfEHijhxojAFSu1d5jSeZX18xiTObUxnHbMs1Y,582
90
+ thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_list_response.py,sha256=KSPIabvvqDvpitMQElo3S37OQPRpTT-2tJWjelEZ1uM,544
91
+ thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py,sha256=6ilBlsVdE9tuSNIJv5zVpQyRBHw7WyW1ewJhj5YNPmQ,570
100
92
  thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_response.py,sha256=d6Aikhrbu0CDrtqUi5XWhYzFK4PrcD3YdJpt9wOUuMI,673
101
93
  thestage/services/clients/thestage_api/dtos/inference_simulator_model_response.py,sha256=zC0wMnp_73oNse-ZMF5dICrqwXtJ5KdpKVkb7ejx61s,421
102
94
  thestage/services/clients/thestage_api/dtos/inference_simulator_response.py,sha256=KUs4cZF7I7rC_UceCG4MfBaNffxkf-_HNDuKfvHyKQI,405
103
95
  thestage/services/clients/thestage_api/dtos/installed_service.py,sha256=YHpFFozYe_fz_MP9Tdr-Nn6oR9FWfnXA9NTaxeGlyPI,662
104
96
  thestage/services/clients/thestage_api/dtos/instance_detected_gpus.py,sha256=G32A2kz78sJeLcWkIHcbkC75YxUezXjhp98_2RLCo1g,636
105
- thestage/services/clients/thestage_api/dtos/instance_rented_response.py,sha256=ZRmSupfT9fckcWlSRKoa0B9Xwq72X7IY_1vUc1yTXM0,4478
97
+ thestage/services/clients/thestage_api/dtos/instance_rented_response.py,sha256=KqpoVOBXfOFDh-7tH3ExjDL0k0CKwDDa7WnVmb0UgxI,1851
106
98
  thestage/services/clients/thestage_api/dtos/logging_controller/docker_container_log_stream_request.py,sha256=1roOpNE6BX8E9zyPdoMBp0bpL70xRQJepH9Q0EZ8H7c,223
107
- thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py,sha256=mu3j0DH3qLrySf43EIET8vDn-miiEdYvFR8wX7mwh-4,526
99
+ thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py,sha256=2lMalL36tIrkVr657yMlvyvS-QgOTDttUNKdpW9-RS8,562
108
100
  thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_response.py,sha256=To3AbryCZ4ihOlukrwucQQNUaRnNIvvH5VZw38AcjrA,548
109
101
  thestage/services/clients/thestage_api/dtos/logging_controller/task_log_stream_request.py,sha256=fbqteayY0XR7wNjuSrvJNJ61HSAaMM0LqPXqUVBUQxQ,190
110
- thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py,sha256=hCbd_SRHX8kQDMpfO7DpzhjdzxP-zmHBMc7Cnigi8bM,1032
102
+ thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py,sha256=7bObMnRtSvMtqNJopsOz5VkxMBJ5Be2ksTdi-VWdMuE,542
111
103
  thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_response.py,sha256=66zw9eTmKnEeCmuZG7Bcm_nPYFkAEQbh1HMo_JbGt5U,559
112
104
  thestage/services/clients/thestage_api/dtos/paginated_entity_list.py,sha256=a2QRAFqwz2KZXzuTB8aIqTNymg8FHr4XTVXDnYJgqnc,419
113
105
  thestage/services/clients/thestage_api/dtos/pagination_data.py,sha256=qV7qiTAtCf-RdDmjZwsBspQlifR1OGr7ezuVJ0A42zU,357
114
- thestage/services/clients/thestage_api/dtos/price_definition.py,sha256=ddcXpp0Rt3iH6SrRLjsydNrWweZVdiTtYsFaas6wsC0,572
115
- thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py,sha256=SjFUoIe3cX8czx7PjObCVkDV9l7FBabSJPfvAvWou5g,209
106
+ thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py,sha256=OJtk7d_7lmAPJt9fTDrjDlQ9jwQywheF1poYdwEfHeA,273
116
107
  thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_response.py,sha256=LY7NbmzPaQcnI8IjP5nZ6ONMiKf1cK7lUJN5fJ3RQjo,363
117
- thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py,sha256=_k5PixXsQSgLkcs68ib1QwQUFC7MiXLHWbLQIpVYDoc,245
108
+ thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py,sha256=pt4qI8EKFWOPoKHKMdWBzrW7vB_mb2Gstm1dVsob05U,378
118
109
  thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_response.py,sha256=aNaD4xVkhbwlD_rI3D0-2gp-F4L6CxxUkAOSLJZPl1I,249
119
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py,sha256=ZFe2uGseJGwixBh380zpaotb_aWUidrqUSYoqe-y4jE,660
110
+ thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py,sha256=AkW-Gn2M8-NcRU0SWdmQ0vQ-LemPY4lh-UQBtB0Mka8,498
120
111
  thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py,sha256=iISmJTHbxSRJsXHT4qBTMP3-Co9fWCHI5s2UgB_-GV8,340
121
- thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py,sha256=56MzMLxfXrCUW5m3SEhGMQXisQSTN10GhPrIoXHxjNo,623
112
+ thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py,sha256=4PGvswsyz8lx-A0xFrZEBEHbw8pEKv7WrnuDi3nZgfY,819
122
113
  thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py,sha256=Q7XlbZ4vgk9QQL2z11BeUkKDn-5p8j06eNI0GmpZNjk,430
123
- thestage/services/clients/thestage_api/dtos/project_response.py,sha256=PQ0L14_8akc5ADZeL_Y15Z2Hlvkt54d0YKfPROJZQHk,1691
124
- thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py,sha256=_zjZAmJ5XI5Jf3Hpys9SBuM_wSsBaUm9KIyFUxECPJ0,3047
114
+ thestage/services/clients/thestage_api/dtos/project_response.py,sha256=Q3gDfuiuVXls2WwOVgmKT9MGfOoM2GyE4n9YtmYFiUU,810
115
+ thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py,sha256=QsCkn5zFl0E-ZX3Eg0seRdq5G3AtX_hCv-93mEoWfm0,1872
125
116
  thestage/services/clients/thestage_api/dtos/sftp_path_helper.py,sha256=UeCEcE_qR_TcOGFyOLef7cz3veh1_o6MnLbAJyZk2yc,362
126
117
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_request.py,sha256=BmO99BXrbUCb2ZIYS2oc7xkwWb5CV5WCaqt1xO4yIro,234
127
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py,sha256=V8wH70noiX2wIFPr8MoBClVl3uUnKpJgaELp59dfK9E,391
128
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py,sha256=gRAyJnvUs4DaIfgDLmZAG7y1o1wvmh-cgbgHcG5iNjs,284
118
+ thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py,sha256=B8rPF0ms0x1xrmSPNWoDuHSjLUyHp9w_DySxrKyG7GM,403
119
+ thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py,sha256=7F6BmYzW0GtbfogGwbfuSbrYJ9xR7RgnGTWSKoZ-Ljo,337
129
120
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_response.py,sha256=JrAsRyRU8IhQHJc_Vj0v0ZM2vKPVh30r5wnY_-OX5jc,334
130
121
  thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_request.py,sha256=UfiBOkYNm_usW0rRSc5QIWhTh_5br0x43M8qbNX5HfU,198
131
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py,sha256=wwZ-W-LUibTVNXkERQjn6da_02jOJMGHYburaWkpXVw,424
132
- thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py,sha256=hJt5T2mHPaS9U793NlvgY6kv_GFUxk34QGeRymvQN7Q,392
122
+ thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py,sha256=mlu70LwV9MZyzObXMhfNLU7Q_005ztfmxrRSSQmrtlI,436
123
+ thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py,sha256=569Dwh2ErWVTc-sF3VVgTP8b6q7oip4PT4m0cN5crY0,505
133
124
  thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_response.py,sha256=r2R2efDZmaAyfiNs_kuftpgaP-j6VWpKnA1qkHDQfII,466
134
125
  thestage/services/clients/thestage_api/dtos/task_controller/task_status_localized_map_response.py,sha256=yop410FwNvQFXYHKh60ne4DSO3m19zF1nCEuUVSaZ8w,283
135
- thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py,sha256=30P19Fipas4wzHguvzmxsAoDkKcGNbcKQ_SjJOQVsq8,462
126
+ thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py,sha256=iKDkSOUIsd3z00netEVs7TZIq_8jmMSiERkiWG08MYc,308
136
127
  thestage/services/clients/thestage_api/dtos/user_controller/user_profile.py,sha256=cDH5azyVBXi3V7kIOEuzsF1aKONQnxcI7YsDwXjRmuE,268
137
128
  thestage/services/clients/thestage_api/dtos/validate_token_response.py,sha256=nmKbqRPkwtzhv37QheA_MO4CpEPmGM0VUC2gYckcrl8,418
138
129
  thestage/services/config_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
- thestage/services/config_provider/config_provider.py,sha256=rxMydXyAdR45ARwEK4020LmunexucPp4HszCTeKe9v8,10257
140
- thestage/services/connect/connect_service.py,sha256=FASRfXsiFpqGEDPAmJnnEwyZij0IrJJk29U_Ms4ykiU,9359
130
+ thestage/services/config_provider/config_provider.py,sha256=CR2xSWRMIqsspek3iIs2qZ60ThHVNmTNTS6R4uheAuE,10238
131
+ thestage/services/connect/connect_service.py,sha256=-La0JfVHEWu29zv9rP5TYUShJNErOVIpza0ysZIRFLk,9750
141
132
  thestage/services/connect/dto/remote_server_config.py,sha256=yuO0tTAgUxCiQ-h1nVvWUMlCUtR-WB_eOH6KYspV7zQ,272
142
133
  thestage/services/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- thestage/services/container/container_service.py,sha256=ndsjWGupoXlCLAheFij6IcqLtaMickgS5rBMqM7qYkc,14148
134
+ thestage/services/container/container_service.py,sha256=q-fArCJlOaNrQVfc87Kb5RMyHh3x55acn1dA7hPtYMc,14409
144
135
  thestage/services/container/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- thestage/services/container/mapper/container_mapper.py,sha256=ymIjBLGZnpodh0W2KwNUqRxT0VgM1hsCViNza1nhWHk,1088
136
+ thestage/services/container/mapper/container_mapper.py,sha256=GXSQX3H69M0wlZvXzO2jZs-Pqq70gDBvNmLKNvw6axU,1164
146
137
  thestage/services/core_files/config_entity.py,sha256=_55m8h2_KXIxl8Y71Yyk3wTj-q1mo918YU1yltzVqgQ,1075
147
138
  thestage/services/filesystem_service.py,sha256=Ee62DJ7rlkpBkyz40so7Fwd-39vN03uL6uYapcsiq58,4892
148
139
  thestage/services/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
- thestage/services/instance/instance_service.py,sha256=NqMT9lKXJlcvflJr7GBLD78zehvfHRYCI9onzAO5gVM,12718
140
+ thestage/services/instance/instance_service.py,sha256=JBbhlKq7_KP6yvQ-kQ7tHBG1DL7Fex9SGem4eEWbSBw,12522
150
141
  thestage/services/instance/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
- thestage/services/instance/mapper/instance_mapper.py,sha256=OA0-Z6ODfAK1yBjf7nF-JDKERr8lZUm5vYKk_TFw-v8,1132
152
- thestage/services/instance/mapper/selfhosted_mapper.py,sha256=KpkvsDV0OWzHhN53md4mgo3xc8siM5idDwL_pSRTouE,1286
142
+ thestage/services/instance/mapper/instance_mapper.py,sha256=PcpJw1KVKH36dsjyDQPL8Mciox7UO3fKkSSVjIh1JhY,940
143
+ thestage/services/instance/mapper/selfhosted_mapper.py,sha256=zUt_RgdwgvjyHA4mLIDpIxmlPjt3Dx8Wf1MSb00zdQ0,1201
153
144
  thestage/services/logging/byte_print_style.py,sha256=vUimuC3ZgGujtweQxiRcUXEGlb2yKwv9LRYMy7Gtzhg,139
154
145
  thestage/services/logging/dto/log_message.py,sha256=k2clfz2fQnQ-ycFI8g8WYJ_XOjK0hhlA5VhwxVYByaQ,453
155
146
  thestage/services/logging/dto/log_type.py,sha256=a6JWnq0ZjJ-2BQrG-fKYYy3UeJS2U2ZzE5P_EXglBfE,95
156
147
  thestage/services/logging/exception/log_polling_exception.py,sha256=rKQ7AtNCGKkk5OINIyyjvLT92PU5i_yJUH-Msr9hXQw,226
157
148
  thestage/services/logging/logging_constants.py,sha256=4Gk2tglHW_-jnjB8uVIh-ds4fAVBqNW8igfQt8k7Quc,137
158
- thestage/services/logging/logging_service.py,sha256=7xhzxlSHwaepJtBsPN63-oMF1Ii335REHnMd4J_UFQw,17153
149
+ thestage/services/logging/logging_service.py,sha256=L4_vhPBz1ZG3X17U_9pnq9WV3EYKR4fiztC0s1au1PM,17770
159
150
  thestage/services/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- thestage/services/project/dto/inference_simulator_dto.py,sha256=pOWCXwtwxY7ABLdLxs9rNOS8INNkBwk_pXWFyqiu09g,1345
161
- thestage/services/project/dto/inference_simulator_model_dto.py,sha256=fNqhCYMjzHLsoLtQc66bMH5J7IoUuTx05fP94zCo3ic,1194
162
- thestage/services/project/dto/project_config.py,sha256=xLy1P5fwToRNZ7ktEBzfEmmvSqXlEGeLANqWlC8VV_4,557
151
+ thestage/services/project/dto/inference_simulator_dto.py,sha256=skyxLgzwbR_EyVSCnojAwI3kZyJ5LJefP_0RpawlKa8,719
152
+ thestage/services/project/dto/inference_simulator_model_dto.py,sha256=jNIPwqX_A7jgkcdugdEUpjpjo0SZwlHPK2D4K7i0Nj0,642
153
+ thestage/services/project/dto/project_config.py,sha256=E7ZuvYxWVJuPiK9SbiRbRSNv_FE_kCXvkXE9AkcnSRE,694
163
154
  thestage/services/project/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- thestage/services/project/mapper/project_inference_simulator_mapper.py,sha256=UdOu9IIF5rlNPoWSaaeSKU3ODe8E5uSMgm2V5ywMWKE,812
165
- thestage/services/project/mapper/project_inference_simulator_model_mapper.py,sha256=PWY0iWbXhvD-G0X0_aQZAFY2bqc0lvRJcQAyC8Y-88Q,869
166
- thestage/services/project/mapper/project_task_mapper.py,sha256=SHIEXjYwt4vm2B1X2QiI4sCPbBarum0bTOnmTWPOlto,813
167
- thestage/services/project/project_service.py,sha256=jVJr6ePzjOpai8OZzedDUCR3UwTMQ0bc6JC2xvQ3yRE,58984
168
- thestage/services/remote_server_service.py,sha256=dYLuwQQeuFC8Z9ozmZgapPZ0xChjBrTYS5frCAJmG3w,23264
155
+ thestage/services/project/mapper/project_inference_simulator_mapper.py,sha256=rXb0fhZVjkx8E3tSnB7B6CMC275_reDG8mlZscXz0zk,856
156
+ thestage/services/project/mapper/project_inference_simulator_model_mapper.py,sha256=JvCUVp7d4o2-CCxkA6aesSEz1iUJcIfBIkXdN_hHpT0,924
157
+ thestage/services/project/mapper/project_task_mapper.py,sha256=8y4IqZOVXJUrI-946sZn295hyZGVtws61aETrhA9b1s,727
158
+ thestage/services/project/project_service.py,sha256=3Mbs1ghnUsd7p565bf5s7vmRFStmYUfXYEoVIvmuv9s,61541
159
+ thestage/services/remote_server_service.py,sha256=p_M0eL2Mtdz8_BCtNEhHXndaNDCFh_RgksQpWl0HDtE,23325
169
160
  thestage/services/service_factory.py,sha256=WosSbicSvY9dHOkS2OqGCtHkmKdJE1f_K7uEnB3Auaw,4291
170
- thestage/services/task/dto/task_dto.py,sha256=PJwrUsLLAoO2uA9xvzb27b9iYAoNiBcsHSxKERh2VFo,2335
161
+ thestage/services/task/dto/task_dto.py,sha256=S1CzhCLW3B_ovSJA1pRBPerRvbnTk1c6yAHf_7RGZbc,1029
171
162
  thestage/services/validation_service.py,sha256=iopaDKuC_V_4Z_Zly5BFaLL74wG66z9URE86_I-9Hi4,2243
172
- thestage-0.6.4.dist-info/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
173
- thestage-0.6.4.dist-info/METADATA,sha256=AejiIshuI4csWcnaYTSvD6Zjxx5KFHufi_hPz3orGNc,5557
174
- thestage-0.6.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
175
- thestage-0.6.4.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
176
- thestage-0.6.4.dist-info/RECORD,,
163
+ thestage-0.6.6.dist-info/METADATA,sha256=KuzMtxjv2_kqNOkgwBkYyN-ybm3hHMzgLfBPbFd0BT8,5583
164
+ thestage-0.6.6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
165
+ thestage-0.6.6.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
166
+ thestage-0.6.6.dist-info/licenses/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
167
+ thestage-0.6.6.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 2.2.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,19 +0,0 @@
1
- from typing import Optional
2
-
3
- from pydantic import BaseModel, Field, ConfigDict
4
-
5
- from thestage.services.clients.thestage_api.dtos.enums.location_region import LocationRegionEnumDto
6
- from thestage.services.clients.thestage_api.dtos.enums.provider_name import ProviderNameEnumDto
7
-
8
-
9
- class CloudProviderRegionDto(BaseModel):
10
- model_config = ConfigDict(use_enum_values=True)
11
-
12
- id: Optional[int] = Field(None, alias='id')
13
- region_key: Optional[str] = Field(None, alias='regionKey')
14
- provider_name: ProviderNameEnumDto = Field(ProviderNameEnumDto.UNKNOWN, alias='providerName')
15
- location_region: LocationRegionEnumDto = Field(LocationRegionEnumDto.UNKNOWN, alias='locationRegion')
16
- location_country: Optional[str] = Field(None, alias='locationCountry')
17
- location_detail: Optional[str] = Field(None, alias='locationDetail')
18
- is_active_for_storages: Optional[bool] = Field(False, alias='isActiveForStorages')
19
- is_active_for_instances: Optional[bool] = Field(False, alias='isActiveForInstances')
@@ -1,10 +0,0 @@
1
- from typing import Optional, List
2
-
3
- from pydantic import Field, BaseModel, ConfigDict
4
-
5
-
6
- class DockerContainerAssignedDeviceDto(BaseModel):
7
- model_config = ConfigDict(use_enum_values=True)
8
-
9
- assigned_cpus: List[int] = Field(default_factory=list, alias='assignedCpusIds')
10
- assigned_gpu_ids: List[int] = Field(default_factory=list, alias='assignedGpuIds')
@@ -1,10 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class CurrencyTypeEnumDto(str, Enum):
5
- ETH: str = 'ETH'
6
- STAGI: str = 'STAGI'
7
- USD: str = 'USD'
8
- EUR: str = 'EUR'
9
- USDT: str = 'USDT'
10
- UNKNOWN: str = 'UNKNOWN'
@@ -1,9 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class DaemonStatus(str, Enum):
5
- NEW: str = 'NEW'
6
- ONLINE: str = 'ONLINE'
7
- OFFLINE: str = 'OFFLINE'
8
- UNKNOWN: str = 'UNKNOWN'
9
- ALL: str = 'ALL'
@@ -1,7 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class DiskTypeEnumDto(str, Enum):
5
- SSD: str = 'SSD'
6
- HDD: str = 'HDD'
7
- UNKNOWN: str = 'UNKNOWN'
@@ -1,7 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class DriveTypeEnumDto(str, Enum):
5
- SSD: str = 'SSD'
6
- HDD: str = 'HDD'
7
- UNKNOWN: str = 'UNKNOWN'
@@ -1,7 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class InstanceTypeEnumDto(str, Enum):
5
- RENTABLE: str = 'RENTABLE'
6
- SELF_HOSTED: str = 'SELF_HOSTED'
7
- UNKNOWN: str = 'UNKNOWN'
@@ -1,11 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class LocationRegionEnumDto(str, Enum):
5
- NORTH_AMERICA: str = 'NORTH_AMERICA'
6
- EUROPE: str = 'EUROPE'
7
- ASIA: str = 'ASIA'
8
- AFRICA: str = 'AFRICA'
9
- OCEANIA: str = 'OCEANIA'
10
- SOUTH_AMERICA: str = 'SOUTH_AMERICA'
11
- UNKNOWN: str = 'UNKNOWN'
@@ -1,10 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class PowerStatusEnumDto(str, Enum):
5
- ON: str = 'ON'
6
- OFF: str = 'OFF'
7
- POWERING_ON: str = 'POWERING_ON'
8
- POWERING_OFF: str = 'POWERING_OFF'
9
- REBOOTING: str = 'REBOOTING'
10
- UNKNOWN: str = 'UNKNOWN'
@@ -1,14 +0,0 @@
1
- from typing import Optional
2
-
3
- from pydantic import BaseModel, Field, ConfigDict
4
-
5
- from thestage.services.clients.thestage_api.dtos.enums.currency_type import CurrencyTypeEnumDto
6
-
7
-
8
- class PriceDefinitionDto(BaseModel):
9
- model_config = ConfigDict(use_enum_values=True)
10
-
11
- currency: CurrencyTypeEnumDto = Field(CurrencyTypeEnumDto.UNKNOWN, alias='currency')
12
- cents_amount_in_unit: Optional[int] = Field(None, alias='centsAmountInUnit')
13
- cents_value: Optional[str] = Field(None, alias='centsValue')
14
- decimal_value: Optional[str] = Field(None, alias='decimalValue')