thestage 0.6.5__py3-none-any.whl → 0.6.7__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/color_scheme/color_scheme.py +1 -0
- thestage/controllers/base_controller.py +4 -3
- thestage/controllers/config_controller.py +16 -4
- thestage/controllers/container_controller.py +151 -106
- thestage/controllers/instance_controller.py +35 -9
- thestage/controllers/project_controller.py +335 -89
- thestage/entities/container.py +5 -3
- thestage/entities/project_inference_simulator.py +2 -1
- thestage/entities/project_inference_simulator_model.py +2 -2
- thestage/entities/project_task.py +2 -3
- thestage/entities/rented_instance.py +2 -2
- thestage/entities/self_hosted_instance.py +2 -2
- thestage/helpers/error_handler.py +1 -1
- thestage/main.py +1 -1
- thestage/services/clients/git/git_client.py +1 -1
- thestage/services/clients/thestage_api/api_client.py +142 -109
- thestage/services/clients/thestage_api/dtos/base_controller/connect_resolve_response.py +22 -0
- thestage/services/clients/thestage_api/dtos/container_param_request.py +1 -1
- thestage/services/clients/thestage_api/dtos/container_response.py +1 -21
- thestage/services/clients/thestage_api/dtos/docker_container_controller/docker_container_list_request.py +2 -1
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_request.py +5 -1
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py +2 -1
- thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py +1 -0
- thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py +2 -1
- thestage/services/clients/thestage_api/dtos/inference_controller/{inference_simulator_list_for_project_request.py → inference_simulator_list_request.py} +3 -2
- thestage/services/clients/thestage_api/dtos/inference_controller/{inference_simulator_list_for_project_response.py → inference_simulator_list_response.py} +1 -1
- thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py +2 -1
- thestage/services/clients/thestage_api/dtos/instance_rented_response.py +4 -37
- thestage/services/clients/thestage_api/dtos/logging_controller/log_polling_request.py +3 -3
- thestage/services/clients/thestage_api/dtos/logging_controller/user_logs_query_request.py +3 -11
- thestage/services/clients/thestage_api/dtos/project_controller/project_get_deploy_ssh_key_request.py +1 -0
- thestage/services/clients/thestage_api/dtos/project_controller/project_push_inference_simulator_model_request.py +2 -1
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_request.py +2 -4
- thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py +3 -0
- thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py +5 -3
- thestage/services/clients/thestage_api/dtos/project_response.py +3 -15
- thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py +2 -20
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_key_to_user_response.py +1 -1
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py +4 -2
- thestage/services/clients/thestage_api/dtos/ssh_key_controller/is_user_has_public_ssh_key_response.py +1 -1
- thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py +4 -1
- thestage/services/clients/thestage_api/dtos/task_controller/task_view_response.py +0 -2
- thestage/services/config_provider/config_provider.py +2 -2
- thestage/services/connect/connect_service.py +77 -74
- thestage/services/container/container_service.py +120 -41
- thestage/services/container/mapper/container_mapper.py +2 -1
- thestage/services/instance/instance_service.py +13 -20
- thestage/services/instance/mapper/instance_mapper.py +1 -3
- thestage/services/instance/mapper/selfhosted_mapper.py +3 -4
- thestage/services/logging/logging_service.py +45 -48
- thestage/services/project/dto/inference_simulator_dto.py +1 -10
- thestage/services/project/dto/inference_simulator_model_dto.py +2 -10
- thestage/services/project/dto/project_config.py +2 -2
- thestage/services/project/mapper/project_inference_simulator_mapper.py +1 -0
- thestage/services/project/mapper/project_inference_simulator_model_mapper.py +2 -2
- thestage/services/project/mapper/project_task_mapper.py +2 -3
- thestage/services/project/project_service.py +174 -140
- thestage/services/remote_server_service.py +1 -0
- thestage/services/task/dto/task_dto.py +3 -23
- {thestage-0.6.5.dist-info → thestage-0.6.7.dist-info}/METADATA +4 -2
- {thestage-0.6.5.dist-info → thestage-0.6.7.dist-info}/RECORD +65 -74
- {thestage-0.6.5.dist-info → thestage-0.6.7.dist-info}/WHEEL +1 -1
- thestage/services/clients/thestage_api/dtos/cloud_provider_region.py +0 -19
- thestage/services/clients/thestage_api/dtos/docker_container_assigned_device.py +0 -10
- thestage/services/clients/thestage_api/dtos/enums/currency_type.py +0 -10
- thestage/services/clients/thestage_api/dtos/enums/daemon_status.py +0 -9
- thestage/services/clients/thestage_api/dtos/enums/disk_type.py +0 -7
- thestage/services/clients/thestage_api/dtos/enums/drive_type.py +0 -7
- thestage/services/clients/thestage_api/dtos/enums/instance_type.py +0 -7
- thestage/services/clients/thestage_api/dtos/enums/location_region.py +0 -11
- thestage/services/clients/thestage_api/dtos/enums/power_status.py +0 -10
- thestage/services/clients/thestage_api/dtos/price_definition.py +0 -14
- {thestage-0.6.5.dist-info → thestage-0.6.7.dist-info}/entry_points.txt +0 -0
- {thestage-0.6.5.dist-info → thestage-0.6.7.dist-info/licenses}/LICENSE.txt +0 -0
|
@@ -116,6 +116,7 @@ class RemoteServerService:
|
|
|
116
116
|
username: str,
|
|
117
117
|
private_key_path: Optional[str],
|
|
118
118
|
):
|
|
119
|
+
typer.echo(f"Connecting to {username}@{ip_address}")
|
|
119
120
|
try:
|
|
120
121
|
if private_key_path:
|
|
121
122
|
os.system(f"ssh -o PreferredAuthentications=publickey -o 'IdentitiesOnly=yes' -i {private_key_path} {username}@{ip_address}")
|
|
@@ -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
|
-
|
|
15
|
-
|
|
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
|
-
|
|
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.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: thestage
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.7
|
|
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
|
|
@@ -20,6 +21,7 @@ Requires-Dist: pydantic (>=2.4.2,<3.0.0)
|
|
|
20
21
|
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
|
21
22
|
Requires-Dist: python-gettext-translations (>=1.1.0,<2.0.0)
|
|
22
23
|
Requires-Dist: requests (>=2.31.0,<3.0.0)
|
|
24
|
+
Requires-Dist: rich (>=14.2.0,<15.0.0)
|
|
23
25
|
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
|
24
26
|
Requires-Dist: typer[all] (>=0.15.2,<0.16.0)
|
|
25
27
|
Description-Content-Type: text/markdown
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
thestage/.env,sha256=lHeR-H4TiBp4z06bWt7oND9LMMVXP3WCKY7lQltDM3M,129
|
|
2
|
-
thestage/__init__.py,sha256=
|
|
2
|
+
thestage/__init__.py,sha256=h6612fk--j1jt0iLyVGKNfXLdDLrKmuH0Vay8qaYWMY,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=
|
|
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=
|
|
12
|
-
thestage/controllers/config_controller.py,sha256=
|
|
13
|
-
thestage/controllers/container_controller.py,sha256=
|
|
14
|
-
thestage/controllers/instance_controller.py,sha256=
|
|
15
|
-
thestage/controllers/project_controller.py,sha256=
|
|
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
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=
|
|
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=
|
|
27
|
-
thestage/entities/project_inference_simulator_model.py,sha256=
|
|
28
|
-
thestage/entities/project_task.py,sha256=
|
|
29
|
-
thestage/entities/rented_instance.py,sha256=
|
|
30
|
-
thestage/entities/self_hosted_instance.py,sha256=
|
|
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
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,14 +38,14 @@ 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=
|
|
41
|
+
thestage/helpers/error_handler.py,sha256=dVwdFvqYnlg-tOtNKVisyZipn0N2u7ZyHt5qVV2a6Rg,5370
|
|
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
|
|
45
45
|
thestage/helpers/ssh_util.py,sha256=JuDwddHxEGcA24Y8a-jLv339cG-jq4hEaBAl5TSVVFw,1262
|
|
46
46
|
thestage/i18n/en_GB/messages.po,sha256=BuVIhd5TRQkgFkAbTGvbSRuO88lSJGpnk9TT2J9BC8E,32375
|
|
47
47
|
thestage/i18n/translation.py,sha256=c62OicQ4phSMuqDe7hqGebIsk0W2-8ZJUfgfdtjjqEc,284
|
|
48
|
-
thestage/main.py,sha256=
|
|
48
|
+
thestage/main.py,sha256=O3NpGl4UE8GfsrdgDP9KZ5Oxe3-EDtBH5IlL-eFdgJs,1800
|
|
49
49
|
thestage/services/.env,sha256=K2VpzFAVjD75XawAHZdR0HWmypryA_mXNY4WHNgR-wQ,184
|
|
50
50
|
thestage/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
51
|
thestage/services/abstract_mapper.py,sha256=_q7YLkPNRsNW5wOCqvZIu1KfpLkc7uVaAQKrMZtsGuY,218
|
|
@@ -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=
|
|
56
|
+
thestage/services/clients/git/git_client.py,sha256=nUCszU5ymWUcf7YqeEhZqBhR17hwyDgMg00DTXOWIOY,16449
|
|
57
57
|
thestage/services/clients/thestage_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
thestage/services/clients/thestage_api/api_client.py,sha256=
|
|
58
|
+
thestage/services/clients/thestage_api/api_client.py,sha256=pLxsHGqu3fEcPvmi9IRFeLCi7LalRUvM-gvo6GGLFF4,32141
|
|
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=mDSAq2gcmERAejnd8rXkAam39bH0WrTw5V4mQ_79hB8,1106
|
|
62
63
|
thestage/services/clients/thestage_api/dtos/base_response.py,sha256=R6jjhvv0U0XD8j5N5T36q-6liiEAUy7xINFA1H7CMB8,410
|
|
63
|
-
thestage/services/clients/thestage_api/dtos/
|
|
64
|
-
thestage/services/clients/thestage_api/dtos/
|
|
65
|
-
thestage/services/clients/thestage_api/dtos/
|
|
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=
|
|
92
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_instance_response.py,sha256=
|
|
93
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/deploy_inference_model_to_sagemaker_request.py,sha256=
|
|
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
|
|
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=
|
|
87
|
+
thestage/services/clients/thestage_api/dtos/inference_controller/get_inference_simulator_request.py,sha256=FctVvLAvUfBm-kTwozowyblHPAHZbBO0PAMz4_BA_O4,398
|
|
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/
|
|
98
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/
|
|
99
|
-
thestage/services/clients/thestage_api/dtos/inference_controller/inference_simulator_model_list_for_project_request.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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/
|
|
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=
|
|
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=
|
|
120
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_run_task_response.py,sha256=
|
|
121
|
-
thestage/services/clients/thestage_api/dtos/project_controller/project_start_inference_simulator_request.py,sha256=
|
|
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
|
|
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=
|
|
124
|
-
thestage/services/clients/thestage_api/dtos/selfhosted_instance_response.py,sha256=
|
|
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=
|
|
128
|
-
thestage/services/clients/thestage_api/dtos/ssh_key_controller/add_ssh_public_key_to_instance_request.py,sha256=
|
|
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=
|
|
132
|
-
thestage/services/clients/thestage_api/dtos/task_controller/task_list_for_project_request.py,sha256=
|
|
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=
|
|
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=
|
|
140
|
-
thestage/services/connect/connect_service.py,sha256=
|
|
130
|
+
thestage/services/config_provider/config_provider.py,sha256=CR2xSWRMIqsspek3iIs2qZ60ThHVNmTNTS6R4uheAuE,10238
|
|
131
|
+
thestage/services/connect/connect_service.py,sha256=w5Iq98HRZrfrUE5sfMMRAMPDZUh4jmeGDpXDXgAHBMs,9752
|
|
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=
|
|
134
|
+
thestage/services/container/container_service.py,sha256=vNBNVGYtDRQCBTSKWq8vN-j8XuFE5NfwzzoqT96J08Y,18189
|
|
144
135
|
thestage/services/container/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
-
thestage/services/container/mapper/container_mapper.py,sha256=
|
|
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=
|
|
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=
|
|
152
|
-
thestage/services/instance/mapper/selfhosted_mapper.py,sha256=
|
|
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=
|
|
149
|
+
thestage/services/logging/logging_service.py,sha256=44YjcsYo-C3i8R8wFoz0JdhnqY6Tl90aI3M6nWH2yyQ,17819
|
|
159
150
|
thestage/services/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
-
thestage/services/project/dto/inference_simulator_dto.py,sha256=
|
|
161
|
-
thestage/services/project/dto/inference_simulator_model_dto.py,sha256=
|
|
162
|
-
thestage/services/project/dto/project_config.py,sha256=
|
|
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
|
|
163
154
|
thestage/services/project/mapper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
|
-
thestage/services/project/mapper/project_inference_simulator_mapper.py,sha256=
|
|
165
|
-
thestage/services/project/mapper/project_inference_simulator_model_mapper.py,sha256=
|
|
166
|
-
thestage/services/project/mapper/project_task_mapper.py,sha256=
|
|
167
|
-
thestage/services/project/project_service.py,sha256=
|
|
168
|
-
thestage/services/remote_server_service.py,sha256=
|
|
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
|
|
169
160
|
thestage/services/service_factory.py,sha256=WosSbicSvY9dHOkS2OqGCtHkmKdJE1f_K7uEnB3Auaw,4291
|
|
170
|
-
thestage/services/task/dto/task_dto.py,sha256=
|
|
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.
|
|
173
|
-
thestage-0.6.
|
|
174
|
-
thestage-0.6.
|
|
175
|
-
thestage-0.6.
|
|
176
|
-
thestage-0.6.
|
|
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,,
|
|
@@ -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,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,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')
|
|
File without changes
|
|
File without changes
|