cosmotech-api 2.4.1__py3-none-any.whl → 3.0.9.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cosmotech-api might be problematic. Click here for more details.
- cosmotech_api/__init__.py +1 -1
- cosmotech_api/api/connector_api.py +20 -21
- cosmotech_api/api/dataset_api.py +2612 -153
- cosmotech_api/api/organization_api.py +1 -131
- cosmotech_api/api/scenario_api.py +13 -158
- cosmotech_api/api/scenariorun_api.py +1 -160
- cosmotech_api/api/scenariorunresult_api.py +386 -0
- cosmotech_api/api/solution_api.py +639 -36
- cosmotech_api/api/twingraph_api.py +63 -206
- cosmotech_api/api/user_api.py +1 -1
- cosmotech_api/api/validator_api.py +1 -1
- cosmotech_api/api/workspace_api.py +1 -141
- cosmotech_api/api_client.py +1 -1
- cosmotech_api/apis/__init__.py +1 -0
- cosmotech_api/configuration.py +2 -2
- cosmotech_api/exceptions.py +1 -1
- cosmotech_api/model/component_role_permissions.py +1 -1
- cosmotech_api/model/connector.py +1 -1
- cosmotech_api/model/connector_parameter.py +1 -1
- cosmotech_api/model/connector_parameter_group.py +1 -1
- cosmotech_api/model/container_resource_size_info.py +1 -1
- cosmotech_api/model/container_resource_sizing.py +1 -1
- cosmotech_api/model/dataset.py +55 -1
- cosmotech_api/model/dataset_access_control.py +268 -0
- cosmotech_api/model/dataset_compatibility.py +1 -1
- cosmotech_api/model/dataset_connector.py +1 -1
- cosmotech_api/model/dataset_copy_parameters.py +1 -1
- cosmotech_api/model/dataset_role.py +262 -0
- cosmotech_api/model/dataset_search.py +1 -1
- cosmotech_api/model/dataset_security.py +274 -0
- cosmotech_api/model/dataset_source_type.py +286 -0
- cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
- cosmotech_api/model/dataset_twin_graph_info.py +264 -0
- cosmotech_api/model/dataset_twin_graph_query.py +262 -0
- cosmotech_api/model/delete_historical_data.py +1 -1
- cosmotech_api/model/graph_properties.py +1 -1
- cosmotech_api/model/organization.py +1 -1
- cosmotech_api/model/organization_access_control.py +1 -1
- cosmotech_api/model/organization_role.py +1 -1
- cosmotech_api/model/organization_security.py +1 -1
- cosmotech_api/model/organization_service.py +1 -1
- cosmotech_api/model/organization_services.py +1 -1
- cosmotech_api/model/resource_size_info.py +1 -1
- cosmotech_api/model/run_template.py +7 -1
- cosmotech_api/model/run_template_handler_id.py +1 -1
- cosmotech_api/model/run_template_orchestrator.py +283 -0
- cosmotech_api/model/run_template_parameter.py +1 -1
- cosmotech_api/model/run_template_parameter_group.py +1 -1
- cosmotech_api/model/run_template_parameter_value.py +1 -1
- cosmotech_api/model/run_template_resource_sizing.py +1 -1
- cosmotech_api/model/run_template_step_source.py +1 -1
- cosmotech_api/model/scenario.py +1 -1
- cosmotech_api/model/scenario_access_control.py +1 -1
- cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
- cosmotech_api/model/scenario_comparison_result.py +1 -1
- cosmotech_api/model/scenario_data_download_info.py +1 -1
- cosmotech_api/model/scenario_data_download_job.py +1 -1
- cosmotech_api/model/scenario_job_state.py +1 -1
- cosmotech_api/model/scenario_last_run.py +1 -1
- cosmotech_api/model/scenario_resource_sizing.py +1 -1
- cosmotech_api/model/scenario_role.py +1 -1
- cosmotech_api/model/scenario_run.py +6 -1
- cosmotech_api/model/scenario_run_container.py +1 -1
- cosmotech_api/model/scenario_run_container_artifact.py +1 -1
- cosmotech_api/model/scenario_run_container_logs.py +1 -1
- cosmotech_api/model/scenario_run_logs.py +1 -1
- cosmotech_api/model/scenario_run_resource_requested.py +260 -0
- cosmotech_api/model/scenario_run_result.py +260 -0
- cosmotech_api/model/scenario_run_search.py +1 -1
- cosmotech_api/model/scenario_run_start_containers.py +1 -1
- cosmotech_api/model/scenario_run_state.py +1 -1
- cosmotech_api/model/scenario_run_status.py +1 -1
- cosmotech_api/model/scenario_run_status_node.py +16 -1
- cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
- cosmotech_api/model/scenario_security.py +1 -1
- cosmotech_api/model/scenario_validation_status.py +1 -1
- cosmotech_api/model/solution.py +7 -1
- cosmotech_api/model/solution_access_control.py +268 -0
- cosmotech_api/model/solution_role.py +262 -0
- cosmotech_api/model/solution_security.py +274 -0
- cosmotech_api/model/source_info.py +3 -13
- cosmotech_api/model/sub_dataset_graph_query.py +268 -0
- cosmotech_api/model/translated_labels.py +1 -1
- cosmotech_api/model/twin_graph_batch_result.py +1 -1
- cosmotech_api/model/twin_graph_hash.py +1 -1
- cosmotech_api/model/twin_graph_import.py +1 -1
- cosmotech_api/model/twin_graph_import_info.py +1 -1
- cosmotech_api/model/twin_graph_query.py +1 -1
- cosmotech_api/model/user.py +1 -1
- cosmotech_api/model/user_organization.py +1 -1
- cosmotech_api/model/user_workspace.py +1 -1
- cosmotech_api/model/validator.py +1 -1
- cosmotech_api/model/validator_run.py +1 -1
- cosmotech_api/model/workspace.py +1 -1
- cosmotech_api/model/workspace_access_control.py +1 -1
- cosmotech_api/model/workspace_file.py +1 -1
- cosmotech_api/model/workspace_role.py +1 -1
- cosmotech_api/model/workspace_secret.py +1 -1
- cosmotech_api/model/workspace_security.py +1 -1
- cosmotech_api/model/workspace_solution.py +1 -1
- cosmotech_api/model/workspace_web_app.py +1 -1
- cosmotech_api/model_utils.py +1 -1
- cosmotech_api/models/__init__.py +14 -2
- cosmotech_api/rest.py +1 -1
- {cosmotech_api-2.4.1.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/METADATA +2 -2
- cosmotech_api-3.0.9.dev0.dist-info/RECORD +114 -0
- {cosmotech_api-2.4.1.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/WHEEL +1 -1
- cosmotech_api-2.4.1.dist-info/RECORD +0 -99
- {cosmotech_api-2.4.1.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/LICENSE +0 -0
- {cosmotech_api-2.4.1.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/top_level.txt +0 -0
cosmotech_api/model/user.py
CHANGED
cosmotech_api/model/validator.py
CHANGED
cosmotech_api/model/workspace.py
CHANGED
cosmotech_api/model_utils.py
CHANGED
cosmotech_api/models/__init__.py
CHANGED
|
@@ -16,10 +16,17 @@ from cosmotech_api.model.connector_parameter_group import ConnectorParameterGrou
|
|
|
16
16
|
from cosmotech_api.model.container_resource_size_info import ContainerResourceSizeInfo
|
|
17
17
|
from cosmotech_api.model.container_resource_sizing import ContainerResourceSizing
|
|
18
18
|
from cosmotech_api.model.dataset import Dataset
|
|
19
|
+
from cosmotech_api.model.dataset_access_control import DatasetAccessControl
|
|
19
20
|
from cosmotech_api.model.dataset_compatibility import DatasetCompatibility
|
|
20
21
|
from cosmotech_api.model.dataset_connector import DatasetConnector
|
|
21
22
|
from cosmotech_api.model.dataset_copy_parameters import DatasetCopyParameters
|
|
23
|
+
from cosmotech_api.model.dataset_role import DatasetRole
|
|
22
24
|
from cosmotech_api.model.dataset_search import DatasetSearch
|
|
25
|
+
from cosmotech_api.model.dataset_security import DatasetSecurity
|
|
26
|
+
from cosmotech_api.model.dataset_source_type import DatasetSourceType
|
|
27
|
+
from cosmotech_api.model.dataset_twin_graph_hash import DatasetTwinGraphHash
|
|
28
|
+
from cosmotech_api.model.dataset_twin_graph_info import DatasetTwinGraphInfo
|
|
29
|
+
from cosmotech_api.model.dataset_twin_graph_query import DatasetTwinGraphQuery
|
|
23
30
|
from cosmotech_api.model.delete_historical_data import DeleteHistoricalData
|
|
24
31
|
from cosmotech_api.model.graph_properties import GraphProperties
|
|
25
32
|
from cosmotech_api.model.organization import Organization
|
|
@@ -31,6 +38,7 @@ from cosmotech_api.model.organization_services import OrganizationServices
|
|
|
31
38
|
from cosmotech_api.model.resource_size_info import ResourceSizeInfo
|
|
32
39
|
from cosmotech_api.model.run_template import RunTemplate
|
|
33
40
|
from cosmotech_api.model.run_template_handler_id import RunTemplateHandlerId
|
|
41
|
+
from cosmotech_api.model.run_template_orchestrator import RunTemplateOrchestrator
|
|
34
42
|
from cosmotech_api.model.run_template_parameter import RunTemplateParameter
|
|
35
43
|
from cosmotech_api.model.run_template_parameter_group import RunTemplateParameterGroup
|
|
36
44
|
from cosmotech_api.model.run_template_parameter_value import RunTemplateParameterValue
|
|
@@ -51,6 +59,8 @@ from cosmotech_api.model.scenario_run_container import ScenarioRunContainer
|
|
|
51
59
|
from cosmotech_api.model.scenario_run_container_artifact import ScenarioRunContainerArtifact
|
|
52
60
|
from cosmotech_api.model.scenario_run_container_logs import ScenarioRunContainerLogs
|
|
53
61
|
from cosmotech_api.model.scenario_run_logs import ScenarioRunLogs
|
|
62
|
+
from cosmotech_api.model.scenario_run_resource_requested import ScenarioRunResourceRequested
|
|
63
|
+
from cosmotech_api.model.scenario_run_result import ScenarioRunResult
|
|
54
64
|
from cosmotech_api.model.scenario_run_search import ScenarioRunSearch
|
|
55
65
|
from cosmotech_api.model.scenario_run_start_containers import ScenarioRunStartContainers
|
|
56
66
|
from cosmotech_api.model.scenario_run_state import ScenarioRunState
|
|
@@ -60,12 +70,14 @@ from cosmotech_api.model.scenario_run_template_parameter_value import ScenarioRu
|
|
|
60
70
|
from cosmotech_api.model.scenario_security import ScenarioSecurity
|
|
61
71
|
from cosmotech_api.model.scenario_validation_status import ScenarioValidationStatus
|
|
62
72
|
from cosmotech_api.model.solution import Solution
|
|
73
|
+
from cosmotech_api.model.solution_access_control import SolutionAccessControl
|
|
74
|
+
from cosmotech_api.model.solution_role import SolutionRole
|
|
75
|
+
from cosmotech_api.model.solution_security import SolutionSecurity
|
|
63
76
|
from cosmotech_api.model.source_info import SourceInfo
|
|
77
|
+
from cosmotech_api.model.sub_dataset_graph_query import SubDatasetGraphQuery
|
|
64
78
|
from cosmotech_api.model.translated_labels import TranslatedLabels
|
|
65
79
|
from cosmotech_api.model.twin_graph_batch_result import TwinGraphBatchResult
|
|
66
80
|
from cosmotech_api.model.twin_graph_hash import TwinGraphHash
|
|
67
|
-
from cosmotech_api.model.twin_graph_import import TwinGraphImport
|
|
68
|
-
from cosmotech_api.model.twin_graph_import_info import TwinGraphImportInfo
|
|
69
81
|
from cosmotech_api.model.twin_graph_query import TwinGraphQuery
|
|
70
82
|
from cosmotech_api.model.validator import Validator
|
|
71
83
|
from cosmotech_api.model.validator_run import ValidatorRun
|
cosmotech_api/rest.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cosmotech-api
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.9.dev0
|
|
4
4
|
Summary: Cosmo Tech Platform API
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: Repository
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Platform API
|
|
10
10
|
Requires-Python: >=3.6
|
|
11
11
|
License-File: LICENSE
|
|
12
|
-
Requires-Dist: urllib3
|
|
12
|
+
Requires-Dist: urllib3 >=1.25.3
|
|
13
13
|
Requires-Dist: python-dateutil
|
|
14
14
|
|
|
15
15
|
Cosmo Tech Platform API # noqa: E501
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
cosmotech_api/__init__.py,sha256=8w6GNu8EO9OALkbKzSPbdSlVjd-HJ4ClGX4HbPKnpdA,736
|
|
2
|
+
cosmotech_api/api_client.py,sha256=qua69wvC_VSrsPWENDt8WRhQ8Pd3E7lDY6kCurpxHu4,37653
|
|
3
|
+
cosmotech_api/configuration.py,sha256=QWKqpuw-06BZYqC__CkPPqsGkJ3oQfqdrImY_2cOwos,16758
|
|
4
|
+
cosmotech_api/exceptions.py,sha256=PVyHuqRlgDNlXPpoXgqHaclfL2FYKmXL97_aXoYqVuM,5066
|
|
5
|
+
cosmotech_api/model_utils.py,sha256=FQcX9dCO-vzlRgEeY48h6c04nwQBKZNQ9GzQ8a_phFE,82071
|
|
6
|
+
cosmotech_api/rest.py,sha256=fhCLPUm1z_LiqP-4OSnogMXvPPNWoLtkuqxLDjr8wPI,14189
|
|
7
|
+
cosmotech_api/api/__init__.py,sha256=j0YjaWa-mhP94dpnA6Rga8BSw_i5Zdx25sNMPNRUb64,219
|
|
8
|
+
cosmotech_api/api/connector_api.py,sha256=7l3eUXrkGK6hSBe7R6tLELUzDsxewK8CN84HCIFEyL0,24402
|
|
9
|
+
cosmotech_api/api/dataset_api.py,sha256=cyJX9PcYJlQNZ1JiJMHgBgCJF3v0dBTVH49gzeChNPs,146935
|
|
10
|
+
cosmotech_api/api/organization_api.py,sha256=2u3Tnvz8Xj89yPKNARElgEl2j8CZJS4I_FzWVAq8RbI,88207
|
|
11
|
+
cosmotech_api/api/scenario_api.py,sha256=o7Lb9v9jWiFHv5wEZiYHZw-hEeTNlh-3J_QaA70HjBY,129786
|
|
12
|
+
cosmotech_api/api/scenariorun_api.py,sha256=IlPhHu1shaw_POfkgoKGYgx8OMDhAx4Pq2Lkd7gxXxk,77635
|
|
13
|
+
cosmotech_api/api/scenariorunresult_api.py,sha256=SicHuLrIEA1nbMQqMj_sEvKn_eYP44KQFaXHQgTdJpk,14195
|
|
14
|
+
cosmotech_api/api/solution_api.py,sha256=sGIbUg2Qumuyx51F6cyjKpqPGicDtiDrfz_cBZpLFdA,112916
|
|
15
|
+
cosmotech_api/api/twingraph_api.py,sha256=_g-6fjNehrqvvMdRI6VtOhNJzRMmivtXufGcyIhhwx8,79605
|
|
16
|
+
cosmotech_api/api/user_api.py,sha256=zSWOMck8FivYJEKFQgm9svV3F7poQbqPK0muNRB6gWA,46554
|
|
17
|
+
cosmotech_api/api/validator_api.py,sha256=oua0-XBQCMuYyBROC2foTqpoyaVXDnwRKFY1LpMPi4M,48795
|
|
18
|
+
cosmotech_api/api/workspace_api.py,sha256=Cz5QUpFvTnD7n9d95W3moUjUgSbH6kV8cnMbOG2C9n0,105442
|
|
19
|
+
cosmotech_api/apis/__init__.py,sha256=DzAfOkrqzr83aDw5UOmzj3dZNfMoWBGhvILXHRLCnmM,1005
|
|
20
|
+
cosmotech_api/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
|
|
21
|
+
cosmotech_api/model/component_role_permissions.py,sha256=zjTi50YEZdMpMee1ckbxWs7g_6yvrh2lPyNg-JnuIiQ,11289
|
|
22
|
+
cosmotech_api/model/connector.py,sha256=Xk7RxS2cTOJ5-xtnZAMIMjJsEehvEYClPGpVkUdp2xE,15382
|
|
23
|
+
cosmotech_api/model/connector_parameter.py,sha256=zYqiuOK4SxoT61ug6XRL5UmMBDhgr8Vntmgtuj74GF4,12495
|
|
24
|
+
cosmotech_api/model/connector_parameter_group.py,sha256=EMtGtD7gwX7tV-zMwTV0FVlizWzW0z_5G1syQ2YLx7A,11970
|
|
25
|
+
cosmotech_api/model/container_resource_size_info.py,sha256=tTxkaq1bZ3JQaRxvtM5NkWP_Ps-fXC_QywI8SlDWgas,11365
|
|
26
|
+
cosmotech_api/model/container_resource_sizing.py,sha256=ThE-NwFtGWfFMhr0FAD_qgaQyJR0AcUCU9NoZk5DwQo,11698
|
|
27
|
+
cosmotech_api/model/dataset.py,sha256=rvhSoNwf1bAYwg_trrQlZPYkT9hdMCm_7Y51FW7Z2z8,17206
|
|
28
|
+
cosmotech_api/model/dataset_access_control.py,sha256=yGkO20a0Sl1kRQWNItDOeDiayuNzFrhA5vukpSuA4WI,11289
|
|
29
|
+
cosmotech_api/model/dataset_compatibility.py,sha256=nGkKAJnTtdbHRw1r5etYsnBCkwoTVTd0UfN6pPbCMBw,11972
|
|
30
|
+
cosmotech_api/model/dataset_connector.py,sha256=BHJdMPtkHYTMexa9Y2dj1rmPLe__BbaKnUwZdxU_zOM,11776
|
|
31
|
+
cosmotech_api/model/dataset_copy_parameters.py,sha256=jmJ4hBWOUtH15lHYh5yWGXfUgOmhGabyGivRUh10DHc,11825
|
|
32
|
+
cosmotech_api/model/dataset_role.py,sha256=etN6YRTx61dIEsnFW2UJ1463Ffqzj900GE_qjdHlClc,11082
|
|
33
|
+
cosmotech_api/model/dataset_search.py,sha256=Obhy9Ydajno_gTMXu-FZCe6X_gmJr35Fp9CFbiH5xDw,11209
|
|
34
|
+
cosmotech_api/model/dataset_security.py,sha256=d0v0gTBLqmiMc-bDXOb1zURAmyocuqAdWtIJYnYIyzI,11908
|
|
35
|
+
cosmotech_api/model/dataset_source_type.py,sha256=0ICbWgrmsIv3okRi5bam4fV4TC5Qid-3lRhPiuTgqR0,11870
|
|
36
|
+
cosmotech_api/model/dataset_twin_graph_hash.py,sha256=7gpoifyaw8F56pPf3G9i03-ryGNmZXSojVBM1hfXOUY,11079
|
|
37
|
+
cosmotech_api/model/dataset_twin_graph_info.py,sha256=PosEGbqC6aU763RkBD6XQ4HmOt9Ub4mxEVguP7-ZDy0,11543
|
|
38
|
+
cosmotech_api/model/dataset_twin_graph_query.py,sha256=6ew2v18vj2F0DjTDczzW2fqMXc-q5wXtoRJcytulwGc,11147
|
|
39
|
+
cosmotech_api/model/delete_historical_data.py,sha256=OqPiD-PysTAuO5QtDaGRG7hECMLwitcCxMVY7vDk9O8,12174
|
|
40
|
+
cosmotech_api/model/graph_properties.py,sha256=KVvlhqIDZyBeHm9HrQ6eUFNXTL4bjpu8MyUz94PRb9g,12120
|
|
41
|
+
cosmotech_api/model/organization.py,sha256=3O7ZmG7esFz-PhHwsqUDNu7RxSletCr43LmqvDkr48I,12554
|
|
42
|
+
cosmotech_api/model/organization_access_control.py,sha256=yOn2Bm4eOS_0d4UhpjLxUxlKAbXwoqaxBfIsKhk_hRA,11304
|
|
43
|
+
cosmotech_api/model/organization_role.py,sha256=xZT7fxSWWKnPWNWJd_4Rj48-wVs_Xxo1he6UWRdj-OU,11107
|
|
44
|
+
cosmotech_api/model/organization_security.py,sha256=ad30Drz8UNVRcVLvJXz6KQ_sOombhiPaytqG2NEkMJU,11968
|
|
45
|
+
cosmotech_api/model/organization_service.py,sha256=z2ssF_k389S89jQUTWej45C3uZnOsi5BLPBgeCmQ-zI,12598
|
|
46
|
+
cosmotech_api/model/organization_services.py,sha256=RWDAF_UohvN79g0LbGlnE_p_LttDdoHHLW8QkfHI17c,12277
|
|
47
|
+
cosmotech_api/model/organization_user.py,sha256=uEbQkV3aAIHNuUt1MXZnc3lWnwGJou6C3kg0fJ_0m7c,11802
|
|
48
|
+
cosmotech_api/model/resource_size_info.py,sha256=qcjT4fXEuQFi9YjthU0Ukflmwwt7kagRleyAnswsEGU,11338
|
|
49
|
+
cosmotech_api/model/run_template.py,sha256=r75x3etglWW8dDTgJU3wXus8SXXzT9b4VAllVeMKGoY,22981
|
|
50
|
+
cosmotech_api/model/run_template_handler_id.py,sha256=o4CsUIKGGHyVKv-4OgJfYCVONqDnGRJa_wB9CJlbEWI,12199
|
|
51
|
+
cosmotech_api/model/run_template_orchestrator.py,sha256=s2lgEZNle2h0uuPe9CTS4MmuPMQP1dP5KFAbPEvLHH8,11780
|
|
52
|
+
cosmotech_api/model/run_template_parameter.py,sha256=R9C4tWVP0Od1WUbebgoXcuN5NfkN0ZBSEhAu8zkUqgk,13435
|
|
53
|
+
cosmotech_api/model/run_template_parameter_group.py,sha256=unA7-ZyrDe94KOJ51hgsB6G-IMNoVwK6CS-XWm3KxwY,12790
|
|
54
|
+
cosmotech_api/model/run_template_parameter_value.py,sha256=DK16h4WgzQaqIkOSsITSKhQMU8DoNlNwi-NwSL2XMqE,11735
|
|
55
|
+
cosmotech_api/model/run_template_resource_sizing.py,sha256=C4LtMz_tWbxEf907ZG9l7hGRvHud6BgyDbJJdq4-Qig,11613
|
|
56
|
+
cosmotech_api/model/run_template_step_source.py,sha256=iDKnHWL64uVFd7UyCiOSk4chowUB0ST0_YVTCl2gvpc,11852
|
|
57
|
+
cosmotech_api/model/scenario.py,sha256=R42MPw6QT0nTkJqLN_wIY_uTzlJGf6uKV9OFpEPiF9w,19748
|
|
58
|
+
cosmotech_api/model/scenario_access_control.py,sha256=dX882dKtrNlZHs65Lt9tCV-iBWZ01sLu8nBionUKyS8,11292
|
|
59
|
+
cosmotech_api/model/scenario_changed_parameter_value.py,sha256=eD-AP80ui2Dv_LvLuuPatE5B4beXq8zVUU4lTjiDswg,12167
|
|
60
|
+
cosmotech_api/model/scenario_comparison_result.py,sha256=CM2XWcELXxiibgfNE2-NAQZm8Ly5BOScIV4zcit56Cg,12325
|
|
61
|
+
cosmotech_api/model/scenario_data_download_info.py,sha256=j5nevDmbcEMpFzpDQU_rbJP7-qgJ0sjFxtzVjvntEh0,11544
|
|
62
|
+
cosmotech_api/model/scenario_data_download_job.py,sha256=q4S3QgXhDXFpXWKBGW0Lzc0IBW-bzs1sNxxswovCZX0,11146
|
|
63
|
+
cosmotech_api/model/scenario_job_state.py,sha256=4TNSDcXy6dUdAeyZx6JkS7L5OteDL02u-1xgoL9sDg8,12067
|
|
64
|
+
cosmotech_api/model/scenario_last_run.py,sha256=ceWtI2wRqKJjo0JvABqlxfAIh78XieOjWN_cKoMaAaE,11973
|
|
65
|
+
cosmotech_api/model/scenario_resource_sizing.py,sha256=JlcUf5y__1Ev25XeM2aMb_6uOtu5X3JCycVI6LDBYII,11604
|
|
66
|
+
cosmotech_api/model/scenario_role.py,sha256=WifF3wHDycokLCD7BaO8ngWHLwnT-H5lpdrjjcXXFGU,11087
|
|
67
|
+
cosmotech_api/model/scenario_run.py,sha256=rEORgCrqW_1IykmmbBLtT2Fo2IW_df-PYsQXVTRIVbY,19815
|
|
68
|
+
cosmotech_api/model/scenario_run_container.py,sha256=JlswMnZG0do0UWAor7KzNX5uSBQWTTPVFhPIsJxjGY8,14707
|
|
69
|
+
cosmotech_api/model/scenario_run_container_artifact.py,sha256=LYGV8xJj6Kj5JCATldF3_w_PWqIFUF3z4yNuyUDtA8Q,11369
|
|
70
|
+
cosmotech_api/model/scenario_run_container_logs.py,sha256=wBJ6NDnLART1wkDbP1RpAIRykhC9PMp6cR6YFsWVIAE,12045
|
|
71
|
+
cosmotech_api/model/scenario_run_logs.py,sha256=54vNJaWhYomLOHR8P2kt2toDMcsbuBhGqabzlfhxIs4,11760
|
|
72
|
+
cosmotech_api/model/scenario_run_resource_requested.py,sha256=xVsYoa3oEhOdE8jM5i99S1PB6zTybO9QoeyQ0oHeOYs,11322
|
|
73
|
+
cosmotech_api/model/scenario_run_result.py,sha256=dFbDAzefcsgVLC_Bat5BUl-iIX_7RV-CVN2A9oYFLtk,11243
|
|
74
|
+
cosmotech_api/model/scenario_run_search.py,sha256=edchZw7YEzn3Fm52lWcZeO6uLqW976ME1HwjR6lTHR4,13625
|
|
75
|
+
cosmotech_api/model/scenario_run_start_containers.py,sha256=jSynEpJMcmkBxqKmTRSGwfaZjS78-y0k3lZbAnNBIqY,12673
|
|
76
|
+
cosmotech_api/model/scenario_run_state.py,sha256=N3mHYOz90sD-BOywB9DX5xVcrj8DXej7vk85pefXt0c,12185
|
|
77
|
+
cosmotech_api/model/scenario_run_status.py,sha256=jnVeOy_BmCq5UxMCZpfrTOb-er-q4FjZ_3w6b28REtQ,14603
|
|
78
|
+
cosmotech_api/model/scenario_run_status_node.py,sha256=J6IQg67Qy3g9uG83VM8iZm5kKsGc472KkEWe-_L8s1g,14549
|
|
79
|
+
cosmotech_api/model/scenario_run_template_parameter_value.py,sha256=NoIHhZ-HTLndg56KX5xa0A8CJ0PcccnrgGB-GfIHT_k,12121
|
|
80
|
+
cosmotech_api/model/scenario_security.py,sha256=tal31Qt3QTEd9EuhaxOvebUZjSSTVx5ei657AR-FUME,11920
|
|
81
|
+
cosmotech_api/model/scenario_user.py,sha256=fwUoU4KrUuE-1b9SHcds92ZfnLdYdwZ5S7oA6DPrvtA,11622
|
|
82
|
+
cosmotech_api/model/scenario_validation_status.py,sha256=l-CU0Xl0vPlj229JhSiovBOXDkpSXqLOpm99rpoPs-w,11893
|
|
83
|
+
cosmotech_api/model/solution.py,sha256=LOJHqKUfsLSxWGckdg1km0oNCmJ9KDlcrPmvios5GWU,16323
|
|
84
|
+
cosmotech_api/model/solution_access_control.py,sha256=Azw5ch309RAH2tYYElIVyqMUCM6ezeZa_kbjMMJvBIM,11292
|
|
85
|
+
cosmotech_api/model/solution_role.py,sha256=u0elw6Aky1Nw4Nf8y7XN5RoWzgy7O_CppB6_Ifs_kiE,11087
|
|
86
|
+
cosmotech_api/model/solution_security.py,sha256=-uCrYNlR8d0qcwrgjLCmWwIk5HcLPoeR1t0IXczKN2M,11920
|
|
87
|
+
cosmotech_api/model/source_info.py,sha256=0t8VtCX34ttdgjHUWZbqUFRg3J3vRLGKatXXy2uQ2YA,11747
|
|
88
|
+
cosmotech_api/model/sub_dataset_graph_query.py,sha256=1oJrkin-RHCF5KaEtGA8Tu5xKalk9HXLbJGtiDKJ_WE,11864
|
|
89
|
+
cosmotech_api/model/translated_labels.py,sha256=-VrN9l8B2qUxm9iDmst01HbUPB_WGRgjHesQNMDf8K4,10786
|
|
90
|
+
cosmotech_api/model/twin_graph_batch_result.py,sha256=G8AyHo9gYd7AdDX750I_7hux8cHiEIxroxg-hF6g0Mk,11679
|
|
91
|
+
cosmotech_api/model/twin_graph_hash.py,sha256=tEzgkI8xBrtznolnJbG_dOOIA3cAUPT0kP-7-NV_RC0,11058
|
|
92
|
+
cosmotech_api/model/twin_graph_import.py,sha256=fmm_m2aGKHnOzorAermwpVuKVx_4-zNVIGEccGGf2BE,12037
|
|
93
|
+
cosmotech_api/model/twin_graph_import_info.py,sha256=kLmsCevhdhXlHwAYotc28RbnDxlIY4_90ohvyQk0RAw,11326
|
|
94
|
+
cosmotech_api/model/twin_graph_query.py,sha256=9syQHImLR_MyZVvRfRy7DBPAVelKwRbX4NpVy3lXN1A,11359
|
|
95
|
+
cosmotech_api/model/user.py,sha256=NkkHMv-FEo0D-L4VneZb4dzHcb-QKGRVdZWsDkSOCAg,12199
|
|
96
|
+
cosmotech_api/model/user_organization.py,sha256=yaaHDVUGfQfRXZui0g_-WD-II6flJL6PTPYp2uQIyYg,12060
|
|
97
|
+
cosmotech_api/model/user_workspace.py,sha256=ygM6s0cPOxtcN_TyoVD3kTW1ktkVkVsiWgl-G7WhZZc,11575
|
|
98
|
+
cosmotech_api/model/validator.py,sha256=BcrgKjIxJFofCzstr8tozrFUku3B3jwPfsYHKpHmnJg,13046
|
|
99
|
+
cosmotech_api/model/validator_run.py,sha256=eV6oI3IvFoGQoA6cA1IEetTTADESGTeFLtGRFVnUU_Q,13299
|
|
100
|
+
cosmotech_api/model/workspace.py,sha256=w0XDkVw1fxGjGNzc3c8UmeoFG25WKWKpNmoERdj5Esk,19017
|
|
101
|
+
cosmotech_api/model/workspace_access_control.py,sha256=k3XuF_1-UAxO3Mo4ky8Khcab2C88GWtxdWLneAynxAU,11295
|
|
102
|
+
cosmotech_api/model/workspace_file.py,sha256=J_eACIO2nKYbLa22xyMswwjlraZQOHMTPxUwQeh_obs,11086
|
|
103
|
+
cosmotech_api/model/workspace_role.py,sha256=biDhbbBoRe6e2HXkebDxulUGDO1G84RXN3m9qRVwsKU,11092
|
|
104
|
+
cosmotech_api/model/workspace_secret.py,sha256=u4Bh7OtQipnu6Z6x-ZJquxJTMSqHCnk-WLoNw1P6rsQ,11196
|
|
105
|
+
cosmotech_api/model/workspace_security.py,sha256=YZGiG3tC7pGUxOXh3hu8ww1hQjraTamO4lIQtBzuQGk,11932
|
|
106
|
+
cosmotech_api/model/workspace_solution.py,sha256=yII6jU-2tnKe98ObMtN6nNB_1URPqtAq_rGT9YcCJNw,12148
|
|
107
|
+
cosmotech_api/model/workspace_user.py,sha256=mXozfwgXUZQ62TVezLi66J_escMGOJzR3brKz_Kay6I,11653
|
|
108
|
+
cosmotech_api/model/workspace_web_app.py,sha256=hlH882Iqmpb2xp9v1_OZ8nEYZn27y6BMFwNY3ZlYWAo,12037
|
|
109
|
+
cosmotech_api/models/__init__.py,sha256=Ugn35O9QheOikIe3c5DzRuBNx9m_omfUo9QY0UqmxzY,6147
|
|
110
|
+
cosmotech_api-3.0.9.dev0.dist-info/LICENSE,sha256=3WIX4TWBzkdiuP1Yiuv4TzmgFUpd_Nu9R-C4a4U6ijo,1134
|
|
111
|
+
cosmotech_api-3.0.9.dev0.dist-info/METADATA,sha256=20d-y2R8hVwaOJyLbgryi1A7hYhUj02ZIAPCgtQMDZQ,400
|
|
112
|
+
cosmotech_api-3.0.9.dev0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
113
|
+
cosmotech_api-3.0.9.dev0.dist-info/top_level.txt,sha256=wv9-Z7Kc5Uxdc-ZChExKN0TSbyrEU7FHipDjAyybBlw,14
|
|
114
|
+
cosmotech_api-3.0.9.dev0.dist-info/RECORD,,
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
cosmotech_api/__init__.py,sha256=1mz_qJ1P--m12pnkezRBIG7KWia9LbHrXmBydmMw-Ao,736
|
|
2
|
-
cosmotech_api/api_client.py,sha256=KurEUQ6pIBt5Ia1vBt2X9AmJKLc41_NvhqgE863CVJE,37653
|
|
3
|
-
cosmotech_api/configuration.py,sha256=GzJHPVsrXCP5WNfEGMc1yZ1SCgUKUcK0HxQxaCzBg0U,16758
|
|
4
|
-
cosmotech_api/exceptions.py,sha256=cV5XskaD0FbsqqcK7_cczpffnxPtzyXf56NrJXo35J0,5066
|
|
5
|
-
cosmotech_api/model_utils.py,sha256=O2rtTmgFHBYCbd26jn3fDLWGMEn9ff4QyazJzsmxX1c,82071
|
|
6
|
-
cosmotech_api/rest.py,sha256=aIPAXFipxAhH5uq_KRsIERUHVbETRM8mUZJ3e34e2pY,14189
|
|
7
|
-
cosmotech_api/api/__init__.py,sha256=j0YjaWa-mhP94dpnA6Rga8BSw_i5Zdx25sNMPNRUb64,219
|
|
8
|
-
cosmotech_api/api/connector_api.py,sha256=ChDgNnQMruFBh-qtI8SkScXK-Eo_3BHctPrOQKe2R9U,24324
|
|
9
|
-
cosmotech_api/api/dataset_api.py,sha256=pOXlURyIU7wZjk7F0r95P9ZpmkkJ_yp5CJRdVubGKpg,54209
|
|
10
|
-
cosmotech_api/api/organization_api.py,sha256=MYeioncAFohUIjemxfhv4yEYrB-c-X7G26oao7j4pTU,92967
|
|
11
|
-
cosmotech_api/api/scenario_api.py,sha256=UgoCORHpLxk6mtS0Gs-EOCG1xY9boH64HIW7LMDBLuE,135369
|
|
12
|
-
cosmotech_api/api/scenariorun_api.py,sha256=XajszV9a2TtesJwo81fgoQRuAlR_A5IHRJwELY5cNoE,83628
|
|
13
|
-
cosmotech_api/api/solution_api.py,sha256=mqbaEBvmHWBF3-JD4cWWzgYR7g21a8R6Fhx0lRtSAYc,89628
|
|
14
|
-
cosmotech_api/api/twingraph_api.py,sha256=D0uayJAnYqMVWvGhzCBCeRIf0PbGWwp0OULybfvaF28,85025
|
|
15
|
-
cosmotech_api/api/user_api.py,sha256=nDpf7DfOsyRgWctFRqy2uuR9qNQBGcNm8Ck9URNBBbE,46553
|
|
16
|
-
cosmotech_api/api/validator_api.py,sha256=b7tte9GGxXAwsTzGK-IAY5WZZiuOnemrS5NlckoEisY,48795
|
|
17
|
-
cosmotech_api/api/workspace_api.py,sha256=YUqrDcdon1-kcktC6ppmP58YGqnrqeoWJ6_tD3x4Gks,110595
|
|
18
|
-
cosmotech_api/apis/__init__.py,sha256=Ys509ZuGJOu4j5i6IZOZZzuPnpZq6mXhGi6-W7APqhs,932
|
|
19
|
-
cosmotech_api/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
|
|
20
|
-
cosmotech_api/model/component_role_permissions.py,sha256=2ZTjmhNar1scBH078Ob_xZcvI32vjT-fnSjoMCNg0Dc,11289
|
|
21
|
-
cosmotech_api/model/connector.py,sha256=NijL_Sl5XA1CdkwGOqNQkm18VFTLymedH0c738Sym5E,15382
|
|
22
|
-
cosmotech_api/model/connector_parameter.py,sha256=JTZi9q7LX_2kVKgEUL38Xn518uEsbXTAmWGcWwFB0rc,12495
|
|
23
|
-
cosmotech_api/model/connector_parameter_group.py,sha256=7hyWEmAVT13CcIrB3cR3yPM2X_pxnYIIC1brmr51U_U,11970
|
|
24
|
-
cosmotech_api/model/container_resource_size_info.py,sha256=6Lv2KWUstHMQWV-zlKi0m0qYLdY3Jk27NiMVf7qCoX0,11365
|
|
25
|
-
cosmotech_api/model/container_resource_sizing.py,sha256=A1AmugrtHzF44irvXlu3zInGwSC4r-m6-WpiR-RW-H0,11698
|
|
26
|
-
cosmotech_api/model/dataset.py,sha256=R2CMPlf9pgSYpxQXic0_JB_SRzcE8a4XjBNcQD-MCQA,13966
|
|
27
|
-
cosmotech_api/model/dataset_compatibility.py,sha256=TC0kRuyQJewRU34wy-wCWIOyUftiYDUe8nQnH-JXo34,11972
|
|
28
|
-
cosmotech_api/model/dataset_connector.py,sha256=_M_pzIKy14g-D3QCpGWXCIrQ6nhZaePWeq8qcKsJk98,11776
|
|
29
|
-
cosmotech_api/model/dataset_copy_parameters.py,sha256=_QbDVvubjjgopaUc0N0Zq0vMfU1wgnY8mthA3enZPck,11825
|
|
30
|
-
cosmotech_api/model/dataset_search.py,sha256=GHHhwfKzNpn1QyROScUDaKkQli4h7tHUpXpw9Cn4w4A,11209
|
|
31
|
-
cosmotech_api/model/delete_historical_data.py,sha256=4oGKG2HadxhMu4N8ilauJ2Ef6BgEWJEfcuxvNh_0n9M,12174
|
|
32
|
-
cosmotech_api/model/graph_properties.py,sha256=pY1xj-1SYI5UJM6xArzorX4JelcfSp1iQfaKrab3OOY,12120
|
|
33
|
-
cosmotech_api/model/organization.py,sha256=11ZsJ8u5yJNvCOy6tGkgSimI-AE5eBG3R7UK0qL3VHI,12554
|
|
34
|
-
cosmotech_api/model/organization_access_control.py,sha256=DvQt7S6EeEaSHenFmy1_KR9d9DKnlYPV2GrA4uS5YAc,11304
|
|
35
|
-
cosmotech_api/model/organization_role.py,sha256=1KtbN5H_xVVyB0O4Y6viCTtguuyev4AHUedcg_lV8V8,11107
|
|
36
|
-
cosmotech_api/model/organization_security.py,sha256=8J1YNPDvpp3Fk7lnwLbYJpDwnE_ztfjxq_ZswV0tAwQ,11968
|
|
37
|
-
cosmotech_api/model/organization_service.py,sha256=jy5Pcw75UY6rO3lYesy_k5eHRPRwns7fdKlTu00RsL4,12598
|
|
38
|
-
cosmotech_api/model/organization_services.py,sha256=yUGEv444izOW-vwrunbNIqTN0Ct9Mrx9Awcw8Q6prKY,12277
|
|
39
|
-
cosmotech_api/model/organization_user.py,sha256=uEbQkV3aAIHNuUt1MXZnc3lWnwGJou6C3kg0fJ_0m7c,11802
|
|
40
|
-
cosmotech_api/model/resource_size_info.py,sha256=mOQ7mSoSJXimqT_CH_kooKROgr4Zf1bOvov_vfN0UpE,11338
|
|
41
|
-
cosmotech_api/model/run_template.py,sha256=wcn4k9u0Q_gmFgRkqXxqRDT3iTeKB39foSB3DG1Et6M,22526
|
|
42
|
-
cosmotech_api/model/run_template_handler_id.py,sha256=5asr1RxPCWHs3DSrIYTnac32V3CGNQqOnZjVYLYizdg,12199
|
|
43
|
-
cosmotech_api/model/run_template_parameter.py,sha256=gmD2I6AT-9CqVsORs-J39y1h9vZN6UXz9GQH6em_pNY,13435
|
|
44
|
-
cosmotech_api/model/run_template_parameter_group.py,sha256=mXhy3tshf0cm8b9kCmb_WK-Q56e9vir6971kn1aXTyw,12790
|
|
45
|
-
cosmotech_api/model/run_template_parameter_value.py,sha256=qQCcBCAJT_Tt1bCoNOrQQ9KwN48ceYq1UCRqxStPtxU,11735
|
|
46
|
-
cosmotech_api/model/run_template_resource_sizing.py,sha256=Hbu0MSLnE-kjKo6bLb-5ybOul7fTJNulJLK2CHSEpyE,11613
|
|
47
|
-
cosmotech_api/model/run_template_step_source.py,sha256=pG_6sNpgGMfoDHeLwxHNT0DApo-NQLvaXmOCMEs-N-0,11852
|
|
48
|
-
cosmotech_api/model/scenario.py,sha256=1zeKisH8uBzuhH1CNuJicZTNm607d011v1IDCi6m_hA,19748
|
|
49
|
-
cosmotech_api/model/scenario_access_control.py,sha256=I6k7Q36WMhWhXiY3DFZ2oA6CGyAYhHsLIFBv7qj9ITg,11292
|
|
50
|
-
cosmotech_api/model/scenario_changed_parameter_value.py,sha256=iq6sdirPIwebrvgSjVPoIUGUsTfoR1BdEYk6tGvKpFU,12167
|
|
51
|
-
cosmotech_api/model/scenario_comparison_result.py,sha256=uvEu66fgF2yT4DnswGrE04Xbpgq3X-mp3_oRtkDiT3g,12325
|
|
52
|
-
cosmotech_api/model/scenario_data_download_info.py,sha256=0r61PtlO6RNbFBVk2IRSeJBdtdT9YFXHnFe8lUXR1QE,11544
|
|
53
|
-
cosmotech_api/model/scenario_data_download_job.py,sha256=g0It9URvMahloH8qLt7PIeqCqBMKbfstYJuYZzNnhsU,11146
|
|
54
|
-
cosmotech_api/model/scenario_job_state.py,sha256=5xiiYxU1Y0ARwfKfG1KQ3i5Yd8R7z6m-WntetKG1RzI,12067
|
|
55
|
-
cosmotech_api/model/scenario_last_run.py,sha256=CWgoc2qThC3Uy0Dlw-a8yHZj4R2X68rj9JV7uAkgZJg,11973
|
|
56
|
-
cosmotech_api/model/scenario_resource_sizing.py,sha256=72zthzqdhcuO82EHgLf-cTJHtWSClSMMitAucPl63H8,11604
|
|
57
|
-
cosmotech_api/model/scenario_role.py,sha256=Ri_NfVfuJoVJxSvGZA6KOrPsfaoKM65dT6gIBOFvlmY,11087
|
|
58
|
-
cosmotech_api/model/scenario_run.py,sha256=AKRlyQSjJnKHtuu4Srvp_z4fTjjJVnnL9_5Jr1v6v-E,19510
|
|
59
|
-
cosmotech_api/model/scenario_run_container.py,sha256=8M7aZDBRPspskUBejK_nNPE5-Xo0KPtDjXbhR_TE8tA,14707
|
|
60
|
-
cosmotech_api/model/scenario_run_container_artifact.py,sha256=hikIEpRFWiGuUsXMJraJJPLiBqUMu7DGdZ7DQSGIt24,11369
|
|
61
|
-
cosmotech_api/model/scenario_run_container_logs.py,sha256=FAd3xSRrSjo_Wh2Yb-1QGY92I0rs2tOYAcliau_K7Gg,12045
|
|
62
|
-
cosmotech_api/model/scenario_run_logs.py,sha256=ZvaZ2Bkn3e-84FragvkJpt3Zp-iBawnCaPDGlKXKZXQ,11760
|
|
63
|
-
cosmotech_api/model/scenario_run_search.py,sha256=rhUeRqDgGCwq3rm-pzWQpgCNReVEz7cePuWxFUGvurg,13625
|
|
64
|
-
cosmotech_api/model/scenario_run_start_containers.py,sha256=IU-llgKYQcOi4l1QTEWYbGOwAguosPZ4I1JZpIuVKkQ,12673
|
|
65
|
-
cosmotech_api/model/scenario_run_state.py,sha256=1hEhBl9xiw7htTCbkEjTQLMhAdI9HxHRmzvMJnzzb2A,12185
|
|
66
|
-
cosmotech_api/model/scenario_run_status.py,sha256=b97UCgH33d13G-KxFfE-A17WhSn3qjEWKr5SyT0UDPo,14603
|
|
67
|
-
cosmotech_api/model/scenario_run_status_node.py,sha256=YSqb_nSMoNZ5XKjSaJ2VCLG5xsPaNqNrKTWHO1On_Ho,13660
|
|
68
|
-
cosmotech_api/model/scenario_run_template_parameter_value.py,sha256=XEHCdnbn9P2wv8A0LEiUc2Y3eKCbA4mk68jOZyYpr7M,12121
|
|
69
|
-
cosmotech_api/model/scenario_security.py,sha256=-OnviJ9qYDruUKElQAjFPGCzACZ4IhpLWtMrj8TcdXA,11920
|
|
70
|
-
cosmotech_api/model/scenario_user.py,sha256=fwUoU4KrUuE-1b9SHcds92ZfnLdYdwZ5S7oA6DPrvtA,11622
|
|
71
|
-
cosmotech_api/model/scenario_validation_status.py,sha256=a54hTC3pLgBVxvnKw7OmJRu7owz5FNCl9BTpSE5_9t4,11893
|
|
72
|
-
cosmotech_api/model/solution.py,sha256=qTtt2hu5w2Fz5_ckl4u3OGVIki7TNpbmxasrpcTjB8c,15830
|
|
73
|
-
cosmotech_api/model/source_info.py,sha256=F_r0edfK7X_rgKishpoItjhhvoAivX7d2jnLdlWgbhw,12123
|
|
74
|
-
cosmotech_api/model/translated_labels.py,sha256=OUz3rwJ3Dfe9dl3lAOcwXbWoEm2SPEf8drH_TG8pfDo,10786
|
|
75
|
-
cosmotech_api/model/twin_graph_batch_result.py,sha256=dnRg544BRuA1jNoFlDFz71Mh0APtEjmMc4Ks3iTsUko,11679
|
|
76
|
-
cosmotech_api/model/twin_graph_hash.py,sha256=CCHk9gSBPZxekohFCaKA7DYK_-qzIrAYRBSxq9DqN78,11058
|
|
77
|
-
cosmotech_api/model/twin_graph_import.py,sha256=Pacc4uWURLbil-uRplEjuuSUM_kMXGFOSCUAdXTuwm8,12037
|
|
78
|
-
cosmotech_api/model/twin_graph_import_info.py,sha256=ZRbe7W6oH_uZLlx6-iovLTDgmdXGR6L6S2pYwPxCRLw,11326
|
|
79
|
-
cosmotech_api/model/twin_graph_query.py,sha256=3wBwrv30JW4g-lA_ImJ_qyyTvIOq3NSxWoJKOanjFhc,11359
|
|
80
|
-
cosmotech_api/model/user.py,sha256=t5ZSJj5Wvlkr3psmG_dB_X1jFqeXFLz6gqEjPoYoSTg,12198
|
|
81
|
-
cosmotech_api/model/user_organization.py,sha256=Z0wzJcYeezRhUEkXyvP1bqJ0160lp4UjDMNgzaVvyTg,12059
|
|
82
|
-
cosmotech_api/model/user_workspace.py,sha256=FJWXxVXgQuus6kF6__42qfCD3OBQSC0E3roJW8E8_MA,11574
|
|
83
|
-
cosmotech_api/model/validator.py,sha256=yaD3-SiMN4vQfQJv5jHmfPiIKBPiVpcq5X0i1Jy-Q8U,13046
|
|
84
|
-
cosmotech_api/model/validator_run.py,sha256=CICi41lEpGM29KML9TCIfWn2Ip5qi99sX5k7JubiPSQ,13299
|
|
85
|
-
cosmotech_api/model/workspace.py,sha256=C_7OEsHqOu33C4rwByUYbNvtrR30qDPDaAbaDB8PGh0,19017
|
|
86
|
-
cosmotech_api/model/workspace_access_control.py,sha256=Jpj_yaDa_HezXqevFu1fQBtqjHGGjkHE-IMpHapkK1c,11295
|
|
87
|
-
cosmotech_api/model/workspace_file.py,sha256=0Lvyrs5PtD_WugkU8HLkqvhKnuu-FrAWtQYNlGClLZM,11086
|
|
88
|
-
cosmotech_api/model/workspace_role.py,sha256=QTEWuKbG7xQWEioMjsg1CJCk6ldws--sDA2DyvxWM6s,11092
|
|
89
|
-
cosmotech_api/model/workspace_secret.py,sha256=H1zA3yA4jNxxhEe4Fl0v5XyfXgCmsViuDcHyCKaZH24,11196
|
|
90
|
-
cosmotech_api/model/workspace_security.py,sha256=mbtGMvJ13Mb8USY5jLEExDw4tFfhz5kSoB48q98QBKU,11932
|
|
91
|
-
cosmotech_api/model/workspace_solution.py,sha256=L5keP9fAbtS-Y_o5H4tfvb9MUM4bGFDAYVFCMSrOrgM,12148
|
|
92
|
-
cosmotech_api/model/workspace_user.py,sha256=mXozfwgXUZQ62TVezLi66J_escMGOJzR3brKz_Kay6I,11653
|
|
93
|
-
cosmotech_api/model/workspace_web_app.py,sha256=XkQswtjiU3_V9WnRtiKPgad0H6JMIPR2w2mYTHNldyk,12037
|
|
94
|
-
cosmotech_api/models/__init__.py,sha256=52R-7zsvgWzkyRACodudYJEqb3UyTOgsw540ZCJLSI0,5261
|
|
95
|
-
cosmotech_api-2.4.1.dist-info/LICENSE,sha256=3WIX4TWBzkdiuP1Yiuv4TzmgFUpd_Nu9R-C4a4U6ijo,1134
|
|
96
|
-
cosmotech_api-2.4.1.dist-info/METADATA,sha256=elamW3EKJwqrA0S4C5rtGWs3vF3uOcRw9Cykgx8TovI,397
|
|
97
|
-
cosmotech_api-2.4.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
98
|
-
cosmotech_api-2.4.1.dist-info/top_level.txt,sha256=wv9-Z7Kc5Uxdc-ZChExKN0TSbyrEU7FHipDjAyybBlw,14
|
|
99
|
-
cosmotech_api-2.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|