thestage 0.6.7__py3-none-any.whl → 0.6.8__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.
- thestage/__init__.py +1 -1
- thestage/cli_command_helper.py +2 -2
- thestage/config/__init__.py +1 -1
- thestage/{services → config/business}/app_config_service.py +3 -4
- thestage/{services/config_provider → config/business}/config_provider.py +6 -5
- thestage/config/{config_storage.py → business/config_storage.py} +1 -1
- thestage/{services → config/business}/validation_service.py +9 -10
- thestage/{controllers/config_controller.py → config/communication/config_command.py} +7 -7
- thestage/{services/connect → connect/business}/connect_service.py +22 -19
- thestage/{services → connect/business}/remote_server_service.py +4 -5
- thestage/connect/communication/connect_api_client.py +84 -0
- thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/add_ssh_key_to_user_response.py +0 -1
- thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/add_ssh_public_key_to_instance_response.py +1 -4
- thestage/{services/clients/thestage_api/dtos/base_controller → connect/dto}/connect_resolve_response.py +0 -1
- thestage/controllers/base_controller.py +2 -2
- thestage/debug_main.dist.py +16 -14
- thestage/{services/container → docker_container/business}/container_service.py +27 -22
- thestage/{services/container → docker_container/business}/mapper/container_mapper.py +3 -3
- thestage/docker_container/communication/__init__.py +0 -0
- thestage/{controllers/container_controller.py → docker_container/communication/docker_command.py} +17 -23
- thestage/docker_container/communication/docker_container_api_client.py +99 -0
- thestage/docker_container/dto/__init__.py +0 -0
- thestage/docker_container/dto/container_action_request.py +11 -0
- thestage/{services/clients/thestage_api/dtos → docker_container/dto}/container_response.py +4 -4
- thestage/{services/clients/thestage_api/dtos/docker_container_controller → docker_container/dto}/docker_container_list_response.py +3 -5
- thestage/docker_container/dto/enum/__init__.py +0 -0
- thestage/git/__init__.py +0 -0
- thestage/git/business/__init__.py +0 -0
- thestage/git/communication/__init__.py +0 -0
- thestage/{services/clients/git → git/communication}/git_client.py +4 -4
- thestage/global_dto/__init__.py +0 -0
- thestage/global_dto/enums/__init__.py +0 -0
- thestage/helpers/error_handler.py +3 -3
- thestage/helpers/logger/app_logger.py +1 -3
- thestage/i18n/en_GB/messages.po +14 -14
- thestage/inference_model/__init__.py +0 -0
- thestage/inference_model/business/__init__.py +0 -0
- thestage/inference_model/business/inference_model_service.py +281 -0
- thestage/inference_model/business/mapper/__init__.py +0 -0
- thestage/{services/project/mapper/project_inference_simulator_model_mapper.py → inference_model/business/mapper/inference_model_mapper.py} +5 -5
- thestage/inference_model/communication/__init__.py +0 -0
- thestage/inference_model/communication/inference_model_api_client.py +139 -0
- thestage/inference_model/communication/inference_model_command.py +246 -0
- thestage/inference_model/dto/__init__.py +0 -0
- thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/deploy_inference_model_to_instance_response.py +0 -1
- thestage/inference_model/dto/enum/__init__.py +0 -0
- thestage/{services/project/dto/inference_simulator_model_dto.py → inference_model/dto/inference_model.py} +1 -1
- thestage/{entities/project_inference_simulator_model.py → inference_model/dto/inference_model_entity.py} +1 -1
- thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/inference_simulator_model_list_for_project_response.py +2 -3
- thestage/{services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py → inference_model/dto/push_inference_simulator_model_request.py} +1 -1
- thestage/{services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_response.py → inference_model/dto/push_inference_simulator_model_response.py} +1 -1
- thestage/inference_simulator/__init__.py +0 -0
- thestage/inference_simulator/business/__init__.py +0 -0
- thestage/inference_simulator/business/inference_simulator_service.py +338 -0
- thestage/inference_simulator/business/mapper/__init__.py +0 -0
- thestage/{services/project/mapper/project_inference_simulator_mapper.py → inference_simulator/business/mapper/inference_simulator_mapper.py} +5 -5
- thestage/inference_simulator/communication/__init__.py +0 -0
- thestage/inference_simulator/communication/inference_simulator_api_client.py +114 -0
- thestage/inference_simulator/communication/inference_simulator_command.py +347 -0
- thestage/inference_simulator/dto/__init__.py +0 -0
- thestage/inference_simulator/dto/enum/__init__.py +0 -0
- thestage/inference_simulator/dto/get_inference_simulator_response.py +12 -0
- thestage/{services/project/dto/inference_simulator_dto.py → inference_simulator/dto/inference_simulator.py} +1 -1
- thestage/{entities/project_inference_simulator.py → inference_simulator/dto/inference_simulator_entity.py} +1 -1
- thestage/{services/clients/thestage_api/dtos/inference_controller → inference_simulator/dto}/inference_simulator_list_response.py +2 -2
- thestage/{services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py → inference_simulator/dto/start_inference_simulator_request.py} +1 -1
- thestage/inference_simulator/dto/start_inference_simulator_response.py +10 -0
- thestage/instance/__init__.py +0 -0
- thestage/instance/business/__init__.py +0 -0
- thestage/{services/instance → instance/business}/instance_service.py +26 -27
- thestage/instance/business/mapper/__init__.py +0 -0
- thestage/{services/instance/mapper/instance_mapper.py → instance/business/mapper/rented_instance_mapper.py} +3 -3
- thestage/{services/instance/mapper/selfhosted_mapper.py → instance/business/mapper/selfhosted_instance_mapper.py} +5 -7
- thestage/instance/communication/__init__.py +0 -0
- thestage/instance/communication/instance_api_client.py +150 -0
- thestage/{controllers/instance_controller.py → instance/communication/instance_command.py} +5 -5
- thestage/instance/dto/__init__.py +0 -0
- thestage/instance/dto/enum/__init__.py +0 -0
- thestage/{services/clients/thestage_api/dtos → instance/dto}/instance_detected_gpus.py +1 -2
- thestage/{services/clients/thestage_api/dtos → instance/dto}/instance_rented_response.py +2 -2
- thestage/{services/clients/thestage_api/dtos → instance/dto}/selfhosted_instance_response.py +2 -3
- thestage/logging/__init__.py +0 -0
- thestage/logging/business/__init__.py +0 -0
- thestage/{services/logging → logging/business}/logging_service.py +40 -28
- thestage/logging/communication/__init__.py +0 -0
- thestage/logging/communication/logging_api_client.py +63 -0
- thestage/logging/dto/__init__.py +0 -0
- thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/log_polling_response.py +2 -2
- thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/user_logs_query_response.py +2 -2
- thestage/main.py +47 -8
- thestage/project/__init__.py +0 -0
- thestage/project/business/__init__.py +0 -0
- thestage/project/business/project_service.py +480 -0
- thestage/project/communication/__init__.py +0 -0
- thestage/project/communication/project_api_client.py +46 -0
- thestage/project/communication/project_command.py +284 -0
- thestage/project/dto/__init__.py +0 -0
- thestage/services/clients/thestage_api/core/api_client_core.py +1 -1
- thestage/services/clients/thestage_api/dtos/entity_filter_request.py +1 -1
- thestage/services/clients/thestage_api/dtos/sftp_path_helper.py +1 -1
- thestage/services/filesystem_service.py +2 -2
- thestage/services/service_factory.py +130 -43
- thestage/task/__init__.py +0 -0
- thestage/task/business/__init__.py +0 -0
- thestage/task/business/mapper/__init__.py +0 -0
- thestage/{services/project/mapper/project_task_mapper.py → task/business/mapper/task_mapper.py} +5 -5
- thestage/task/business/task_service.py +304 -0
- thestage/task/communication/__init__.py +0 -0
- thestage/task/communication/task_api_client.py +122 -0
- thestage/task/communication/task_command.py +212 -0
- thestage/task/dto/__init__.py +0 -0
- thestage/task/dto/enum/__init__.py +0 -0
- thestage/{services/clients/thestage_api/dtos/task_controller/task_list_for_project_response.py → task/dto/list_for_project_response.py} +2 -2
- thestage/{services/clients/thestage_api/dtos/project_controller/project_run_task_request.py → task/dto/run_task_request.py} +1 -1
- thestage/task/dto/run_task_response.py +13 -0
- thestage/{services/task/dto/task_dto.py → task/dto/task.py} +1 -4
- thestage/{entities/project_task.py → task/dto/task_entity.py} +1 -1
- thestage/{services/clients/thestage_api/dtos/task_controller/task_view_response.py → task/dto/view_response.py} +2 -2
- {thestage-0.6.7.dist-info → thestage-0.6.8.dist-info}/METADATA +1 -1
- thestage-0.6.8.dist-info/RECORD +219 -0
- {thestage-0.6.7.dist-info → thestage-0.6.8.dist-info}/WHEEL +1 -1
- thestage/controllers/project_controller.py +0 -1056
- thestage/services/clients/thestage_api/api_client.py +0 -751
- thestage/services/clients/thestage_api/dtos/container_param_request.py +0 -11
- thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_response.py +0 -13
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py +0 -13
- thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py +0 -10
- thestage/services/clients/thestage_api/dtos/user_controller/user_profile.py +0 -12
- thestage/services/project/project_service.py +0 -1287
- thestage-0.6.7.dist-info/RECORD +0 -167
- /thestage/{entities → color_scheme}/__init__.py +0 -0
- /thestage/{entities/enums → config/business}/__init__.py +0 -0
- /thestage/{services/clients/git → config/communication}/__init__.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → config/dto}/__init__.py +0 -0
- /thestage/{services/core_files → config/dto}/config_entity.py +0 -0
- /thestage/{services/connect → config}/dto/remote_server_config.py +0 -0
- /thestage/{services/config_provider → connect}/__init__.py +0 -0
- /thestage/{services/container → connect/business}/__init__.py +0 -0
- /thestage/{services/container/mapper → connect/communication}/__init__.py +0 -0
- /thestage/{services/instance → connect/dto}/__init__.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/add_ssh_key_to_user_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/add_ssh_public_key_to_instance_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/is_user_has_public_ssh_key_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/ssh_key_controller → connect/dto}/is_user_has_public_ssh_key_response.py +0 -0
- /thestage/{services/instance/mapper → docker_container}/__init__.py +0 -0
- /thestage/{services/project → docker_container/business}/__init__.py +0 -0
- /thestage/{services/project → docker_container/business}/mapper/__init__.py +0 -0
- /thestage/{entities/container.py → docker_container/dto/container_entity.py} +0 -0
- /thestage/{services/clients/thestage_api/dtos/docker_container_controller → docker_container/dto}/docker_container_list_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos → docker_container/dto}/docker_container_mapping.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → docker_container/dto/enum}/container_pending_action.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → docker_container/dto/enum}/container_status.py +0 -0
- /thestage/{services/logging/exception → exceptions}/log_polling_exception.py +0 -0
- /thestage/git/{ProgressPrinter.py → business/ProgressPrinter.py} +0 -0
- /thestage/{entities → global_dto}/enums/order_direction_type.py +0 -0
- /thestage/{entities → global_dto}/enums/shell_type.py +0 -0
- /thestage/{entities → global_dto}/enums/tail_output_type.py +0 -0
- /thestage/{entities → global_dto}/enums/yes_no_response.py +0 -0
- /thestage/{entities → global_dto}/file_item.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/deploy_inference_model_to_instance_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/deploy_inference_model_to_sagemaker_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/deploy_inference_model_to_sagemaker_response.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → inference_model/dto/enum}/inference_model_status.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_model/dto}/inference_simulator_model_list_for_project_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos → inference_model/dto}/inference_simulator_model_response.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → inference_simulator/dto/enum}/inference_simulator_status.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_simulator/dto}/get_inference_simulator_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/inference_controller → inference_simulator/dto}/inference_simulator_list_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos → inference_simulator/dto}/inference_simulator_response.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/cpu_type.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/gpu_name.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/instance_rented_status.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/provider_name.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/selfhosted_status.py +0 -0
- /thestage/{entities → instance/dto}/rented_instance.py +0 -0
- /thestage/{entities → instance/dto}/self_hosted_instance.py +0 -0
- /thestage/{services/logging → logging}/byte_print_style.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/docker_container_log_stream_request.py +0 -0
- /thestage/{services/logging → logging}/dto/log_message.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/log_polling_request.py +0 -0
- /thestage/{services/logging → logging}/dto/log_type.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/task_log_stream_request.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/logging_controller → logging/dto}/user_logs_query_request.py +0 -0
- /thestage/{services/logging → logging}/logging_constants.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py → project/dto/get_deploy_ssh_key_request.py} +0 -0
- /thestage/{services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_response.py → project/dto/get_deploy_ssh_key_response.py} +0 -0
- /thestage/{services/project → project}/dto/project_config.py +0 -0
- /thestage/{services/clients/thestage_api/dtos → project/dto}/project_response.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → task/dto/enum}/task_execution_status.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/enums → task/dto/enum}/task_status.py +0 -0
- /thestage/{services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py → task/dto/list_for_project_request.py} +0 -0
- /thestage/{services/clients/thestage_api/dtos/task_controller/task_status_localized_map_response.py → task/dto/status_localized_map_response.py} +0 -0
- {thestage-0.6.7.dist-info → thestage-0.6.8.dist-info}/entry_points.txt +0 -0
- {thestage-0.6.7.dist-info → thestage-0.6.8.dist-info}/licenses/LICENSE.txt +0 -0
thestage-0.6.7.dist-info/RECORD
DELETED
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
thestage/.env,sha256=lHeR-H4TiBp4z06bWt7oND9LMMVXP3WCKY7lQltDM3M,129
|
|
2
|
-
thestage/__init__.py,sha256=h6612fk--j1jt0iLyVGKNfXLdDLrKmuH0Vay8qaYWMY,64
|
|
3
|
-
thestage/__main__.py,sha256=4ObdWrDRaIASaR06IxtFSsoMu58eyL0MnD64habvPj8,101
|
|
4
|
-
thestage/cli_command.py,sha256=P93LXDruJWecmF5xn-D2uhMOSD9iSJl-gP4oG9aD56k,2173
|
|
5
|
-
thestage/cli_command_helper.py,sha256=f5NZQ4MZJ7yyxPvkQW7ilIAxN_19Mx_zzSqedhZtd6g,1939
|
|
6
|
-
thestage/color_scheme/color_scheme.py,sha256=Wex4gj3bS1vh-IO4fGT0NPaHC-PNpbHSiFfL2VTmT-U,232
|
|
7
|
-
thestage/config/__init__.py,sha256=RNobilYVK1WAM1utcQ8ZuATKc9Zh9M9BAjCLZTnR_TA,428
|
|
8
|
-
thestage/config/config_storage.py,sha256=QxUCPJCCNs_PHuz_5TbAOXaeTCIT34IiQXJQzPAXlss,140
|
|
9
|
-
thestage/config/env_base.py,sha256=RNBQ17yk1ieu1kdUlM7Qe7mDCoxstgGUwwhe265o4dQ,367
|
|
10
|
-
thestage/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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=nQCLBR4wqvNfXuxU-mdJYCvFSbAL4LweEzPTp0FKwbs,16337
|
|
14
|
-
thestage/controllers/instance_controller.py,sha256=EmXs5BLgvocSN7PuNPe3Yo4ZgZoARSh0aKmFMTbvsEc,7470
|
|
15
|
-
thestage/controllers/project_controller.py,sha256=00thKf4p_SDHYF9eRmipqzE7MHogp3DvgdxNAaMt_zg,40526
|
|
16
|
-
thestage/controllers/utils_controller.py,sha256=ac-TLWC2wrmxJYNFOltoQKCTpFaKB6p937odona64OI,912
|
|
17
|
-
thestage/debug_main.dist.py,sha256=UPIJ58yf-6FtXZj-FLAwxi7HononseuCYm9xb5KlxTs,783
|
|
18
|
-
thestage/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
thestage/entities/container.py,sha256=k9A04P9WSrZJPU-SqJ7Ld0sxFaFJvWmFMlBImyHkHbk,660
|
|
20
|
-
thestage/entities/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
thestage/entities/enums/order_direction_type.py,sha256=zC9-FLhn8-6NVmSlgeKXKBnVJKH8RLtuUYApQIb1zcU,95
|
|
22
|
-
thestage/entities/enums/shell_type.py,sha256=-XcPiI3psjeIzd0VXWHdca5Ttgbu9M5oQPeZUZLJRMc,118
|
|
23
|
-
thestage/entities/enums/tail_output_type.py,sha256=6S55VRRosrI3yZW8XeAGm4u12H4haeiBRvoaExUCWcU,84
|
|
24
|
-
thestage/entities/enums/yes_no_response.py,sha256=PXXkB7KMB-XCHvKOBRuX6NRKyq8UW0G228OICRr2ZTk,86
|
|
25
|
-
thestage/entities/file_item.py,sha256=hxUbdne6AYFHJfuQ8l0XQO86IuC8Pyx_OrPw_0lhN_o,828
|
|
26
|
-
thestage/entities/project_inference_simulator.py,sha256=Rgj5byZDq-uFI2ugOIMfW7CgJNYHfUyidhUbZ_kMoDk,647
|
|
27
|
-
thestage/entities/project_inference_simulator_model.py,sha256=8xzC6pZZQzMAh6DASS2ecYzv9EQZCc-fTpl5nOtJXzY,570
|
|
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
|
-
thestage/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
thestage/exceptions/auth_exception.py,sha256=HZeiF3aocqukmClUfIDCk5izb4tpG4KEbhyXtVl2z34,214
|
|
33
|
-
thestage/exceptions/base_exception.py,sha256=ekov63Q0OZLeLOu6bhHN9KLo8pPn0XLCMZwZrVULhDw,282
|
|
34
|
-
thestage/exceptions/business_logic_exception.py,sha256=vNiSq9hUjrB0gx1umFcq4Eft99Cg59wCayOYSazT_oc,232
|
|
35
|
-
thestage/exceptions/config_exception.py,sha256=c2V8ccEoPWOV5fd_rSgaj9HB4rQfj6DOdnALEq_U8-Q,218
|
|
36
|
-
thestage/exceptions/file_system_exception.py,sha256=OiBCtjzV1ToXfn5HtmXv9Ihp6uDcKNSyKzQxut-xhQQ,226
|
|
37
|
-
thestage/exceptions/git_access_exception.py,sha256=ZyB5qrz6fok1jOEKtt3PXP9vq3vOmKOK2OZcFztH9gM,465
|
|
38
|
-
thestage/exceptions/remote_server_exception.py,sha256=Z1R5Wjw3w7VdqURhjidGkNhJL9lsA76txkAZPA5Uv70,595
|
|
39
|
-
thestage/git/ProgressPrinter.py,sha256=z99BPq3KYycClL-7fmsERIIuZ03papdIYOhR8A7b9AA,573
|
|
40
|
-
thestage/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
thestage/helpers/error_handler.py,sha256=dVwdFvqYnlg-tOtNKVisyZipn0N2u7ZyHt5qVV2a6Rg,5370
|
|
42
|
-
thestage/helpers/exception_hook.py,sha256=jekDs7smzI1UjXkuMut_uM725GL3c6Gr_zmyEYdDjV8,334
|
|
43
|
-
thestage/helpers/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
thestage/helpers/logger/app_logger.py,sha256=4dgZ_8k28R887rmIHmCTn2QVg0stqTk8hcXa5CF4VJc,1607
|
|
45
|
-
thestage/helpers/ssh_util.py,sha256=JuDwddHxEGcA24Y8a-jLv339cG-jq4hEaBAl5TSVVFw,1262
|
|
46
|
-
thestage/i18n/en_GB/messages.po,sha256=BuVIhd5TRQkgFkAbTGvbSRuO88lSJGpnk9TT2J9BC8E,32375
|
|
47
|
-
thestage/i18n/translation.py,sha256=c62OicQ4phSMuqDe7hqGebIsk0W2-8ZJUfgfdtjjqEc,284
|
|
48
|
-
thestage/main.py,sha256=O3NpGl4UE8GfsrdgDP9KZ5Oxe3-EDtBH5IlL-eFdgJs,1800
|
|
49
|
-
thestage/services/.env,sha256=K2VpzFAVjD75XawAHZdR0HWmypryA_mXNY4WHNgR-wQ,184
|
|
50
|
-
thestage/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
thestage/services/abstract_mapper.py,sha256=_q7YLkPNRsNW5wOCqvZIu1KfpLkc7uVaAQKrMZtsGuY,218
|
|
52
|
-
thestage/services/abstract_service.py,sha256=fsGXb0plZ9SvGBWAY4y599BH196YoFP3BJ7LS_pgTcc,2707
|
|
53
|
-
thestage/services/app_config_service.py,sha256=bbiXxcLoh_XC3mgsAo9ciksblPvUEcnG2oCIm1jMyo4,1679
|
|
54
|
-
thestage/services/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
thestage/services/clients/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
thestage/services/clients/git/git_client.py,sha256=nUCszU5ymWUcf7YqeEhZqBhR17hwyDgMg00DTXOWIOY,16449
|
|
57
|
-
thestage/services/clients/thestage_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
thestage/services/clients/thestage_api/api_client.py,sha256=pLxsHGqu3fEcPvmi9IRFeLCi7LalRUvM-gvo6GGLFF4,32141
|
|
59
|
-
thestage/services/clients/thestage_api/core/api_client_core.py,sha256=lEffuh30f6oV2lp90UuET90OUxnrMh2PHjquF6_sT6E,3453
|
|
60
|
-
thestage/services/clients/thestage_api/core/http_client_exception.py,sha256=JH-874Gu9T1b1_FpPBLqdyt9U0PyhpwRCe_oDc6c_jI,385
|
|
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=mDSAq2gcmERAejnd8rXkAam39bH0WrTw5V4mQ_79hB8,1106
|
|
63
|
-
thestage/services/clients/thestage_api/dtos/base_response.py,sha256=R6jjhvv0U0XD8j5N5T36q-6liiEAUy7xINFA1H7CMB8,410
|
|
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
|
|
67
|
-
thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_response.py,sha256=DfbXk6ikZK78NxlaC5nGujVeSrafTRu7H8QslarmfqE,663
|
|
68
|
-
thestage/services/clients/thestage_api/dtos/docker_container_mapping.py,sha256=pH0lCKTDheDI16NasqQiF288szUgpw758W27JrJo0QI,372
|
|
69
|
-
thestage/services/clients/thestage_api/dtos/entity_filter_request.py,sha256=akovBYk0vK6a9M90eDFnCqx70Mde4Wtb6e0ulhtGMLo,514
|
|
70
|
-
thestage/services/clients/thestage_api/dtos/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
thestage/services/clients/thestage_api/dtos/enums/container_pending_action.py,sha256=7DMt4KdpO91-NnU-Rb2s8ikDpt3IxsyBYEH1lWhR9MI,222
|
|
72
|
-
thestage/services/clients/thestage_api/dtos/enums/container_status.py,sha256=CpXOUJgpqKMRW7QKyJSeegtj_aQBOfDcNsvztMAJvzw,457
|
|
73
|
-
thestage/services/clients/thestage_api/dtos/enums/cpu_type.py,sha256=lNgTW92gc-MolKThbJmY6xXcrgEFdVxXcH07T2KQ2_o,154
|
|
74
|
-
thestage/services/clients/thestage_api/dtos/enums/gpu_name.py,sha256=YO3iYlo7wTT6wEpkJDRcOO8NAc3WMxEQXMQ8jTFKH6k,162
|
|
75
|
-
thestage/services/clients/thestage_api/dtos/enums/inference_model_status.py,sha256=OgoJBh8u5kveForMoxKCCXesE23C8MTGWiMKTUmmKls,256
|
|
76
|
-
thestage/services/clients/thestage_api/dtos/enums/inference_simulator_status.py,sha256=mC8_xCjP0p_tmzx41rgLRwYgbijWcR9xs4m9goZY1Ck,436
|
|
77
|
-
thestage/services/clients/thestage_api/dtos/enums/instance_rented_status.py,sha256=_uk5memh9fOPybFugvNANdhnj2-1Gpx1SE9ZpG6d88k,490
|
|
78
|
-
thestage/services/clients/thestage_api/dtos/enums/provider_name.py,sha256=StLglFLewOa7pQYOb3aGzIPuhc937Qr2c4UlQFJXUto,287
|
|
79
|
-
thestage/services/clients/thestage_api/dtos/enums/selfhosted_status.py,sha256=_OsxObVpczLJ9CJKh4nRh0X6lXw9PfQMTYOGEvze9R8,285
|
|
80
|
-
thestage/services/clients/thestage_api/dtos/enums/task_execution_status.py,sha256=MU14K1PvkLEFnUizeVt8x_u1IP2OVkyf5pLFdrUUtYg,303
|
|
81
|
-
thestage/services/clients/thestage_api/dtos/enums/task_status.py,sha256=Zg4QkuHilWTC6D_lKsby7u4y1rSRs69_kzfeFWCWoFg,282
|
|
82
|
-
thestage/services/clients/thestage_api/dtos/frontend_status.py,sha256=MKrqCmFWVe-8InJqavkqz1w1N35OcT3ndBrXOu7mKdA,312
|
|
83
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py,sha256=wNDn4QhNrLONBZsyDC1p5o6jsgd-CQb5JQrxNBh9QK8,781
|
|
84
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py,sha256=62iS_Jq6D0FScLwjwj64CxJ6JlKWwcN4LM2R-AmaUqs,480
|
|
85
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py,sha256=CAEzVOlud8dR3ifZLu09LIKAxt2iwZnjq4HmD0a6HXg,478
|
|
86
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_response.py,sha256=lis4effVtF39eW8gCkWzJKxMVhIMAg3_8JHub83JR6s,422
|
|
87
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py,sha256=FctVvLAvUfBm-kTwozowyblHPAHZbBO0PAMz4_BA_O4,398
|
|
88
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_response.py,sha256=zTt5ewR3oh4qyL0pzt0QP2jANrUpA-5V8As1YqNy3hA,474
|
|
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
|
|
92
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_response.py,sha256=d6Aikhrbu0CDrtqUi5XWhYzFK4PrcD3YdJpt9wOUuMI,673
|
|
93
|
-
thestage/services/clients/thestage_api/dtos/inference_simulator_model_response.py,sha256=zC0wMnp_73oNse-ZMF5dICrqwXtJ5KdpKVkb7ejx61s,421
|
|
94
|
-
thestage/services/clients/thestage_api/dtos/inference_simulator_response.py,sha256=KUs4cZF7I7rC_UceCG4MfBaNffxkf-_HNDuKfvHyKQI,405
|
|
95
|
-
thestage/services/clients/thestage_api/dtos/installed_service.py,sha256=YHpFFozYe_fz_MP9Tdr-Nn6oR9FWfnXA9NTaxeGlyPI,662
|
|
96
|
-
thestage/services/clients/thestage_api/dtos/instance_detected_gpus.py,sha256=G32A2kz78sJeLcWkIHcbkC75YxUezXjhp98_2RLCo1g,636
|
|
97
|
-
thestage/services/clients/thestage_api/dtos/instance_rented_response.py,sha256=KqpoVOBXfOFDh-7tH3ExjDL0k0CKwDDa7WnVmb0UgxI,1851
|
|
98
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/docker_container_log_stream_request.py,sha256=1roOpNE6BX8E9zyPdoMBp0bpL70xRQJepH9Q0EZ8H7c,223
|
|
99
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py,sha256=2lMalL36tIrkVr657yMlvyvS-QgOTDttUNKdpW9-RS8,562
|
|
100
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_response.py,sha256=To3AbryCZ4ihOlukrwucQQNUaRnNIvvH5VZw38AcjrA,548
|
|
101
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/task_log_stream_request.py,sha256=fbqteayY0XR7wNjuSrvJNJ61HSAaMM0LqPXqUVBUQxQ,190
|
|
102
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py,sha256=7bObMnRtSvMtqNJopsOz5VkxMBJ5Be2ksTdi-VWdMuE,542
|
|
103
|
-
thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_response.py,sha256=66zw9eTmKnEeCmuZG7Bcm_nPYFkAEQbh1HMo_JbGt5U,559
|
|
104
|
-
thestage/services/clients/thestage_api/dtos/paginated_entity_list.py,sha256=a2QRAFqwz2KZXzuTB8aIqTNymg8FHr4XTVXDnYJgqnc,419
|
|
105
|
-
thestage/services/clients/thestage_api/dtos/pagination_data.py,sha256=qV7qiTAtCf-RdDmjZwsBspQlifR1OGr7ezuVJ0A42zU,357
|
|
106
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py,sha256=OJtk7d_7lmAPJt9fTDrjDlQ9jwQywheF1poYdwEfHeA,273
|
|
107
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_response.py,sha256=LY7NbmzPaQcnI8IjP5nZ6ONMiKf1cK7lUJN5fJ3RQjo,363
|
|
108
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py,sha256=pt4qI8EKFWOPoKHKMdWBzrW7vB_mb2Gstm1dVsob05U,378
|
|
109
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_response.py,sha256=aNaD4xVkhbwlD_rI3D0-2gp-F4L6CxxUkAOSLJZPl1I,249
|
|
110
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py,sha256=AkW-Gn2M8-NcRU0SWdmQ0vQ-LemPY4lh-UQBtB0Mka8,498
|
|
111
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py,sha256=cvwpZxb32614gFRzlTWWXQpUdDTrqHE5Gi4h3BV9q3g,453
|
|
112
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py,sha256=4PGvswsyz8lx-A0xFrZEBEHbw8pEKv7WrnuDi3nZgfY,819
|
|
113
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_response.py,sha256=Q7XlbZ4vgk9QQL2z11BeUkKDn-5p8j06eNI0GmpZNjk,430
|
|
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
|
|
116
|
-
thestage/services/clients/thestage_api/dtos/sftp_path_helper.py,sha256=UeCEcE_qR_TcOGFyOLef7cz3veh1_o6MnLbAJyZk2yc,362
|
|
117
|
-
thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_request.py,sha256=BmO99BXrbUCb2ZIYS2oc7xkwWb5CV5WCaqt1xO4yIro,234
|
|
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
|
|
120
|
-
thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_response.py,sha256=JrAsRyRU8IhQHJc_Vj0v0ZM2vKPVh30r5wnY_-OX5jc,334
|
|
121
|
-
thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_request.py,sha256=UfiBOkYNm_usW0rRSc5QIWhTh_5br0x43M8qbNX5HfU,198
|
|
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
|
|
124
|
-
thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_response.py,sha256=r2R2efDZmaAyfiNs_kuftpgaP-j6VWpKnA1qkHDQfII,466
|
|
125
|
-
thestage/services/clients/thestage_api/dtos/task_controller/task_status_localized_map_response.py,sha256=yop410FwNvQFXYHKh60ne4DSO3m19zF1nCEuUVSaZ8w,283
|
|
126
|
-
thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py,sha256=iKDkSOUIsd3z00netEVs7TZIq_8jmMSiERkiWG08MYc,308
|
|
127
|
-
thestage/services/clients/thestage_api/dtos/user_controller/user_profile.py,sha256=cDH5azyVBXi3V7kIOEuzsF1aKONQnxcI7YsDwXjRmuE,268
|
|
128
|
-
thestage/services/clients/thestage_api/dtos/validate_token_response.py,sha256=nmKbqRPkwtzhv37QheA_MO4CpEPmGM0VUC2gYckcrl8,418
|
|
129
|
-
thestage/services/config_provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
thestage/services/config_provider/config_provider.py,sha256=CR2xSWRMIqsspek3iIs2qZ60ThHVNmTNTS6R4uheAuE,10238
|
|
131
|
-
thestage/services/connect/connect_service.py,sha256=w5Iq98HRZrfrUE5sfMMRAMPDZUh4jmeGDpXDXgAHBMs,9752
|
|
132
|
-
thestage/services/connect/dto/remote_server_config.py,sha256=yuO0tTAgUxCiQ-h1nVvWUMlCUtR-WB_eOH6KYspV7zQ,272
|
|
133
|
-
thestage/services/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
-
thestage/services/container/container_service.py,sha256=vNBNVGYtDRQCBTSKWq8vN-j8XuFE5NfwzzoqT96J08Y,18189
|
|
135
|
-
thestage/services/container/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
136
|
-
thestage/services/container/mapper/container_mapper.py,sha256=GXSQX3H69M0wlZvXzO2jZs-Pqq70gDBvNmLKNvw6axU,1164
|
|
137
|
-
thestage/services/core_files/config_entity.py,sha256=_55m8h2_KXIxl8Y71Yyk3wTj-q1mo918YU1yltzVqgQ,1075
|
|
138
|
-
thestage/services/filesystem_service.py,sha256=Ee62DJ7rlkpBkyz40so7Fwd-39vN03uL6uYapcsiq58,4892
|
|
139
|
-
thestage/services/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
-
thestage/services/instance/instance_service.py,sha256=JBbhlKq7_KP6yvQ-kQ7tHBG1DL7Fex9SGem4eEWbSBw,12522
|
|
141
|
-
thestage/services/instance/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
-
thestage/services/instance/mapper/instance_mapper.py,sha256=PcpJw1KVKH36dsjyDQPL8Mciox7UO3fKkSSVjIh1JhY,940
|
|
143
|
-
thestage/services/instance/mapper/selfhosted_mapper.py,sha256=zUt_RgdwgvjyHA4mLIDpIxmlPjt3Dx8Wf1MSb00zdQ0,1201
|
|
144
|
-
thestage/services/logging/byte_print_style.py,sha256=vUimuC3ZgGujtweQxiRcUXEGlb2yKwv9LRYMy7Gtzhg,139
|
|
145
|
-
thestage/services/logging/dto/log_message.py,sha256=k2clfz2fQnQ-ycFI8g8WYJ_XOjK0hhlA5VhwxVYByaQ,453
|
|
146
|
-
thestage/services/logging/dto/log_type.py,sha256=a6JWnq0ZjJ-2BQrG-fKYYy3UeJS2U2ZzE5P_EXglBfE,95
|
|
147
|
-
thestage/services/logging/exception/log_polling_exception.py,sha256=rKQ7AtNCGKkk5OINIyyjvLT92PU5i_yJUH-Msr9hXQw,226
|
|
148
|
-
thestage/services/logging/logging_constants.py,sha256=4Gk2tglHW_-jnjB8uVIh-ds4fAVBqNW8igfQt8k7Quc,137
|
|
149
|
-
thestage/services/logging/logging_service.py,sha256=44YjcsYo-C3i8R8wFoz0JdhnqY6Tl90aI3M6nWH2yyQ,17819
|
|
150
|
-
thestage/services/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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=EdaW2qQsw9LVyRh0ktxFNT48d7qqdiaKYCW03uvDqKc,583
|
|
154
|
-
thestage/services/project/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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=RtFN9eH_5_heTRs-P5-c5dpDEF7yWDep__rB9sTLse4,61824
|
|
159
|
-
thestage/services/remote_server_service.py,sha256=p_M0eL2Mtdz8_BCtNEhHXndaNDCFh_RgksQpWl0HDtE,23325
|
|
160
|
-
thestage/services/service_factory.py,sha256=WosSbicSvY9dHOkS2OqGCtHkmKdJE1f_K7uEnB3Auaw,4291
|
|
161
|
-
thestage/services/task/dto/task_dto.py,sha256=S1CzhCLW3B_ovSJA1pRBPerRvbnTk1c6yAHf_7RGZbc,1029
|
|
162
|
-
thestage/services/validation_service.py,sha256=iopaDKuC_V_4Z_Zly5BFaLL74wG66z9URE86_I-9Hi4,2243
|
|
163
|
-
thestage-0.6.7.dist-info/METADATA,sha256=dyt0Kh8J-VQvPTX_ZKILOUkcTsWeowX0RRV5Xl9kJEQ,5622
|
|
164
|
-
thestage-0.6.7.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
165
|
-
thestage-0.6.7.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
|
|
166
|
-
thestage-0.6.7.dist-info/licenses/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
|
|
167
|
-
thestage-0.6.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/thestage/{services/clients/thestage_api/dtos → docker_container/dto}/docker_container_mapping.py
RENAMED
|
File without changes
|
|
File without changes
|
/thestage/{services/clients/thestage_api/dtos/enums → docker_container/dto/enum}/container_status.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/instance_rented_status.py
RENAMED
|
File without changes
|
|
File without changes
|
/thestage/{services/clients/thestage_api/dtos/enums → instance/dto/enum}/selfhosted_status.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/thestage/{services/clients/thestage_api/dtos/enums → task/dto/enum}/task_execution_status.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|