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
|
@@ -2,13 +2,10 @@ from typing import Optional
|
|
|
2
2
|
|
|
3
3
|
from pydantic import BaseModel, ConfigDict, Field
|
|
4
4
|
|
|
5
|
-
from thestage.services.clients.thestage_api.dtos.container_response import DockerContainerDto
|
|
6
5
|
from thestage.services.clients.thestage_api.dtos.frontend_status import FrontendStatusDto
|
|
7
|
-
from thestage.services.clients.thestage_api.dtos.instance_rented_response import InstanceRentedDto
|
|
8
|
-
from thestage.services.clients.thestage_api.dtos.selfhosted_instance_response import SelfHostedInstanceDto
|
|
9
6
|
|
|
10
7
|
|
|
11
|
-
class
|
|
8
|
+
class Task(BaseModel):
|
|
12
9
|
model_config = ConfigDict(use_enum_values=True)
|
|
13
10
|
|
|
14
11
|
public_id: Optional[str] = Field(None, alias='publicId')
|
|
@@ -3,8 +3,8 @@ from typing import Optional
|
|
|
3
3
|
from pydantic import Field
|
|
4
4
|
|
|
5
5
|
from thestage.services.clients.thestage_api.dtos.base_response import TheStageBaseResponse
|
|
6
|
-
from thestage.
|
|
6
|
+
from thestage.task.dto.task import Task
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class TaskViewResponse(TheStageBaseResponse):
|
|
10
|
-
task: Optional[
|
|
10
|
+
task: Optional[Task] = Field(None, alias='task')
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
thestage/.env,sha256=lHeR-H4TiBp4z06bWt7oND9LMMVXP3WCKY7lQltDM3M,129
|
|
2
|
+
thestage/__init__.py,sha256=RtJQViaAdxMvBYnV43lQnl8Hz4nwS5r6TRtt-oVNv3U,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=htwALwdgI1CQvq-tsyTk6lA4_sc5hsOUpECrMNSdDm0,1954
|
|
6
|
+
thestage/color_scheme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
thestage/color_scheme/color_scheme.py,sha256=Wex4gj3bS1vh-IO4fGT0NPaHC-PNpbHSiFfL2VTmT-U,232
|
|
8
|
+
thestage/config/__init__.py,sha256=krJr1AzCpUfbTP5mryrBJRzRS49cY8xhXtTsWLCEtJc,427
|
|
9
|
+
thestage/config/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
thestage/config/business/app_config_service.py,sha256=SVV-WjXca21ZTVyS4wNSrg3xghYI8EQomLi7LRa7Ajs,1611
|
|
11
|
+
thestage/config/business/config_provider.py,sha256=MBEwGPLXcVEQO4iNFyOJEQExenIDpNgasTZIGr9eA2o,10255
|
|
12
|
+
thestage/config/business/config_storage.py,sha256=vk_PLRUwP83Cyiuw2ksn9ycT7JK3pB9wGrz3jPL83co,131
|
|
13
|
+
thestage/config/business/validation_service.py,sha256=wSkoweJujPKj39Q0mTda8y1KD97SpwvKnO7Hiwh0nhY,2164
|
|
14
|
+
thestage/config/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
thestage/config/communication/config_command.py,sha256=5Yk_8YdmcNjIT_ZdZIqOBfqf5RAlUPEpXtD2Kv3VBT4,5949
|
|
16
|
+
thestage/config/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
thestage/config/dto/config_entity.py,sha256=_55m8h2_KXIxl8Y71Yyk3wTj-q1mo918YU1yltzVqgQ,1075
|
|
18
|
+
thestage/config/dto/remote_server_config.py,sha256=yuO0tTAgUxCiQ-h1nVvWUMlCUtR-WB_eOH6KYspV7zQ,272
|
|
19
|
+
thestage/config/env_base.py,sha256=RNBQ17yk1ieu1kdUlM7Qe7mDCoxstgGUwwhe265o4dQ,367
|
|
20
|
+
thestage/connect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
thestage/connect/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
thestage/connect/business/connect_service.py,sha256=VIxjz4r8cTnK1wqUAM_hrXKgA0Q51fOoMBZvJY0JmaE,9882
|
|
23
|
+
thestage/connect/business/remote_server_service.py,sha256=wYqBcFbgjNtamvXhHgwu46JFlsQ8LHNFnM5HHMXHr2I,23243
|
|
24
|
+
thestage/connect/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
thestage/connect/communication/connect_api_client.py,sha256=YtF6uNjz1LIW0qc8czYKf8HJ4OUVJKTu5S-DqiN8qgo,3517
|
|
26
|
+
thestage/connect/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
thestage/connect/dto/add_ssh_key_to_user_request.py,sha256=BmO99BXrbUCb2ZIYS2oc7xkwWb5CV5WCaqt1xO4yIro,234
|
|
28
|
+
thestage/connect/dto/add_ssh_key_to_user_response.py,sha256=aUJtt0lAEdcgUawnkL7gOqRYeYtlfQEusvTyoUwSyaU,347
|
|
29
|
+
thestage/connect/dto/add_ssh_public_key_to_instance_request.py,sha256=7F6BmYzW0GtbfogGwbfuSbrYJ9xR7RgnGTWSKoZ-Ljo,337
|
|
30
|
+
thestage/connect/dto/add_ssh_public_key_to_instance_response.py,sha256=Mjow3Uw89LgKHQWQFMJjv-yke4SgJqJgRWQPsR_tmTU,242
|
|
31
|
+
thestage/connect/dto/connect_resolve_response.py,sha256=LoQwV2ovwu8mcqsu1EVDqcdoY-1sMz0BU5y29PlSj40,1050
|
|
32
|
+
thestage/connect/dto/is_user_has_public_ssh_key_request.py,sha256=UfiBOkYNm_usW0rRSc5QIWhTh_5br0x43M8qbNX5HfU,198
|
|
33
|
+
thestage/connect/dto/is_user_has_public_ssh_key_response.py,sha256=mlu70LwV9MZyzObXMhfNLU7Q_005ztfmxrRSSQmrtlI,436
|
|
34
|
+
thestage/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
thestage/controllers/base_controller.py,sha256=g7hC2UmldnQmUU-kxrTmWS8fBjB1dVHUp78sQldSUx0,2507
|
|
36
|
+
thestage/controllers/utils_controller.py,sha256=ac-TLWC2wrmxJYNFOltoQKCTpFaKB6p937odona64OI,912
|
|
37
|
+
thestage/debug_main.dist.py,sha256=FPN2UCtWmAlvszFW217iwD8hEgxCOhmCcp1zRiGmS6A,1001
|
|
38
|
+
thestage/docker_container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
thestage/docker_container/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
thestage/docker_container/business/container_service.py,sha256=vzJtPe-GZvRIHcYTn6U41CK3KIIYmhg_NuYae-BjFJ8,18505
|
|
41
|
+
thestage/docker_container/business/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
thestage/docker_container/business/mapper/container_mapper.py,sha256=WJCmPLsDlWGYKejZkS2BBnh_i4vBd_WkeIc0CSpCjV0,1162
|
|
43
|
+
thestage/docker_container/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
thestage/docker_container/communication/docker_command.py,sha256=Z3N99MtDgwlEvyYyclsvgrm663zi8rDD8IgY48pIZQU,16138
|
|
45
|
+
thestage/docker_container/communication/docker_container_api_client.py,sha256=eYlGO9TvnBRPwqn3tcKR4wXlYqNUo8wcYWYbioFIonM,4175
|
|
46
|
+
thestage/docker_container/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
thestage/docker_container/dto/container_action_request.py,sha256=nm9Spe0zDmSjmHwls9rajtTT2oNLkUqwYjZHGC5HpMw,429
|
|
48
|
+
thestage/docker_container/dto/container_entity.py,sha256=k9A04P9WSrZJPU-SqJ7Ld0sxFaFJvWmFMlBImyHkHbk,660
|
|
49
|
+
thestage/docker_container/dto/container_response.py,sha256=CXVLiQCmqbgQ34E0el843w28qzqW5ZrrvuwWNxayj50,2364
|
|
50
|
+
thestage/docker_container/dto/docker_container_list_request.py,sha256=iJndw9cmH8cXMP-pzwmrU76xBMiMI8auAg3--TWBNcM,578
|
|
51
|
+
thestage/docker_container/dto/docker_container_list_response.py,sha256=En3psvip3eBJO_0-AEUDwXO6J3cmTqPb7cvlDyZWpww,517
|
|
52
|
+
thestage/docker_container/dto/docker_container_mapping.py,sha256=pH0lCKTDheDI16NasqQiF288szUgpw758W27JrJo0QI,372
|
|
53
|
+
thestage/docker_container/dto/enum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
thestage/docker_container/dto/enum/container_pending_action.py,sha256=7DMt4KdpO91-NnU-Rb2s8ikDpt3IxsyBYEH1lWhR9MI,222
|
|
55
|
+
thestage/docker_container/dto/enum/container_status.py,sha256=CpXOUJgpqKMRW7QKyJSeegtj_aQBOfDcNsvztMAJvzw,457
|
|
56
|
+
thestage/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
thestage/exceptions/auth_exception.py,sha256=HZeiF3aocqukmClUfIDCk5izb4tpG4KEbhyXtVl2z34,214
|
|
58
|
+
thestage/exceptions/base_exception.py,sha256=ekov63Q0OZLeLOu6bhHN9KLo8pPn0XLCMZwZrVULhDw,282
|
|
59
|
+
thestage/exceptions/business_logic_exception.py,sha256=vNiSq9hUjrB0gx1umFcq4Eft99Cg59wCayOYSazT_oc,232
|
|
60
|
+
thestage/exceptions/config_exception.py,sha256=c2V8ccEoPWOV5fd_rSgaj9HB4rQfj6DOdnALEq_U8-Q,218
|
|
61
|
+
thestage/exceptions/file_system_exception.py,sha256=OiBCtjzV1ToXfn5HtmXv9Ihp6uDcKNSyKzQxut-xhQQ,226
|
|
62
|
+
thestage/exceptions/git_access_exception.py,sha256=ZyB5qrz6fok1jOEKtt3PXP9vq3vOmKOK2OZcFztH9gM,465
|
|
63
|
+
thestage/exceptions/log_polling_exception.py,sha256=rKQ7AtNCGKkk5OINIyyjvLT92PU5i_yJUH-Msr9hXQw,226
|
|
64
|
+
thestage/exceptions/remote_server_exception.py,sha256=Z1R5Wjw3w7VdqURhjidGkNhJL9lsA76txkAZPA5Uv70,595
|
|
65
|
+
thestage/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
thestage/git/business/ProgressPrinter.py,sha256=z99BPq3KYycClL-7fmsERIIuZ03papdIYOhR8A7b9AA,573
|
|
67
|
+
thestage/git/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
thestage/git/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
thestage/git/communication/git_client.py,sha256=XzWnJzstg3eXmz2RLkxONk-fx4JIUom67U33-Pt981o,16459
|
|
70
|
+
thestage/global_dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
thestage/global_dto/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
+
thestage/global_dto/enums/order_direction_type.py,sha256=zC9-FLhn8-6NVmSlgeKXKBnVJKH8RLtuUYApQIb1zcU,95
|
|
73
|
+
thestage/global_dto/enums/shell_type.py,sha256=-XcPiI3psjeIzd0VXWHdca5Ttgbu9M5oQPeZUZLJRMc,118
|
|
74
|
+
thestage/global_dto/enums/tail_output_type.py,sha256=6S55VRRosrI3yZW8XeAGm4u12H4haeiBRvoaExUCWcU,84
|
|
75
|
+
thestage/global_dto/enums/yes_no_response.py,sha256=PXXkB7KMB-XCHvKOBRuX6NRKyq8UW0G228OICRr2ZTk,86
|
|
76
|
+
thestage/global_dto/file_item.py,sha256=hxUbdne6AYFHJfuQ8l0XQO86IuC8Pyx_OrPw_0lhN_o,828
|
|
77
|
+
thestage/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
+
thestage/helpers/error_handler.py,sha256=LT3JspQF5hf07NJvsZErgzFRnN7GTQA_4_XH30tt9dY,5375
|
|
79
|
+
thestage/helpers/exception_hook.py,sha256=jekDs7smzI1UjXkuMut_uM725GL3c6Gr_zmyEYdDjV8,334
|
|
80
|
+
thestage/helpers/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
+
thestage/helpers/logger/app_logger.py,sha256=JA8mn4eD39ouNbr4HOFN-H8vXphyzobjXQNdI0-GEWI,1588
|
|
82
|
+
thestage/helpers/ssh_util.py,sha256=JuDwddHxEGcA24Y8a-jLv339cG-jq4hEaBAl5TSVVFw,1262
|
|
83
|
+
thestage/i18n/en_GB/messages.po,sha256=Yue25UrRoPtDpVN14xrdnwOdtxHJz-m-9VMcFIczYbE,32361
|
|
84
|
+
thestage/i18n/translation.py,sha256=c62OicQ4phSMuqDe7hqGebIsk0W2-8ZJUfgfdtjjqEc,284
|
|
85
|
+
thestage/inference_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
|
+
thestage/inference_model/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
thestage/inference_model/business/inference_model_service.py,sha256=VV9n8Jbc2n8jI2nII1Z94lQ7KeHFo2qBQxbCn_Mbxfk,12982
|
|
88
|
+
thestage/inference_model/business/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
thestage/inference_model/business/mapper/inference_model_mapper.py,sha256=ez1kiKbUeRmvz343NPBID8hD3G9BS_-YOiWXDkSjBGg,821
|
|
90
|
+
thestage/inference_model/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
thestage/inference_model/communication/inference_model_api_client.py,sha256=aaNW2znlhvDRW9wvsasLT-ELUPLHj7J48CZJOigMS6Y,6465
|
|
92
|
+
thestage/inference_model/communication/inference_model_command.py,sha256=0tkVuz-9PCtm9EkoIJ4sNSs4vgGTlcY-vvrbszf8xrk,9574
|
|
93
|
+
thestage/inference_model/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
+
thestage/inference_model/dto/deploy_inference_model_to_instance_request.py,sha256=wNDn4QhNrLONBZsyDC1p5o6jsgd-CQb5JQrxNBh9QK8,781
|
|
95
|
+
thestage/inference_model/dto/deploy_inference_model_to_instance_response.py,sha256=cwf4bGChqs6KIURZ8nrZst1xwksqLe2ax8oGUQaa-WA,381
|
|
96
|
+
thestage/inference_model/dto/deploy_inference_model_to_sagemaker_request.py,sha256=CAEzVOlud8dR3ifZLu09LIKAxt2iwZnjq4HmD0a6HXg,478
|
|
97
|
+
thestage/inference_model/dto/deploy_inference_model_to_sagemaker_response.py,sha256=lis4effVtF39eW8gCkWzJKxMVhIMAg3_8JHub83JR6s,422
|
|
98
|
+
thestage/inference_model/dto/enum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
thestage/inference_model/dto/enum/inference_model_status.py,sha256=OgoJBh8u5kveForMoxKCCXesE23C8MTGWiMKTUmmKls,256
|
|
100
|
+
thestage/inference_model/dto/inference_model.py,sha256=f9u0VGR1vgnF86iKVYpE656Hu95vZp7gNvPrFRsevmY,630
|
|
101
|
+
thestage/inference_model/dto/inference_model_entity.py,sha256=aJXdUXxZZQ2f_oWT1KT2MssoL8zShmMcRnRpkpZQ8Z4,554
|
|
102
|
+
thestage/inference_model/dto/inference_simulator_model_list_for_project_request.py,sha256=6ilBlsVdE9tuSNIJv5zVpQyRBHw7WyW1ewJhj5YNPmQ,570
|
|
103
|
+
thestage/inference_model/dto/inference_simulator_model_list_for_project_response.py,sha256=Ah3AjcodtafN_Wi7RDBVFzijhGVreCFVN47Z3pWHHDU,546
|
|
104
|
+
thestage/inference_model/dto/inference_simulator_model_response.py,sha256=zC0wMnp_73oNse-ZMF5dICrqwXtJ5KdpKVkb7ejx61s,421
|
|
105
|
+
thestage/inference_model/dto/push_inference_simulator_model_request.py,sha256=xFBg87vl4lj7xz_zN5ptXYow5dmdPLAjb5HaZFCg1YU,371
|
|
106
|
+
thestage/inference_model/dto/push_inference_simulator_model_response.py,sha256=HJA-gS23xCErBgKcyIoJetOlHuL-Ui5mPoxBMFPnvtg,242
|
|
107
|
+
thestage/inference_simulator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
+
thestage/inference_simulator/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
thestage/inference_simulator/business/inference_simulator_service.py,sha256=sXs4pKFbZjtTWHZqolhcvBywbSdvPuXzGICoJJKtctI,16730
|
|
110
|
+
thestage/inference_simulator/business/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
+
thestage/inference_simulator/business/mapper/inference_simulator_mapper.py,sha256=5DwYbVM4hGpbjNYJqzptKWJIIGJmPFrmTxi5bvj89ko,835
|
|
112
|
+
thestage/inference_simulator/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
+
thestage/inference_simulator/communication/inference_simulator_api_client.py,sha256=hh1mTNydqyphd4_oVvXODglQRkbVhrO3TFOfIi1ZYCk,5312
|
|
114
|
+
thestage/inference_simulator/communication/inference_simulator_command.py,sha256=rggNWmtFCotVc-k8-rJxIKtXg0lsxnLwIo_ta5tuNQ0,13902
|
|
115
|
+
thestage/inference_simulator/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
+
thestage/inference_simulator/dto/enum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
thestage/inference_simulator/dto/enum/inference_simulator_status.py,sha256=mC8_xCjP0p_tmzx41rgLRwYgbijWcR9xs4m9goZY1Ck,436
|
|
118
|
+
thestage/inference_simulator/dto/get_inference_simulator_request.py,sha256=FctVvLAvUfBm-kTwozowyblHPAHZbBO0PAMz4_BA_O4,398
|
|
119
|
+
thestage/inference_simulator/dto/get_inference_simulator_response.py,sha256=NP8sspVr24L-hVkTT19xiJGuDs30-RDF1gehiQ5OrHA,363
|
|
120
|
+
thestage/inference_simulator/dto/inference_simulator.py,sha256=5Mnn1UjG4RAbZf6adV3pu__EsmkOjM8YgOBzeI6Mt38,716
|
|
121
|
+
thestage/inference_simulator/dto/inference_simulator_entity.py,sha256=Bsi2zQtdVbTSvstdQJxYr4Ox9wpG74uWv8gWj9pDLKQ,640
|
|
122
|
+
thestage/inference_simulator/dto/inference_simulator_list_request.py,sha256=JVpjCSfEHijhxojAFSu1d5jSeZX18xiTObUxnHbMs1Y,582
|
|
123
|
+
thestage/inference_simulator/dto/inference_simulator_list_response.py,sha256=Fg2xpWxIPbTl1yjrMkEp606pDFERt7PFf9a9ev65sxM,537
|
|
124
|
+
thestage/inference_simulator/dto/inference_simulator_response.py,sha256=KUs4cZF7I7rC_UceCG4MfBaNffxkf-_HNDuKfvHyKQI,405
|
|
125
|
+
thestage/inference_simulator/dto/start_inference_simulator_request.py,sha256=5nTm5yVTZVTh2mPqIprH3b2DPgfzkeKplfRlSLvQbSM,812
|
|
126
|
+
thestage/inference_simulator/dto/start_inference_simulator_response.py,sha256=EYBbLbWw4G7FoJrLP0q8dBcM1KYE1YBthyCfYiMDX34,416
|
|
127
|
+
thestage/instance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
+
thestage/instance/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
thestage/instance/business/instance_service.py,sha256=70ESgZGAg_kEtxoqcNbiKm3DQv5iidjuFC9jAuGDXbc,12470
|
|
130
|
+
thestage/instance/business/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
thestage/instance/business/mapper/rented_instance_mapper.py,sha256=EPAP-8hoQeu0SVFsoKcCENlddp3tgOtmO7AKwsOVXrk,928
|
|
132
|
+
thestage/instance/business/mapper/selfhosted_instance_mapper.py,sha256=Mga4jZ6UB6293fGsAqm19gqiRRPqz2tDFmdNoQb7NYM,1069
|
|
133
|
+
thestage/instance/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
+
thestage/instance/communication/instance_api_client.py,sha256=_zCIIcoiKVDthboHX0DqjUAOM1b9qyfllTyWmhc68_o,5371
|
|
135
|
+
thestage/instance/communication/instance_command.py,sha256=72hnFzs0fqG9j5fI6yrkrx3_lVO2ElJUUUwv36OQFNQ,7453
|
|
136
|
+
thestage/instance/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
|
+
thestage/instance/dto/enum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
|
+
thestage/instance/dto/enum/cpu_type.py,sha256=lNgTW92gc-MolKThbJmY6xXcrgEFdVxXcH07T2KQ2_o,154
|
|
139
|
+
thestage/instance/dto/enum/gpu_name.py,sha256=YO3iYlo7wTT6wEpkJDRcOO8NAc3WMxEQXMQ8jTFKH6k,162
|
|
140
|
+
thestage/instance/dto/enum/instance_rented_status.py,sha256=_uk5memh9fOPybFugvNANdhnj2-1Gpx1SE9ZpG6d88k,490
|
|
141
|
+
thestage/instance/dto/enum/provider_name.py,sha256=StLglFLewOa7pQYOb3aGzIPuhc937Qr2c4UlQFJXUto,287
|
|
142
|
+
thestage/instance/dto/enum/selfhosted_status.py,sha256=_OsxObVpczLJ9CJKh4nRh0X6lXw9PfQMTYOGEvze9R8,285
|
|
143
|
+
thestage/instance/dto/instance_detected_gpus.py,sha256=NjqogxMJlsMb-L-O9l5vu5n3yfvhwcS4Q1ausCxVcpo,612
|
|
144
|
+
thestage/instance/dto/instance_rented_response.py,sha256=qCq-UxigXpFwJeROZ7p33P0rbt8TBr6h1TzyoIhfMLA,1805
|
|
145
|
+
thestage/instance/dto/rented_instance.py,sha256=DyekXeui3YiiKZmqtvb40n6j6w4_ly80TSjcAbjWlcU,628
|
|
146
|
+
thestage/instance/dto/self_hosted_instance.py,sha256=blsOdCMZPYM_xK4Zx4ZdGD43Ayy8j7ifX30O3fZ2XiM,630
|
|
147
|
+
thestage/instance/dto/selfhosted_instance_response.py,sha256=ig8i1EPISgi_-FacPDWBxnzaehvy9DwxUHDlbtAceDs,1797
|
|
148
|
+
thestage/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
+
thestage/logging/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
+
thestage/logging/business/logging_service.py,sha256=rhtauThug2UCmNDTisvTAa44EaUAJMZ9pCthY1vO_Ng,18425
|
|
151
|
+
thestage/logging/byte_print_style.py,sha256=vUimuC3ZgGujtweQxiRcUXEGlb2yKwv9LRYMy7Gtzhg,139
|
|
152
|
+
thestage/logging/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
+
thestage/logging/communication/logging_api_client.py,sha256=lHcF2CWhwmabhnZm8c6pSD-WjefkseMwA_lzInTOjJw,2825
|
|
154
|
+
thestage/logging/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
thestage/logging/dto/docker_container_log_stream_request.py,sha256=1roOpNE6BX8E9zyPdoMBp0bpL70xRQJepH9Q0EZ8H7c,223
|
|
156
|
+
thestage/logging/dto/log_message.py,sha256=k2clfz2fQnQ-ycFI8g8WYJ_XOjK0hhlA5VhwxVYByaQ,453
|
|
157
|
+
thestage/logging/dto/log_polling_request.py,sha256=2lMalL36tIrkVr657yMlvyvS-QgOTDttUNKdpW9-RS8,562
|
|
158
|
+
thestage/logging/dto/log_polling_response.py,sha256=tPcKEuQaETPnPRUPqwyeYw4K9crY-Lbo1WWEpdNKZm4,528
|
|
159
|
+
thestage/logging/dto/log_type.py,sha256=a6JWnq0ZjJ-2BQrG-fKYYy3UeJS2U2ZzE5P_EXglBfE,95
|
|
160
|
+
thestage/logging/dto/task_log_stream_request.py,sha256=fbqteayY0XR7wNjuSrvJNJ61HSAaMM0LqPXqUVBUQxQ,190
|
|
161
|
+
thestage/logging/dto/user_logs_query_request.py,sha256=7bObMnRtSvMtqNJopsOz5VkxMBJ5Be2ksTdi-VWdMuE,542
|
|
162
|
+
thestage/logging/dto/user_logs_query_response.py,sha256=gLSTkt3UxU8kFQwN4915XcwziGo3c1kV6FusVkd1M0o,539
|
|
163
|
+
thestage/logging/logging_constants.py,sha256=4Gk2tglHW_-jnjB8uVIh-ds4fAVBqNW8igfQt8k7Quc,137
|
|
164
|
+
thestage/main.py,sha256=qqGFn-iD2Yq1deAbcXO2Yrx7T7rrcGu6VVci5YoQU6Y,2981
|
|
165
|
+
thestage/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
+
thestage/project/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
|
+
thestage/project/business/project_service.py,sha256=yNC6zoejcNoj_57uZgMhUY2sRvrQ7cmkqH1WtWXimuk,21673
|
|
168
|
+
thestage/project/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
thestage/project/communication/project_api_client.py,sha256=EYb94JTmPR4GEp1BVCd5K_s5DU9hrqs1EZRURMBpJq8,1927
|
|
170
|
+
thestage/project/communication/project_command.py,sha256=z0ForJdhiKzx6S1KGXVy-z-TCYAHJXs9fw5zOI1RxSw,10560
|
|
171
|
+
thestage/project/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
+
thestage/project/dto/get_deploy_ssh_key_request.py,sha256=OJtk7d_7lmAPJt9fTDrjDlQ9jwQywheF1poYdwEfHeA,273
|
|
173
|
+
thestage/project/dto/get_deploy_ssh_key_response.py,sha256=LY7NbmzPaQcnI8IjP5nZ6ONMiKf1cK7lUJN5fJ3RQjo,363
|
|
174
|
+
thestage/project/dto/project_config.py,sha256=EdaW2qQsw9LVyRh0ktxFNT48d7qqdiaKYCW03uvDqKc,583
|
|
175
|
+
thestage/project/dto/project_response.py,sha256=Q3gDfuiuVXls2WwOVgmKT9MGfOoM2GyE4n9YtmYFiUU,810
|
|
176
|
+
thestage/services/.env,sha256=K2VpzFAVjD75XawAHZdR0HWmypryA_mXNY4WHNgR-wQ,184
|
|
177
|
+
thestage/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
|
+
thestage/services/abstract_mapper.py,sha256=_q7YLkPNRsNW5wOCqvZIu1KfpLkc7uVaAQKrMZtsGuY,218
|
|
179
|
+
thestage/services/abstract_service.py,sha256=fsGXb0plZ9SvGBWAY4y599BH196YoFP3BJ7LS_pgTcc,2707
|
|
180
|
+
thestage/services/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
thestage/services/clients/thestage_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
+
thestage/services/clients/thestage_api/core/api_client_core.py,sha256=OK7j0t-pxGLQISZx9faL-40Cv_adu0way4ejKHJ8xc0,3462
|
|
183
|
+
thestage/services/clients/thestage_api/core/http_client_exception.py,sha256=JH-874Gu9T1b1_FpPBLqdyt9U0PyhpwRCe_oDc6c_jI,385
|
|
184
|
+
thestage/services/clients/thestage_api/dtos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
185
|
+
thestage/services/clients/thestage_api/dtos/base_response.py,sha256=R6jjhvv0U0XD8j5N5T36q-6liiEAUy7xINFA1H7CMB8,410
|
|
186
|
+
thestage/services/clients/thestage_api/dtos/entity_filter_request.py,sha256=nHUhok3y1tl7lyKibgSsOv-g-Npa-K7WVhMezaUeJKA,516
|
|
187
|
+
thestage/services/clients/thestage_api/dtos/frontend_status.py,sha256=MKrqCmFWVe-8InJqavkqz1w1N35OcT3ndBrXOu7mKdA,312
|
|
188
|
+
thestage/services/clients/thestage_api/dtos/installed_service.py,sha256=YHpFFozYe_fz_MP9Tdr-Nn6oR9FWfnXA9NTaxeGlyPI,662
|
|
189
|
+
thestage/services/clients/thestage_api/dtos/paginated_entity_list.py,sha256=a2QRAFqwz2KZXzuTB8aIqTNymg8FHr4XTVXDnYJgqnc,419
|
|
190
|
+
thestage/services/clients/thestage_api/dtos/pagination_data.py,sha256=qV7qiTAtCf-RdDmjZwsBspQlifR1OGr7ezuVJ0A42zU,357
|
|
191
|
+
thestage/services/clients/thestage_api/dtos/sftp_path_helper.py,sha256=nkuyqv3V7f9F5EaEl9RgR5OR1nM4bqQJ0QBeTOvn_r8,364
|
|
192
|
+
thestage/services/clients/thestage_api/dtos/validate_token_response.py,sha256=nmKbqRPkwtzhv37QheA_MO4CpEPmGM0VUC2gYckcrl8,418
|
|
193
|
+
thestage/services/filesystem_service.py,sha256=iXgNT-e2dyiS6KWwADFcWdwiHcAMTdJbOgM_i7baiTs,4873
|
|
194
|
+
thestage/services/service_factory.py,sha256=BLs3ZSmBgVVMzhCp63iLQaDQ7dltj7-Mi7u79SQjUeA,9393
|
|
195
|
+
thestage/task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
+
thestage/task/business/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
thestage/task/business/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
|
+
thestage/task/business/mapper/task_mapper.py,sha256=4ovqqGPMRUV4WY9ggVmEfeNhpgkA2hbnPNHCDEZRGj8,679
|
|
199
|
+
thestage/task/business/task_service.py,sha256=qnbamOmnomtMdtoazaMesNl86KTe0mbMKi0H2CNieCw,15118
|
|
200
|
+
thestage/task/communication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
thestage/task/communication/task_api_client.py,sha256=R6a40_BFef5L9nxcvQN5nEyqJOKgeDXWrRtrOoLwuEk,4663
|
|
202
|
+
thestage/task/communication/task_command.py,sha256=nhz13iJDwyeYNpx4Vz9ervQrSC2GTbg-78uGEtFz1Po,7747
|
|
203
|
+
thestage/task/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
+
thestage/task/dto/enum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
thestage/task/dto/enum/task_execution_status.py,sha256=MU14K1PvkLEFnUizeVt8x_u1IP2OVkyf5pLFdrUUtYg,303
|
|
206
|
+
thestage/task/dto/enum/task_status.py,sha256=Zg4QkuHilWTC6D_lKsby7u4y1rSRs69_kzfeFWCWoFg,282
|
|
207
|
+
thestage/task/dto/list_for_project_request.py,sha256=569Dwh2ErWVTc-sF3VVgTP8b6q7oip4PT4m0cN5crY0,505
|
|
208
|
+
thestage/task/dto/list_for_project_response.py,sha256=_4Q_py7bER3W1JIQnAEGetYPI0BiBTW7gGXErE8d0XM,447
|
|
209
|
+
thestage/task/dto/run_task_request.py,sha256=5btss6O-VIDobobTCT2kBCTiPAosKTgX8NxFJxoPxUM,491
|
|
210
|
+
thestage/task/dto/run_task_response.py,sha256=sNG-b_UvtDEo_7a4nVjYglEx3I9ifNqRWJxUaMUYaIY,424
|
|
211
|
+
thestage/task/dto/status_localized_map_response.py,sha256=yop410FwNvQFXYHKh60ne4DSO3m19zF1nCEuUVSaZ8w,283
|
|
212
|
+
thestage/task/dto/task.py,sha256=hN2jx7RWKv65Jfv6onv7tqLxtJgZ3TuDxFj2512ALwA,726
|
|
213
|
+
thestage/task/dto/task_entity.py,sha256=k2nJ5ewU1BMPqkvewm1TfPsTlvPjgV6Ke0QYYim_dQM,587
|
|
214
|
+
thestage/task/dto/view_response.py,sha256=YMO1nbpBeLDMyW15g0BIEGINAqtBYECPqILJbdgdkmE,289
|
|
215
|
+
thestage-0.6.8.dist-info/METADATA,sha256=niUim0c14ngruKCPwvi6fpL6IF0VL3wiZ6twAjfmOvE,5622
|
|
216
|
+
thestage-0.6.8.dist-info/WHEEL,sha256=3ny-bZhpXrU6vSQ1UPG34FoxZBp3lVcvK0LkgUz6VLk,88
|
|
217
|
+
thestage-0.6.8.dist-info/entry_points.txt,sha256=57pMhs8zaCM-jgeTffC0WVqCsh35Uq_dUDmzXR80CI4,47
|
|
218
|
+
thestage-0.6.8.dist-info/licenses/LICENSE.txt,sha256=U9QrxfdD7Ie7r8z1FleuvOGQvgCF1m0Mjd78cFvWaHE,572
|
|
219
|
+
thestage-0.6.8.dist-info/RECORD,,
|