cosmotech-api 3.2.0__2-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 +153 -0
- cosmotech_api/api/__init__.py +14 -0
- cosmotech_api/api/connector_api.py +1351 -0
- cosmotech_api/api/dataset_api.py +9148 -0
- cosmotech_api/api/organization_api.py +4692 -0
- cosmotech_api/api/run_api.py +2227 -0
- cosmotech_api/api/runner_api.py +4551 -0
- cosmotech_api/api/scenario_api.py +6688 -0
- cosmotech_api/api/scenariorun_api.py +4092 -0
- cosmotech_api/api/scenariorunresult_api.py +704 -0
- cosmotech_api/api/solution_api.py +6472 -0
- cosmotech_api/api/twingraph_api.py +4201 -0
- cosmotech_api/api/user_api.py +1291 -0
- cosmotech_api/api/validator_api.py +2566 -0
- cosmotech_api/api/workspace_api.py +6123 -0
- cosmotech_api/api_client.py +759 -0
- cosmotech_api/api_response.py +21 -0
- cosmotech_api/apis/__init__.py +28 -0
- cosmotech_api/configuration.py +453 -0
- cosmotech_api/exceptions.py +200 -0
- cosmotech_api/model/__init__.py +5 -0
- cosmotech_api/model/component_role_permissions.py +260 -0
- cosmotech_api/model/connector.py +330 -0
- cosmotech_api/model/connector_parameter.py +284 -0
- cosmotech_api/model/connector_parameter_group.py +280 -0
- cosmotech_api/model/container_resource_size_info.py +268 -0
- cosmotech_api/model/container_resource_sizing.py +274 -0
- cosmotech_api/model/dataset.py +376 -0
- cosmotech_api/model/dataset_access_control.py +268 -0
- cosmotech_api/model/dataset_compatibility.py +270 -0
- cosmotech_api/model/dataset_connector.py +268 -0
- cosmotech_api/model/dataset_copy_parameters.py +264 -0
- cosmotech_api/model/dataset_role.py +262 -0
- cosmotech_api/model/dataset_search.py +262 -0
- cosmotech_api/model/dataset_security.py +274 -0
- cosmotech_api/model/dataset_source_type.py +287 -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 +272 -0
- cosmotech_api/model/file_upload_metadata.py +260 -0
- cosmotech_api/model/file_upload_validation.py +266 -0
- cosmotech_api/model/graph_properties.py +272 -0
- cosmotech_api/model/organization.py +282 -0
- cosmotech_api/model/organization_access_control.py +268 -0
- cosmotech_api/model/organization_role.py +262 -0
- cosmotech_api/model/organization_security.py +274 -0
- cosmotech_api/model/organization_service.py +272 -0
- cosmotech_api/model/organization_services.py +270 -0
- cosmotech_api/model/organization_user.py +277 -0
- cosmotech_api/model/resource_size_info.py +268 -0
- cosmotech_api/model/run.py +351 -0
- cosmotech_api/model/run_container.py +318 -0
- cosmotech_api/model/run_container_artifact.py +260 -0
- cosmotech_api/model/run_container_logs.py +272 -0
- cosmotech_api/model/run_logs.py +268 -0
- cosmotech_api/model/run_resource_requested.py +260 -0
- cosmotech_api/model/run_search.py +296 -0
- cosmotech_api/model/run_start_containers.py +286 -0
- cosmotech_api/model/run_state.py +285 -0
- cosmotech_api/model/run_status.py +316 -0
- cosmotech_api/model/run_status_node.py +307 -0
- cosmotech_api/model/run_template.py +408 -0
- cosmotech_api/model/run_template_handler_id.py +287 -0
- cosmotech_api/model/run_template_orchestrator.py +283 -0
- cosmotech_api/model/run_template_parameter.py +296 -0
- cosmotech_api/model/run_template_parameter_group.py +288 -0
- cosmotech_api/model/run_template_parameter_value.py +273 -0
- cosmotech_api/model/run_template_resource_sizing.py +274 -0
- cosmotech_api/model/run_template_step_source.py +285 -0
- cosmotech_api/model/runner.py +379 -0
- cosmotech_api/model/runner_access_control.py +268 -0
- cosmotech_api/model/runner_changed_parameter_value.py +272 -0
- cosmotech_api/model/runner_comparison_result.py +273 -0
- cosmotech_api/model/runner_data_download_info.py +267 -0
- cosmotech_api/model/runner_data_download_job.py +257 -0
- cosmotech_api/model/runner_job_state.py +287 -0
- cosmotech_api/model/runner_last_run.py +268 -0
- cosmotech_api/model/runner_resource_sizing.py +274 -0
- cosmotech_api/model/runner_role.py +262 -0
- cosmotech_api/model/runner_run_template_parameter_value.py +277 -0
- cosmotech_api/model/runner_security.py +274 -0
- cosmotech_api/model/runner_validation_status.py +285 -0
- cosmotech_api/model/scenario.py +379 -0
- cosmotech_api/model/scenario_access_control.py +268 -0
- cosmotech_api/model/scenario_changed_parameter_value.py +272 -0
- cosmotech_api/model/scenario_comparison_result.py +273 -0
- cosmotech_api/model/scenario_data_download_info.py +267 -0
- cosmotech_api/model/scenario_data_download_job.py +257 -0
- cosmotech_api/model/scenario_job_state.py +287 -0
- cosmotech_api/model/scenario_last_run.py +268 -0
- cosmotech_api/model/scenario_resource_sizing.py +274 -0
- cosmotech_api/model/scenario_role.py +262 -0
- cosmotech_api/model/scenario_run.py +369 -0
- cosmotech_api/model/scenario_run_container.py +318 -0
- cosmotech_api/model/scenario_run_container_artifact.py +260 -0
- cosmotech_api/model/scenario_run_container_logs.py +272 -0
- cosmotech_api/model/scenario_run_logs.py +268 -0
- 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 +296 -0
- cosmotech_api/model/scenario_run_start_containers.py +286 -0
- cosmotech_api/model/scenario_run_state.py +287 -0
- cosmotech_api/model/scenario_run_status.py +308 -0
- cosmotech_api/model/scenario_run_status_node.py +307 -0
- cosmotech_api/model/scenario_run_template_parameter_value.py +277 -0
- cosmotech_api/model/scenario_security.py +274 -0
- cosmotech_api/model/scenario_user.py +277 -0
- cosmotech_api/model/scenario_validation_status.py +285 -0
- cosmotech_api/model/solution.py +335 -0
- 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 +274 -0
- cosmotech_api/model/sub_dataset_graph_query.py +268 -0
- cosmotech_api/model/translated_labels.py +252 -0
- cosmotech_api/model/twin_graph_batch_result.py +274 -0
- cosmotech_api/model/twin_graph_hash.py +256 -0
- cosmotech_api/model/twin_graph_import.py +278 -0
- cosmotech_api/model/twin_graph_import_info.py +260 -0
- cosmotech_api/model/twin_graph_query.py +266 -0
- cosmotech_api/model/user.py +281 -0
- cosmotech_api/model/user_organization.py +275 -0
- cosmotech_api/model/user_workspace.py +266 -0
- cosmotech_api/model/validator.py +295 -0
- cosmotech_api/model/validator_run.py +302 -0
- cosmotech_api/model/workspace.py +351 -0
- cosmotech_api/model/workspace_access_control.py +268 -0
- cosmotech_api/model/workspace_file.py +256 -0
- cosmotech_api/model/workspace_role.py +262 -0
- cosmotech_api/model/workspace_secret.py +256 -0
- cosmotech_api/model/workspace_security.py +274 -0
- cosmotech_api/model/workspace_solution.py +264 -0
- cosmotech_api/model/workspace_user.py +278 -0
- cosmotech_api/model/workspace_web_app.py +270 -0
- cosmotech_api/model_utils.py +2038 -0
- cosmotech_api/models/__init__.py +127 -0
- cosmotech_api/models/component_role_permissions.py +90 -0
- cosmotech_api/models/connector.py +135 -0
- cosmotech_api/models/connector_parameter.py +98 -0
- cosmotech_api/models/connector_parameter_group.py +100 -0
- cosmotech_api/models/container_resource_size_info.py +90 -0
- cosmotech_api/models/container_resource_sizing.py +97 -0
- cosmotech_api/models/dataset.py +195 -0
- cosmotech_api/models/dataset_access_control.py +90 -0
- cosmotech_api/models/dataset_compatibility.py +92 -0
- cosmotech_api/models/dataset_connector.py +94 -0
- cosmotech_api/models/dataset_copy_parameters.py +92 -0
- cosmotech_api/models/dataset_role.py +88 -0
- cosmotech_api/models/dataset_search.py +88 -0
- cosmotech_api/models/dataset_security.py +98 -0
- cosmotech_api/models/dataset_source_type.py +42 -0
- cosmotech_api/models/dataset_twin_graph_hash.py +88 -0
- cosmotech_api/models/dataset_twin_graph_info.py +92 -0
- cosmotech_api/models/dataset_twin_graph_query.py +88 -0
- cosmotech_api/models/delete_historical_data.py +92 -0
- cosmotech_api/models/file_upload_metadata.py +90 -0
- cosmotech_api/models/file_upload_validation.py +105 -0
- cosmotech_api/models/graph_properties.py +96 -0
- cosmotech_api/models/organization.py +108 -0
- cosmotech_api/models/organization_access_control.py +90 -0
- cosmotech_api/models/organization_role.py +88 -0
- cosmotech_api/models/organization_security.py +98 -0
- cosmotech_api/models/organization_service.py +96 -0
- cosmotech_api/models/organization_services.py +99 -0
- cosmotech_api/models/query_result.py +88 -0
- cosmotech_api/models/resource_size_info.py +90 -0
- cosmotech_api/models/run.py +167 -0
- cosmotech_api/models/run_container.py +126 -0
- cosmotech_api/models/run_container_artifact.py +90 -0
- cosmotech_api/models/run_container_logs.py +102 -0
- cosmotech_api/models/run_data.py +92 -0
- cosmotech_api/models/run_data_query.py +88 -0
- cosmotech_api/models/run_logs.py +107 -0
- cosmotech_api/models/run_resource_requested.py +90 -0
- cosmotech_api/models/run_search.py +112 -0
- cosmotech_api/models/run_start_containers.py +104 -0
- cosmotech_api/models/run_state.py +40 -0
- cosmotech_api/models/run_status.py +123 -0
- cosmotech_api/models/run_status_node.py +116 -0
- cosmotech_api/models/run_template.py +164 -0
- cosmotech_api/models/run_template_handler_id.py +42 -0
- cosmotech_api/models/run_template_orchestrator.py +38 -0
- cosmotech_api/models/run_template_parameter.py +102 -0
- cosmotech_api/models/run_template_parameter_group.py +98 -0
- cosmotech_api/models/run_template_parameter_value.py +94 -0
- cosmotech_api/models/run_template_resource_sizing.py +97 -0
- cosmotech_api/models/run_template_step_source.py +40 -0
- cosmotech_api/models/runner.py +188 -0
- cosmotech_api/models/runner_access_control.py +90 -0
- cosmotech_api/models/runner_changed_parameter_value.py +102 -0
- cosmotech_api/models/runner_comparison_result.py +106 -0
- cosmotech_api/models/runner_data_download_info.py +93 -0
- cosmotech_api/models/runner_data_download_job.py +90 -0
- cosmotech_api/models/runner_job_state.py +42 -0
- cosmotech_api/models/runner_last_run.py +94 -0
- cosmotech_api/models/runner_parent_last_run.py +94 -0
- cosmotech_api/models/runner_resource_sizing.py +97 -0
- cosmotech_api/models/runner_role.py +88 -0
- cosmotech_api/models/runner_root_last_run.py +94 -0
- cosmotech_api/models/runner_run_template_parameter_value.py +96 -0
- cosmotech_api/models/runner_security.py +98 -0
- cosmotech_api/models/runner_validation_status.py +40 -0
- cosmotech_api/models/scenario.py +186 -0
- cosmotech_api/models/scenario_access_control.py +90 -0
- cosmotech_api/models/scenario_changed_parameter_value.py +102 -0
- cosmotech_api/models/scenario_comparison_result.py +106 -0
- cosmotech_api/models/scenario_data_download_info.py +93 -0
- cosmotech_api/models/scenario_data_download_job.py +90 -0
- cosmotech_api/models/scenario_job_state.py +42 -0
- cosmotech_api/models/scenario_last_run.py +94 -0
- cosmotech_api/models/scenario_resource_sizing.py +97 -0
- cosmotech_api/models/scenario_role.py +88 -0
- cosmotech_api/models/scenario_run.py +179 -0
- cosmotech_api/models/scenario_run_container.py +126 -0
- cosmotech_api/models/scenario_run_container_artifact.py +90 -0
- cosmotech_api/models/scenario_run_container_logs.py +102 -0
- cosmotech_api/models/scenario_run_logs.py +107 -0
- cosmotech_api/models/scenario_run_resource_requested.py +90 -0
- cosmotech_api/models/scenario_run_result.py +90 -0
- cosmotech_api/models/scenario_run_search.py +112 -0
- cosmotech_api/models/scenario_run_start_containers.py +104 -0
- cosmotech_api/models/scenario_run_state.py +42 -0
- cosmotech_api/models/scenario_run_status.py +119 -0
- cosmotech_api/models/scenario_run_status_node.py +116 -0
- cosmotech_api/models/scenario_run_template_parameter_value.py +96 -0
- cosmotech_api/models/scenario_security.py +98 -0
- cosmotech_api/models/scenario_validation_status.py +40 -0
- cosmotech_api/models/send_run_data_request.py +90 -0
- cosmotech_api/models/solution.py +154 -0
- cosmotech_api/models/solution_access_control.py +90 -0
- cosmotech_api/models/solution_role.py +88 -0
- cosmotech_api/models/solution_security.py +98 -0
- cosmotech_api/models/source_info.py +94 -0
- cosmotech_api/models/sub_dataset_graph_query.py +94 -0
- cosmotech_api/models/twin_graph_batch_result.py +92 -0
- cosmotech_api/models/twin_graph_hash.py +88 -0
- cosmotech_api/models/twin_graph_query.py +90 -0
- cosmotech_api/models/validator.py +106 -0
- cosmotech_api/models/validator_run.py +126 -0
- cosmotech_api/models/workspace.py +142 -0
- cosmotech_api/models/workspace_access_control.py +90 -0
- cosmotech_api/models/workspace_file.py +88 -0
- cosmotech_api/models/workspace_role.py +88 -0
- cosmotech_api/models/workspace_secret.py +88 -0
- cosmotech_api/models/workspace_security.py +98 -0
- cosmotech_api/models/workspace_solution.py +92 -0
- cosmotech_api/models/workspace_web_app.py +92 -0
- cosmotech_api/py.typed +0 -0
- cosmotech_api/rest.py +256 -0
- cosmotech_api-3.2.0.dist-info/LICENSE +17 -0
- cosmotech_api-3.2.0.dist-info/METADATA +18 -0
- cosmotech_api-3.2.0.dist-info/RECORD +255 -0
- cosmotech_api-3.2.0.dist-info/WHEEL +5 -0
- cosmotech_api-3.2.0.dist-info/top_level.txt +1 -0
cosmotech_api/rest.py
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Cosmo Tech Platform API
|
|
5
|
+
|
|
6
|
+
Cosmo Tech Platform API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 3.2.0
|
|
9
|
+
Contact: platform@cosmotech.com
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import io
|
|
17
|
+
import json
|
|
18
|
+
import re
|
|
19
|
+
import ssl
|
|
20
|
+
|
|
21
|
+
import urllib3
|
|
22
|
+
|
|
23
|
+
from cosmotech_api.exceptions import ApiException, ApiValueError
|
|
24
|
+
|
|
25
|
+
SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
|
|
26
|
+
RESTResponseType = urllib3.HTTPResponse
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def is_socks_proxy_url(url):
|
|
30
|
+
if url is None:
|
|
31
|
+
return False
|
|
32
|
+
split_section = url.split("://")
|
|
33
|
+
if len(split_section) < 2:
|
|
34
|
+
return False
|
|
35
|
+
else:
|
|
36
|
+
return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class RESTResponse(io.IOBase):
|
|
40
|
+
|
|
41
|
+
def __init__(self, resp) -> None:
|
|
42
|
+
self.response = resp
|
|
43
|
+
self.status = resp.status
|
|
44
|
+
self.reason = resp.reason
|
|
45
|
+
self.data = None
|
|
46
|
+
|
|
47
|
+
def read(self):
|
|
48
|
+
if self.data is None:
|
|
49
|
+
self.data = self.response.data
|
|
50
|
+
return self.data
|
|
51
|
+
|
|
52
|
+
def getheaders(self):
|
|
53
|
+
"""Returns a dictionary of the response headers."""
|
|
54
|
+
return self.response.headers
|
|
55
|
+
|
|
56
|
+
def getheader(self, name, default=None):
|
|
57
|
+
"""Returns a given response header."""
|
|
58
|
+
return self.response.headers.get(name, default)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class RESTClientObject:
|
|
62
|
+
|
|
63
|
+
def __init__(self, configuration) -> None:
|
|
64
|
+
# urllib3.PoolManager will pass all kw parameters to connectionpool
|
|
65
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
|
|
66
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
|
|
67
|
+
# Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
|
|
68
|
+
|
|
69
|
+
# cert_reqs
|
|
70
|
+
if configuration.verify_ssl:
|
|
71
|
+
cert_reqs = ssl.CERT_REQUIRED
|
|
72
|
+
else:
|
|
73
|
+
cert_reqs = ssl.CERT_NONE
|
|
74
|
+
|
|
75
|
+
pool_args = {
|
|
76
|
+
"cert_reqs": cert_reqs,
|
|
77
|
+
"ca_certs": configuration.ssl_ca_cert,
|
|
78
|
+
"cert_file": configuration.cert_file,
|
|
79
|
+
"key_file": configuration.key_file,
|
|
80
|
+
}
|
|
81
|
+
if configuration.assert_hostname is not None:
|
|
82
|
+
pool_args['assert_hostname'] = (
|
|
83
|
+
configuration.assert_hostname
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
if configuration.retries is not None:
|
|
87
|
+
pool_args['retries'] = configuration.retries
|
|
88
|
+
|
|
89
|
+
if configuration.tls_server_name:
|
|
90
|
+
pool_args['server_hostname'] = configuration.tls_server_name
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
if configuration.socket_options is not None:
|
|
94
|
+
pool_args['socket_options'] = configuration.socket_options
|
|
95
|
+
|
|
96
|
+
if configuration.connection_pool_maxsize is not None:
|
|
97
|
+
pool_args['maxsize'] = configuration.connection_pool_maxsize
|
|
98
|
+
|
|
99
|
+
# https pool manager
|
|
100
|
+
self.pool_manager: urllib3.PoolManager
|
|
101
|
+
|
|
102
|
+
if configuration.proxy:
|
|
103
|
+
if is_socks_proxy_url(configuration.proxy):
|
|
104
|
+
from urllib3.contrib.socks import SOCKSProxyManager
|
|
105
|
+
pool_args["proxy_url"] = configuration.proxy
|
|
106
|
+
pool_args["headers"] = configuration.proxy_headers
|
|
107
|
+
self.pool_manager = SOCKSProxyManager(**pool_args)
|
|
108
|
+
else:
|
|
109
|
+
pool_args["proxy_url"] = configuration.proxy
|
|
110
|
+
pool_args["proxy_headers"] = configuration.proxy_headers
|
|
111
|
+
self.pool_manager = urllib3.ProxyManager(**pool_args)
|
|
112
|
+
else:
|
|
113
|
+
self.pool_manager = urllib3.PoolManager(**pool_args)
|
|
114
|
+
|
|
115
|
+
def request(
|
|
116
|
+
self,
|
|
117
|
+
method,
|
|
118
|
+
url,
|
|
119
|
+
headers=None,
|
|
120
|
+
body=None,
|
|
121
|
+
post_params=None,
|
|
122
|
+
_request_timeout=None
|
|
123
|
+
):
|
|
124
|
+
"""Perform requests.
|
|
125
|
+
|
|
126
|
+
:param method: http request method
|
|
127
|
+
:param url: http request url
|
|
128
|
+
:param headers: http request headers
|
|
129
|
+
:param body: request json body, for `application/json`
|
|
130
|
+
:param post_params: request post parameters,
|
|
131
|
+
`application/x-www-form-urlencoded`
|
|
132
|
+
and `multipart/form-data`
|
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
134
|
+
number provided, it will be total request
|
|
135
|
+
timeout. It can also be a pair (tuple) of
|
|
136
|
+
(connection, read) timeouts.
|
|
137
|
+
"""
|
|
138
|
+
method = method.upper()
|
|
139
|
+
assert method in [
|
|
140
|
+
'GET',
|
|
141
|
+
'HEAD',
|
|
142
|
+
'DELETE',
|
|
143
|
+
'POST',
|
|
144
|
+
'PUT',
|
|
145
|
+
'PATCH',
|
|
146
|
+
'OPTIONS'
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
if post_params and body:
|
|
150
|
+
raise ApiValueError(
|
|
151
|
+
"body parameter cannot be used with post_params parameter."
|
|
152
|
+
)
|
|
153
|
+
|
|
154
|
+
post_params = post_params or {}
|
|
155
|
+
headers = headers or {}
|
|
156
|
+
|
|
157
|
+
timeout = None
|
|
158
|
+
if _request_timeout:
|
|
159
|
+
if isinstance(_request_timeout, (int, float)):
|
|
160
|
+
timeout = urllib3.Timeout(total=_request_timeout)
|
|
161
|
+
elif (
|
|
162
|
+
isinstance(_request_timeout, tuple)
|
|
163
|
+
and len(_request_timeout) == 2
|
|
164
|
+
):
|
|
165
|
+
timeout = urllib3.Timeout(
|
|
166
|
+
connect=_request_timeout[0],
|
|
167
|
+
read=_request_timeout[1]
|
|
168
|
+
)
|
|
169
|
+
|
|
170
|
+
try:
|
|
171
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
|
172
|
+
if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
|
|
173
|
+
|
|
174
|
+
# no content type provided or payload is json
|
|
175
|
+
content_type = headers.get('Content-Type')
|
|
176
|
+
if (
|
|
177
|
+
not content_type
|
|
178
|
+
or re.search('json', content_type, re.IGNORECASE)
|
|
179
|
+
):
|
|
180
|
+
request_body = None
|
|
181
|
+
if body is not None:
|
|
182
|
+
request_body = json.dumps(body)
|
|
183
|
+
r = self.pool_manager.request(
|
|
184
|
+
method,
|
|
185
|
+
url,
|
|
186
|
+
body=request_body,
|
|
187
|
+
timeout=timeout,
|
|
188
|
+
headers=headers,
|
|
189
|
+
preload_content=False
|
|
190
|
+
)
|
|
191
|
+
elif content_type == 'application/x-www-form-urlencoded':
|
|
192
|
+
r = self.pool_manager.request(
|
|
193
|
+
method,
|
|
194
|
+
url,
|
|
195
|
+
fields=post_params,
|
|
196
|
+
encode_multipart=False,
|
|
197
|
+
timeout=timeout,
|
|
198
|
+
headers=headers,
|
|
199
|
+
preload_content=False
|
|
200
|
+
)
|
|
201
|
+
elif content_type == 'multipart/form-data':
|
|
202
|
+
# must del headers['Content-Type'], or the correct
|
|
203
|
+
# Content-Type which generated by urllib3 will be
|
|
204
|
+
# overwritten.
|
|
205
|
+
del headers['Content-Type']
|
|
206
|
+
r = self.pool_manager.request(
|
|
207
|
+
method,
|
|
208
|
+
url,
|
|
209
|
+
fields=post_params,
|
|
210
|
+
encode_multipart=True,
|
|
211
|
+
timeout=timeout,
|
|
212
|
+
headers=headers,
|
|
213
|
+
preload_content=False
|
|
214
|
+
)
|
|
215
|
+
# Pass a `string` parameter directly in the body to support
|
|
216
|
+
# other content types than JSON when `body` argument is
|
|
217
|
+
# provided in serialized form.
|
|
218
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
|
219
|
+
r = self.pool_manager.request(
|
|
220
|
+
method,
|
|
221
|
+
url,
|
|
222
|
+
body=body,
|
|
223
|
+
timeout=timeout,
|
|
224
|
+
headers=headers,
|
|
225
|
+
preload_content=False
|
|
226
|
+
)
|
|
227
|
+
elif headers['Content-Type'] == 'text/plain' and isinstance(body, bool):
|
|
228
|
+
request_body = "true" if body else "false"
|
|
229
|
+
r = self.pool_manager.request(
|
|
230
|
+
method,
|
|
231
|
+
url,
|
|
232
|
+
body=request_body,
|
|
233
|
+
preload_content=False,
|
|
234
|
+
timeout=timeout,
|
|
235
|
+
headers=headers)
|
|
236
|
+
else:
|
|
237
|
+
# Cannot generate the request from given parameters
|
|
238
|
+
msg = """Cannot prepare a request message for provided
|
|
239
|
+
arguments. Please check that your arguments match
|
|
240
|
+
declared content type."""
|
|
241
|
+
raise ApiException(status=0, reason=msg)
|
|
242
|
+
# For `GET`, `HEAD`
|
|
243
|
+
else:
|
|
244
|
+
r = self.pool_manager.request(
|
|
245
|
+
method,
|
|
246
|
+
url,
|
|
247
|
+
fields={},
|
|
248
|
+
timeout=timeout,
|
|
249
|
+
headers=headers,
|
|
250
|
+
preload_content=False
|
|
251
|
+
)
|
|
252
|
+
except urllib3.exceptions.SSLError as e:
|
|
253
|
+
msg = "\n".join([type(e).__name__, str(e)])
|
|
254
|
+
raise ApiException(status=0, reason=msg)
|
|
255
|
+
|
|
256
|
+
return RESTResponse(r)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
=======
|
|
3
|
+
|
|
4
|
+
Copyright 2021-2022 Cosmo Tech
|
|
5
|
+
|
|
6
|
+
You are authorized to use this software following the execution of a specific agreement with Cosmo Tech or with an authorized licensee of Cosmo Tech.
|
|
7
|
+
|
|
8
|
+
Accordingly you should refer to this specific agreement for the purpose of the extent of the use that is permitted. This use shall mainly consist in using, displaying and executing the software for your own needs.
|
|
9
|
+
|
|
10
|
+
Except otherwise provided in the above-mentioned specific agreement:
|
|
11
|
+
- you are not allowed to use this software for commercial purpose or to redistribute it without prior authorization from Cosmo Tech;
|
|
12
|
+
- you are not allowed to copy, duplicate, modify, adapt and translate this software except as authorized under section L122-6-1 of the French Intellectual Property Code;
|
|
13
|
+
- you must not removed this notice or any mention related to the copyright of Cosmo Tech;
|
|
14
|
+
|
|
15
|
+
This software is provided 'as is', without any express or implied warranty towards the users.
|
|
16
|
+
|
|
17
|
+
Any Software generated through the use of the software shall be your own property to the extent this Software does not contain any part of software source code.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: cosmotech-api
|
|
3
|
+
Version: 3.2.0
|
|
4
|
+
Summary: Cosmo Tech Platform API
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: Repository
|
|
7
|
+
Author-email: platform@cosmotech.com
|
|
8
|
+
License: MIT License
|
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Cosmo Tech Platform API
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: urllib3 <2.1.0,>=1.25.3
|
|
13
|
+
Requires-Dist: python-dateutil
|
|
14
|
+
Requires-Dist: pydantic >=2
|
|
15
|
+
Requires-Dist: typing-extensions >=4.7.1
|
|
16
|
+
|
|
17
|
+
Cosmo Tech Platform API
|
|
18
|
+
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
cosmotech_api/__init__.py,sha256=D-1jQl5C_yFaSpfqBOKiVGWYNeUYAQXzTITqjhEE_do,9314
|
|
2
|
+
cosmotech_api/api_client.py,sha256=-5STnWvEH680I0HhdNqIr1ClnCurlD1lzl3MbDkKh2E,25754
|
|
3
|
+
cosmotech_api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
cosmotech_api/configuration.py,sha256=iOBbJmLGvjlBroYUH1i5BiCzFxl88bEXnpRvGCq3LWg,14989
|
|
5
|
+
cosmotech_api/exceptions.py,sha256=rxlBUaZyrKmWxSdKS9U7oC0bou_McNziXYs-GKQVjwc,5941
|
|
6
|
+
cosmotech_api/model_utils.py,sha256=XV4NANDtllLtofudobKzW_Nxq29tl-k3musRpPI705I,82062
|
|
7
|
+
cosmotech_api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
cosmotech_api/rest.py,sha256=htvUwe62mObRiDTlILeSKxJ5kbYgamT0TDrx3Az7W2Y,9200
|
|
9
|
+
cosmotech_api/api/__init__.py,sha256=rAjXh870quC3OH5h_IgeMQluiRwJHdwGqEbDJW6r2oM,602
|
|
10
|
+
cosmotech_api/api/connector_api.py,sha256=CvpC6pO4I1qinS3UZPIJtlhOdvv7V2vSZWiRnNw2qJ0,51467
|
|
11
|
+
cosmotech_api/api/dataset_api.py,sha256=GjWoHqjFbMKEjVCns7b1oGXBths9sc7u07Cvbbp6r0Q,373263
|
|
12
|
+
cosmotech_api/api/organization_api.py,sha256=JRkG_N7bZQkyeUjwlBgAmv3dgWuGdo_kFvpDz65eixc,189243
|
|
13
|
+
cosmotech_api/api/run_api.py,sha256=Nz0d7zN_yLzRiG80EWZc4SIqNZvx8PAPV9T7FJ6Aoho,89677
|
|
14
|
+
cosmotech_api/api/runner_api.py,sha256=k5JxG8tL1wghuBYmBnKCltVPFKjjJRHI1UbGUD9c4Mo,185411
|
|
15
|
+
cosmotech_api/api/scenario_api.py,sha256=EnIrt3bSRrxGdMLdOQDjmfapjMPbFy1SsQ6gMUqlNjg,285579
|
|
16
|
+
cosmotech_api/api/scenariorun_api.py,sha256=to1npyzEXdAR-9QJ0wCOfQwtpdyfDPQLpvIJF0jv9Ho,170682
|
|
17
|
+
cosmotech_api/api/scenariorunresult_api.py,sha256=PfVGNO5m-jS0RJkelTjf3QlkhHMi1WlgOrgdTtxZByw,29237
|
|
18
|
+
cosmotech_api/api/solution_api.py,sha256=pnK7iHdLF3M_KdwylaZ65oBIuzF5FjtKef7tWnoilAc,264555
|
|
19
|
+
cosmotech_api/api/twingraph_api.py,sha256=kD57A1q5J9uz2e7h9F73loZmEuHzKVzHYpnsGbsyrKQ,173275
|
|
20
|
+
cosmotech_api/api/user_api.py,sha256=zSWOMck8FivYJEKFQgm9svV3F7poQbqPK0muNRB6gWA,46554
|
|
21
|
+
cosmotech_api/api/validator_api.py,sha256=NjGS5k430vkUelW6S4uHyV9NBObyB_9QwDUWfbElUpU,102393
|
|
22
|
+
cosmotech_api/api/workspace_api.py,sha256=FGypxj332ZBN6_WOcdNUmmRZ65SMi74yuYsBE4jdTGc,248253
|
|
23
|
+
cosmotech_api/apis/__init__.py,sha256=wm-t-B_k8CX6sba_LInXbT6nIpTvQF8Qqr7O-xU6kTY,1101
|
|
24
|
+
cosmotech_api/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
|
|
25
|
+
cosmotech_api/model/component_role_permissions.py,sha256=VJd8h2FnU28ox4d2MT-ohk72g1U0SEnuc8MFu5s2vvE,11280
|
|
26
|
+
cosmotech_api/model/connector.py,sha256=BDOaP3t7CpWwXN4zM0Hk4oZgYY4U3izGpK_BfGKdGuY,15373
|
|
27
|
+
cosmotech_api/model/connector_parameter.py,sha256=Sn0ScrdcP4vQDcASy2M5WA1FVYLgksOLHZdQiXBoJ9k,12486
|
|
28
|
+
cosmotech_api/model/connector_parameter_group.py,sha256=cdkdlVhRQOqMehu3r5uPW-6lv-LbZBbI02VgbOvStlo,11961
|
|
29
|
+
cosmotech_api/model/container_resource_size_info.py,sha256=HzmUy5vTSHsaOdWQxh2WtqAInlQtGb4ErTcRhE3MBRs,11356
|
|
30
|
+
cosmotech_api/model/container_resource_sizing.py,sha256=DbA-EApXT1lYSEpp4ryQ1fmxA83DFXIuxLVNedY2nqA,11689
|
|
31
|
+
cosmotech_api/model/dataset.py,sha256=AfruJZiNIs3eSZb_zxuSevQr5KKuJjGhbq0Y6hOfe20,18443
|
|
32
|
+
cosmotech_api/model/dataset_access_control.py,sha256=t4a5HG3F0HTvG-TC90hm6zdBMu_i0URBa4jWHVoIl1s,11280
|
|
33
|
+
cosmotech_api/model/dataset_compatibility.py,sha256=G6eakyN-qfEXmyGq_hPxZKqnGbWgcf7hVCWQb7rnelc,11963
|
|
34
|
+
cosmotech_api/model/dataset_connector.py,sha256=8yEj9PuZ7Kdd3rNYCkK7V22bQiqXBbE8fzo9qXSdQLE,11767
|
|
35
|
+
cosmotech_api/model/dataset_copy_parameters.py,sha256=oiqH-oibhbdOaJP_GaJET1ZfcglwkIMH7OJHiZQezew,11816
|
|
36
|
+
cosmotech_api/model/dataset_role.py,sha256=r9pTU-4M-X2fwsP-f0HBBrMjUWXpBMJdYrzNjpXbDiM,11073
|
|
37
|
+
cosmotech_api/model/dataset_search.py,sha256=fuaGkzBNZ1VfutWkgK5vQARuOx-IUhtjpZ6wKG8dCX4,11200
|
|
38
|
+
cosmotech_api/model/dataset_security.py,sha256=s-Xqyni8y1hi1c9fNYCHoVLDxoh_Cfp-9qHQy9GqO7o,11899
|
|
39
|
+
cosmotech_api/model/dataset_source_type.py,sha256=w7dQhx2nqI_V4AihXMSH-dNo78xCXAzTzAHUwsCCfAU,11915
|
|
40
|
+
cosmotech_api/model/dataset_twin_graph_hash.py,sha256=fFuauuHuNKDJd0rglou6B5tiBdTit_JIcdexQHVQll0,11070
|
|
41
|
+
cosmotech_api/model/dataset_twin_graph_info.py,sha256=dDDjgtm8D_VGW9nMSDtZDLrppcxaLDoppMd0mZd1Rss,11534
|
|
42
|
+
cosmotech_api/model/dataset_twin_graph_query.py,sha256=ogdfkIglqqh7gUQdxtwzvB-tzOwcMIF54O2H3MIhNmA,11138
|
|
43
|
+
cosmotech_api/model/delete_historical_data.py,sha256=IXY8CsyCBgnlqFhXGZyg1FG33s_8j-42uLX6CSgnny4,12165
|
|
44
|
+
cosmotech_api/model/file_upload_metadata.py,sha256=NisurN8rT_FbL8WeO5D2wT7iGoVGq-iDl9Cm5mWgT2M,11196
|
|
45
|
+
cosmotech_api/model/file_upload_validation.py,sha256=dJmje1G1TZfKdqfqsSNpReWGWEKF8U-GoRcuVxd2E3c,11671
|
|
46
|
+
cosmotech_api/model/graph_properties.py,sha256=wjqDZ5-GaM2IzMDkUa8pCfOoskKCfgX76wpaHy5qgCs,12111
|
|
47
|
+
cosmotech_api/model/organization.py,sha256=v4dHSXEGGiY1Vk2Q_G9MvBO8OkAl9paE907wsAA4GZo,12545
|
|
48
|
+
cosmotech_api/model/organization_access_control.py,sha256=V4pG0-LPhzdMKRswfZvbxWlUdgk0xy3KQYBuFh3LiRQ,11295
|
|
49
|
+
cosmotech_api/model/organization_role.py,sha256=XMHkFl3R2VMuzN3GtrppgftMPSqMqmD3tlpGYeBuzAI,11098
|
|
50
|
+
cosmotech_api/model/organization_security.py,sha256=BydjnSe0TemFekYyZW5DmXhlZbR39dOqEzhmxqXShks,11959
|
|
51
|
+
cosmotech_api/model/organization_service.py,sha256=en9mP_9sqgweI1zBSuB_9ZgJvrVbZ82JVhYXA_Il1_E,12589
|
|
52
|
+
cosmotech_api/model/organization_services.py,sha256=vysU3UkoQF81qc2Zxajyoh_1YtbWUZ0bC5SA4e_1ynk,12268
|
|
53
|
+
cosmotech_api/model/organization_user.py,sha256=uEbQkV3aAIHNuUt1MXZnc3lWnwGJou6C3kg0fJ_0m7c,11802
|
|
54
|
+
cosmotech_api/model/resource_size_info.py,sha256=LF3rJzSHkIHLQVuV_ptVapwCkghXkdy8M09GTXHf7bY,11329
|
|
55
|
+
cosmotech_api/model/run.py,sha256=yH81QvCjz0iuyhoLzUZPlupZBRRnQsHD9H7ywa16M0Q,17484
|
|
56
|
+
cosmotech_api/model/run_container.py,sha256=DSAZMnWlB8AHr87F9N44a-iDAHlD4FiDBH2LQcWxX_M,14617
|
|
57
|
+
cosmotech_api/model/run_container_artifact.py,sha256=Kn8sHsjzjpxA9uIYa5YYkGwIvHIUPhhokfm87MM367g,11336
|
|
58
|
+
cosmotech_api/model/run_container_logs.py,sha256=JMGvezYSPNfawZ8_0KIdT9v6KEQzsYA-qdevSL7ALyY,12012
|
|
59
|
+
cosmotech_api/model/run_logs.py,sha256=VeJnkwtrJbN5u2sya1Sd2oQEGQovd25LK7NP_7N_nHo,11606
|
|
60
|
+
cosmotech_api/model/run_resource_requested.py,sha256=kYukfUrWWz1uFVK1RnQZue3wzf2w-3Jgty2-FTNh1YI,11289
|
|
61
|
+
cosmotech_api/model/run_search.py,sha256=W6oI2qHsm8kiJH63exJeHjfPezYDcaLhhboCIbuBgIE,13578
|
|
62
|
+
cosmotech_api/model/run_start_containers.py,sha256=aI94pBOEcPUK_KJDbMsmWqGO1TL9NP7XgECg3ZYhexU,12583
|
|
63
|
+
cosmotech_api/model/run_state.py,sha256=JBgqJXBiwqYjdRCuRfaHpNL4tCvqlVjUmD-MY4I7_nA,11790
|
|
64
|
+
cosmotech_api/model/run_status.py,sha256=tPnYvxjq02RgRvamV39Lrd0Y2UVZEM9NkOosI3IG5tc,14879
|
|
65
|
+
cosmotech_api/model/run_status_node.py,sha256=6Ah7qsK6Fv2evdpmSdg93Fght3r4BM3XYUeDyhtVHiU,14443
|
|
66
|
+
cosmotech_api/model/run_template.py,sha256=yLyfYM3U25RI1_hrNgS1wdyToAto57S5pfppz3VOwes,23323
|
|
67
|
+
cosmotech_api/model/run_template_handler_id.py,sha256=3U0bwpwJfDDEYhSIubyXCkdbe7n5gquhwp-xaxlt6yk,12190
|
|
68
|
+
cosmotech_api/model/run_template_orchestrator.py,sha256=VjStRvmmap-bBTv6jJmtqabM4HHt7nWMSRr83bq-AIM,11771
|
|
69
|
+
cosmotech_api/model/run_template_parameter.py,sha256=2cwz2nnZKrF8xExTP_o2xNU6OAo5-poOnWxoAAaLOb4,13426
|
|
70
|
+
cosmotech_api/model/run_template_parameter_group.py,sha256=RsgdqmGDw-laRPJzf7J6ixbbRibVRIH-7vGwU0tOdWI,12781
|
|
71
|
+
cosmotech_api/model/run_template_parameter_value.py,sha256=2QUYKmnoqHibJ0bd_9XUdp-zSUAjBm3O-BAl_1KGSto,11726
|
|
72
|
+
cosmotech_api/model/run_template_resource_sizing.py,sha256=whsVzLjXFOLZZfjpsInOQDtM4h58ZbnzlfdaZM0qZqo,11604
|
|
73
|
+
cosmotech_api/model/run_template_step_source.py,sha256=rYkEGwfd7bP_IVez9q-zxMxEiNA0qD4ZjUyBQeItMFM,11843
|
|
74
|
+
cosmotech_api/model/runner.py,sha256=1MdzXcMbZp95vCEzx9skxSqw7G9AMB0CHHfKZI73BSQ,19619
|
|
75
|
+
cosmotech_api/model/runner_access_control.py,sha256=X249ONPup65AQZGw1GWLtMU23bOZhdtGN33zd2MKg-E,11277
|
|
76
|
+
cosmotech_api/model/runner_changed_parameter_value.py,sha256=WZslUPz9ZQqDz4pweVdnong_08N_96U0LUpDdP-QAwQ,12144
|
|
77
|
+
cosmotech_api/model/runner_comparison_result.py,sha256=5bS_rLzI-OJca0JAEPomOsRjWmAcqcdW2Hhoewuq6QY,12260
|
|
78
|
+
cosmotech_api/model/runner_data_download_info.py,sha256=dZ0nOOKbAaj0-5h6bB-xQt6dWcTeA2TWaT_U_9uFxKc,11511
|
|
79
|
+
cosmotech_api/model/runner_data_download_job.py,sha256=mALUFosrHAABeLkKum2SbMevygSB7CrefmUQCWYYjEY,11127
|
|
80
|
+
cosmotech_api/model/runner_job_state.py,sha256=4okzdaG6nDEcDsrrARvQWrVns_imBWoxwkDXK6g_sPg,12044
|
|
81
|
+
cosmotech_api/model/runner_last_run.py,sha256=ibEaW5lkoEypnw5-9TCc8s4HjoRQUYy5N4uaGgU45II,11944
|
|
82
|
+
cosmotech_api/model/runner_resource_sizing.py,sha256=hxUxOVVgSeKz2YIYf1dOIcUksGTlOchd3ruzmtIpYoQ,11589
|
|
83
|
+
cosmotech_api/model/runner_role.py,sha256=evORhlxSmCon3v2giPuJ9HUL9WEql2LJa9oH4VlfipU,11068
|
|
84
|
+
cosmotech_api/model/runner_run_template_parameter_value.py,sha256=Rx6e5sQ_75LSPOPnSbuzkotG_Kg2JaWuDoRwr0OG-YY,12106
|
|
85
|
+
cosmotech_api/model/runner_security.py,sha256=E57ZYd7AGpSMn69Zql92bfMGt7cb2ZLrGG9cVmMuIOc,11887
|
|
86
|
+
cosmotech_api/model/runner_validation_status.py,sha256=nCpRYXm0FZAk2LAdPpHktp5I7prDuxA7w0KEIXLz6aw,11870
|
|
87
|
+
cosmotech_api/model/scenario.py,sha256=pdNSo53GB3xQX2IQhvgCV4Ev2MZDhNAFgpmnh-yZAwI,19739
|
|
88
|
+
cosmotech_api/model/scenario_access_control.py,sha256=GrrgsVDOfTCRGb1poaAQ25fgqVb12QvxPWedyCcPYuA,11283
|
|
89
|
+
cosmotech_api/model/scenario_changed_parameter_value.py,sha256=YC1MZf4CXTZQOm9IxulUpSc2gM-FNx4VUKd780fdb4g,12158
|
|
90
|
+
cosmotech_api/model/scenario_comparison_result.py,sha256=lmPGbYiTokR7a6YaQhwkF61Pm8bujEntMUrYmXFi4Vw,12316
|
|
91
|
+
cosmotech_api/model/scenario_data_download_info.py,sha256=Xxz_SVcz22PLk_1XgIXCUKjpWdaUJOKeaoAXJ2l8Nns,11535
|
|
92
|
+
cosmotech_api/model/scenario_data_download_job.py,sha256=SuDtUaOPyE_cj_7cKil_tOiUPk-5wPn2K5iDqEpd6ko,11137
|
|
93
|
+
cosmotech_api/model/scenario_job_state.py,sha256=3JWbbGzRPBUWBZcZxFqYuOStYFjb7NDBdI7gQOVvzbo,12058
|
|
94
|
+
cosmotech_api/model/scenario_last_run.py,sha256=j42N6dCGeAOCaaXymlBWRdcxDIV6vt1-hrZ_q_lQq_o,11964
|
|
95
|
+
cosmotech_api/model/scenario_resource_sizing.py,sha256=Cd6m2iVBpTTlSQZ_LrD78LSyXKUX9QdRBuxYvp-bzxk,11595
|
|
96
|
+
cosmotech_api/model/scenario_role.py,sha256=GunV3_ItYr4z0lxqBs3Ld4-oX0rT1to3dLL7wB1ss8k,11078
|
|
97
|
+
cosmotech_api/model/scenario_run.py,sha256=T1Y_W3xOU1O0SIbk6rlH_odidStoOEMBaE7YnjyEb0k,19806
|
|
98
|
+
cosmotech_api/model/scenario_run_container.py,sha256=j0XzHcMyHXOZoTi7Uw8zXTLXdEAeXsh4qRMw3I94UzU,14698
|
|
99
|
+
cosmotech_api/model/scenario_run_container_artifact.py,sha256=Clv-zMiyReFuaA5a7dQJoWJVybOyXeAoEXIB1NUjIN0,11360
|
|
100
|
+
cosmotech_api/model/scenario_run_container_logs.py,sha256=Jb2tw16Om4MMzCddgFbqBbWnLSzsV8YLK4hgx2qxx70,12036
|
|
101
|
+
cosmotech_api/model/scenario_run_logs.py,sha256=WuIaE0i5hC1iqV-FE3rwI2r4lXkEaVFNF3L0JrpD1zE,11751
|
|
102
|
+
cosmotech_api/model/scenario_run_resource_requested.py,sha256=z3EM5Q3reVAZj__M2p8gpWqS-zCCKRWju2ZI3qQZrJU,11313
|
|
103
|
+
cosmotech_api/model/scenario_run_result.py,sha256=CdoZ0oEBws0kZ1ywZ35rbxkF6q_0cWzZiXVUtQ2cTfU,11234
|
|
104
|
+
cosmotech_api/model/scenario_run_search.py,sha256=rcJD0tfS4ySBygswQIT2kETDNdWkZm2gzfQIPc1Ooyg,13616
|
|
105
|
+
cosmotech_api/model/scenario_run_start_containers.py,sha256=AUqa37FYRdortz1XzZklQl1GuIFZgEh1GoXUr9QHvQ0,12664
|
|
106
|
+
cosmotech_api/model/scenario_run_state.py,sha256=1JV0Umq8cQlNRxdytmiIw4mOP7j3jDm5DCnFiuukLXY,12176
|
|
107
|
+
cosmotech_api/model/scenario_run_status.py,sha256=8e-Fol7hjoGS0Y-S0K77iMD6hRcFMH7uJ_Ar_l4jKts,14594
|
|
108
|
+
cosmotech_api/model/scenario_run_status_node.py,sha256=QmsFXD2g0s_i1uSQewn9e35DodEcFTrx-kwnUVts15Y,14540
|
|
109
|
+
cosmotech_api/model/scenario_run_template_parameter_value.py,sha256=ydzdP56f7n72Iy09lxIjWXhFuLxufb7A_hRUNpc1ur0,12112
|
|
110
|
+
cosmotech_api/model/scenario_security.py,sha256=S3Bv3exDuGR1yvofLOEQBGZKt2Qnaf69Al1w6ZHV_S8,11911
|
|
111
|
+
cosmotech_api/model/scenario_user.py,sha256=fwUoU4KrUuE-1b9SHcds92ZfnLdYdwZ5S7oA6DPrvtA,11622
|
|
112
|
+
cosmotech_api/model/scenario_validation_status.py,sha256=9aKA8HIzdUuev3hRFO14Kz51kT0yJSDaEu_aL403B7c,11884
|
|
113
|
+
cosmotech_api/model/solution.py,sha256=SQix3mh77sg9gBs8GAnJI12viY8zL4QYEFTwUCXC9Yg,16771
|
|
114
|
+
cosmotech_api/model/solution_access_control.py,sha256=yuRq0hnVbJHNNwH-xft76NL0xneidZlLFBahCjGMo2c,11283
|
|
115
|
+
cosmotech_api/model/solution_role.py,sha256=lvinZSqQkHFARkejFWxZQ65AUh4njodPuljcKw8vZ-s,11078
|
|
116
|
+
cosmotech_api/model/solution_security.py,sha256=RrKuEbNkSzJsFwww__T8lSWQb24GP4-MbT7_ok2ym9Y,11911
|
|
117
|
+
cosmotech_api/model/source_info.py,sha256=xpzbh9lC13Crz9WaBLtosN7Vio_g0XN00eORtze2gLg,11989
|
|
118
|
+
cosmotech_api/model/sub_dataset_graph_query.py,sha256=WoilnwBUY1w01Hr2dMw082x0jayjY0HxkuuzRCCV6ow,11855
|
|
119
|
+
cosmotech_api/model/translated_labels.py,sha256=CKWyfePs6HKLwN0CXZCT7mapTAq4xINQg_m4-A0qDko,10777
|
|
120
|
+
cosmotech_api/model/twin_graph_batch_result.py,sha256=ZQ4ArpFqIHQbo6W3-8EqyeiJ8539rx5K90d6fkJnP48,11670
|
|
121
|
+
cosmotech_api/model/twin_graph_hash.py,sha256=EspLDSQ5X8Om1FZgU5DesBIb9-4kCPnQkpb2LtVQksM,11049
|
|
122
|
+
cosmotech_api/model/twin_graph_import.py,sha256=jhuv_xpqwps5EKS6NMp_eF0F9-4co0tVtFMvUrfzXDU,12029
|
|
123
|
+
cosmotech_api/model/twin_graph_import_info.py,sha256=P4-_Cb70Z0gNgndpe2ytnxnRnxRJNPLhZFz1O3UROUQ,11318
|
|
124
|
+
cosmotech_api/model/twin_graph_query.py,sha256=HXj0eIqCIXVsyyQ6ft-rWscLnILvKD4mvgiOwGyOeUU,11350
|
|
125
|
+
cosmotech_api/model/user.py,sha256=NkkHMv-FEo0D-L4VneZb4dzHcb-QKGRVdZWsDkSOCAg,12199
|
|
126
|
+
cosmotech_api/model/user_organization.py,sha256=yaaHDVUGfQfRXZui0g_-WD-II6flJL6PTPYp2uQIyYg,12060
|
|
127
|
+
cosmotech_api/model/user_workspace.py,sha256=ygM6s0cPOxtcN_TyoVD3kTW1ktkVkVsiWgl-G7WhZZc,11575
|
|
128
|
+
cosmotech_api/model/validator.py,sha256=N1Bg6Hiv4U6xFkZJegm0f9Uwul27cZx_8riBm6_ZgIo,13037
|
|
129
|
+
cosmotech_api/model/validator_run.py,sha256=bz7dyOgUeaiwogZUCbzJxTIwUfua6wb6iQH5z9GmAlY,13290
|
|
130
|
+
cosmotech_api/model/workspace.py,sha256=Ihj-JVbsooRLJ7-QickltCHRAAOKWZT1ZSer1Z12gM8,20329
|
|
131
|
+
cosmotech_api/model/workspace_access_control.py,sha256=zp0F40mDcY1ZqAxbpe4xS_0PZheMBqFvabMv6TB7BrU,11286
|
|
132
|
+
cosmotech_api/model/workspace_file.py,sha256=sklFHJrQsKEAj40t8eRliCJBvGkStAYEndMDekGplXM,11077
|
|
133
|
+
cosmotech_api/model/workspace_role.py,sha256=97-hic3PtEdmLLbg0_EpvkrzvCA2CHDZ2J0L0lieUHQ,11083
|
|
134
|
+
cosmotech_api/model/workspace_secret.py,sha256=a6kcUEBSJB6eJcbJ6F22KPiL83lebTIFeMN5pPWFMjs,11187
|
|
135
|
+
cosmotech_api/model/workspace_security.py,sha256=Hc0c6TtntcGfjxRiRUtFAzkYRwZuk-RlO9-U-eOKiqk,11923
|
|
136
|
+
cosmotech_api/model/workspace_solution.py,sha256=wejSZFQkJzyr41ZaPOYwX-VA5NUm69MPPLST8Tm2Oms,12139
|
|
137
|
+
cosmotech_api/model/workspace_user.py,sha256=mXozfwgXUZQ62TVezLi66J_escMGOJzR3brKz_Kay6I,11653
|
|
138
|
+
cosmotech_api/model/workspace_web_app.py,sha256=9nAdcyIjRL1qJCuHIvD7suvKKw0Xpm5FnlVcT3P3zx8,12028
|
|
139
|
+
cosmotech_api/models/__init__.py,sha256=v5wZ96HcIWnO-5MYDcOdTuGTSg3aH8wtm5RQLa1CP5g,8225
|
|
140
|
+
cosmotech_api/models/component_role_permissions.py,sha256=0dpQYiEi_czdr8ew_nJVtfdyXPAORJVlyW1U3Bnh390,2613
|
|
141
|
+
cosmotech_api/models/connector.py,sha256=L2Htwz_x19GwCGMhyDxa9EH0AQm7A9hChE8yTyg0I4Y,5959
|
|
142
|
+
cosmotech_api/models/connector_parameter.py,sha256=Zb9s-N2U1rtjT3buCLhHDuwMmFRnXgjIrEuQy5yOFm4,3338
|
|
143
|
+
cosmotech_api/models/connector_parameter_group.py,sha256=I6KgCvgjiS2zZ5ggjiv_0BBfDdmap0riwqG8oNY1xnc,3295
|
|
144
|
+
cosmotech_api/models/container_resource_size_info.py,sha256=SdR9xD35IVK9v4t95kk2bABFkupVok_ZR9DoCQ4DVao,2634
|
|
145
|
+
cosmotech_api/models/container_resource_sizing.py,sha256=OSImVCbsej8c_soVsrHNocSdH67j4tIhilHAjWyX6zQ,3221
|
|
146
|
+
cosmotech_api/models/dataset.py,sha256=RzhBDsGYAycIJBoKua1sdoaHpH-d4kwnfhvQurEQDcw,9439
|
|
147
|
+
cosmotech_api/models/dataset_access_control.py,sha256=or96Rko2Y5OhM2U6EpQGVo0ZFVYYMMaYx9QePVfP_6E,2594
|
|
148
|
+
cosmotech_api/models/dataset_compatibility.py,sha256=7MeVemaMv7H6QG1BaCIf_uJ5mo2hXXUwmoZ5XMBkKNU,3114
|
|
149
|
+
cosmotech_api/models/dataset_connector.py,sha256=CMLql3flb-KXyPqHgmzpaTU4MzXQlA4uQJ3maHX8rPg,2991
|
|
150
|
+
cosmotech_api/models/dataset_copy_parameters.py,sha256=ABhAagRIan_Yi-oVVVrVLeqRisRQGe4g0oZx7NvWZuU,2920
|
|
151
|
+
cosmotech_api/models/dataset_role.py,sha256=vpXK1fiZuy004c2FK8BBiEIzmCuZ5IjqqhgAngMQRF0,2468
|
|
152
|
+
cosmotech_api/models/dataset_search.py,sha256=iZSz0lJsT3OgIlkBfkjXzYvi9gG-lbdqaFfognx1r4Q,2546
|
|
153
|
+
cosmotech_api/models/dataset_security.py,sha256=6jjbThRt4J_YLVPSIMw52vhcVuxNDmuGhSvpYQsc2GA,3308
|
|
154
|
+
cosmotech_api/models/dataset_source_type.py,sha256=-RdlkBrD5xwQ8u4ole6D73icUJ9CXB8Ja9FUQmk4gac,825
|
|
155
|
+
cosmotech_api/models/dataset_twin_graph_hash.py,sha256=6jbYlCo4qucdTGkCOTXCWyGtmxBpa-sq8fg542yOP6I,2535
|
|
156
|
+
cosmotech_api/models/dataset_twin_graph_info.py,sha256=ktyc3f3PAs8r7uMdKtU9ZN82SSVgemd4NC9Sz0MyACQ,2875
|
|
157
|
+
cosmotech_api/models/dataset_twin_graph_query.py,sha256=itBaWTt73pJLDrvGLOwwn-E93RpIxCPziArsIFv8JdY,2535
|
|
158
|
+
cosmotech_api/models/delete_historical_data.py,sha256=WoIKg4blUF-YbhHFygUqc_pZWCLRlRJOWp_v3SdYe5c,3145
|
|
159
|
+
cosmotech_api/models/file_upload_metadata.py,sha256=k5d_n_bnCVoK8I0JrejuX6WH-H2Wz6ENQJKgaIds7Aw,2564
|
|
160
|
+
cosmotech_api/models/file_upload_validation.py,sha256=csJoeFi3sNt9OniBYDjkTtv18emmnBOYjkMU6tzFoQ4,3578
|
|
161
|
+
cosmotech_api/models/graph_properties.py,sha256=sYQ7f3Hh6D8rkRLL3MATOuOau6UOhRebdXj0Lw80_qo,3143
|
|
162
|
+
cosmotech_api/models/organization.py,sha256=IdpAdQT5NvSM_cLURsUVPX0nxAnjfHO31Sv2o7h9_qQ,3804
|
|
163
|
+
cosmotech_api/models/organization_access_control.py,sha256=GzfkREtmTH5feSBuYsiL7C4bU5rH9iTIFXq77ql7PEE,2614
|
|
164
|
+
cosmotech_api/models/organization_role.py,sha256=NedU34RhbpaqVYkYpCw3RB_Dc63DVh0yr3kAhC2go38,2493
|
|
165
|
+
cosmotech_api/models/organization_security.py,sha256=yZLC2QY5L_J8CO36p5YwlLHttlZ3ilYVObiO0OCozhs,3353
|
|
166
|
+
cosmotech_api/models/organization_service.py,sha256=g4LBFzznkRTjG6ee7OyCcNit6MVH-v9k1FO34mgSQLo,3429
|
|
167
|
+
cosmotech_api/models/organization_services.py,sha256=AjGZqIoKoSQzZMfnb_k4yTFtfxqEm-g1gLAE-iAEH1o,3696
|
|
168
|
+
cosmotech_api/models/query_result.py,sha256=TAO8bGf3NmUzFzoOgckCXroRMFHWiBbklS4BovWMcSg,2522
|
|
169
|
+
cosmotech_api/models/resource_size_info.py,sha256=226ZmIuTkuZOoPjVQHIRL2nnoQvmVCsWPh-RsfdnDAA,2607
|
|
170
|
+
cosmotech_api/models/run.py,sha256=Zspcc9Pjpe4isqKWST8btA7grkmN6K4onOki9HlfuG4,8105
|
|
171
|
+
cosmotech_api/models/run_container.py,sha256=WbkdvI3Jcz3PLHIEGoLYOtdfTLQPRxYXiy9WDJBGWzw,5366
|
|
172
|
+
cosmotech_api/models/run_container_artifact.py,sha256=8EjEnzZ3lta2CL83XNoPWJAQgoUcxEenN93JWM9VM5Q,2704
|
|
173
|
+
cosmotech_api/models/run_container_logs.py,sha256=oUuYjtbiR7cv7UJ8BK0u5XjAMQy79QESiiMKgxDOxDk,3366
|
|
174
|
+
cosmotech_api/models/run_data.py,sha256=JJvW_-wnb9ENHos_MBH6lzGjHwZZlPSF6bWTVM4LPws,2763
|
|
175
|
+
cosmotech_api/models/run_data_query.py,sha256=LTliITdTdsd3A9vXh3w6Nq78C25iCL7MyCVmq8L7ANs,2485
|
|
176
|
+
cosmotech_api/models/run_logs.py,sha256=KYmbP0Iv3nVWfceKzI67cTrGtxviRs-964gf5g50ZHU,3466
|
|
177
|
+
cosmotech_api/models/run_resource_requested.py,sha256=xh4d4tge6zVhWH6AKBZ-BvC5hhLgrg82Bz4N4ZasRk8,2690
|
|
178
|
+
cosmotech_api/models/run_search.py,sha256=Y4KQ2q4x9ocd-sHMc7ZOyCHNODj8OvC47FHkM_ppTJU,4533
|
|
179
|
+
cosmotech_api/models/run_start_containers.py,sha256=R4JFVPYuew4k8tJVhS0US7Wy4mbNd-4CIPJAUcsf2Lc,3748
|
|
180
|
+
cosmotech_api/models/run_state.py,sha256=qYOjhG8M6DxlN3ckbBdF9ZS13AQkuyqAvInEVR74swA,778
|
|
181
|
+
cosmotech_api/models/run_status.py,sha256=ympyg6Z0q8HtgOHEJWl6zIcP6susaDq1OH3JisE4slQ,5287
|
|
182
|
+
cosmotech_api/models/run_status_node.py,sha256=MzL0yc3ic3FEm0jV4i3MHBhGUaNHQqLc6jRr74NJdn4,5015
|
|
183
|
+
cosmotech_api/models/run_template.py,sha256=DjN611n7dXQOXN3KmZFbE3DLUxU1ohAUzVpMqEtQJrE,10869
|
|
184
|
+
cosmotech_api/models/run_template_handler_id.py,sha256=pv5N_WEkTNRQGrC6cZppQfs1aisVsg85OPpk8VUg-bE,914
|
|
185
|
+
cosmotech_api/models/run_template_orchestrator.py,sha256=FO2DbuXcNd2UurjWnmTF5shQoiejQaVNq9vjOHcBtPI,784
|
|
186
|
+
cosmotech_api/models/run_template_parameter.py,sha256=bQ4leJzi_hAezwrTkFhVgxxdU0q3YUepcVJV98j6GIE,3831
|
|
187
|
+
cosmotech_api/models/run_template_parameter_group.py,sha256=D6wUzS7IqCB0Y4fn7TxzBVm2D9D1yRymC2VNfsDIDwc,3411
|
|
188
|
+
cosmotech_api/models/run_template_parameter_value.py,sha256=b5x1B-er39YjG-FigBjrz82-XP1vJH8GwbLwMJ0ly_4,2964
|
|
189
|
+
cosmotech_api/models/run_template_resource_sizing.py,sha256=sTEOIyijRjJIVF_ugWvQr0TJiyPmUfQuDa1WtA9SO10,3172
|
|
190
|
+
cosmotech_api/models/run_template_step_source.py,sha256=6tHwz_jC9ap27m5UeSjxcy1fHC9WbZcP6zV4Sxgz0RY,803
|
|
191
|
+
cosmotech_api/models/runner.py,sha256=7cMntU34N2V7ZX9G_9Sh2ffGgDg6tejDd8reCYjR5ao,9887
|
|
192
|
+
cosmotech_api/models/runner_access_control.py,sha256=fytWUwPbgZTP6v_Un44I-7fZKEUUbySyf9C9R-v6J40,2590
|
|
193
|
+
cosmotech_api/models/runner_changed_parameter_value.py,sha256=PxzpS0IubGG14t1nPbci8k3lezppySjP_mzNjijwfHo,3499
|
|
194
|
+
cosmotech_api/models/runner_comparison_result.py,sha256=glSSfpXldO6q1WpEh7n0N4HlY0L6YP2PNObGUZRppb8,3881
|
|
195
|
+
cosmotech_api/models/runner_data_download_info.py,sha256=cpi7hSUf4PjH4uF1M0Gy4vBuNdKZIWROq3tFWmkKObM,2781
|
|
196
|
+
cosmotech_api/models/runner_data_download_job.py,sha256=ywi1w0SMw3jMZtMSryPpTRMd1EXpOFjTABdMjokFbcE,2623
|
|
197
|
+
cosmotech_api/models/runner_job_state.py,sha256=48xbEFVzKvxQcQfwD7F1HQAEtYvIFAInKecv22VyhIo,866
|
|
198
|
+
cosmotech_api/models/runner_last_run.py,sha256=iTk9k9bGlu54GpyqlaJc3WVPwhY6XjtGiPM3wHJUk1w,3156
|
|
199
|
+
cosmotech_api/models/runner_parent_last_run.py,sha256=VGSNfhmcEgC7NQ9aP-8sXP9RVqAHzwPgy8zg09vyWNs,3180
|
|
200
|
+
cosmotech_api/models/runner_resource_sizing.py,sha256=HJS_3jUdIzVSbYAxHx8sQsyErT2jWmNuR4yG0E8ZPGc,3157
|
|
201
|
+
cosmotech_api/models/runner_role.py,sha256=Vntl3Esdnd03pZzpvJfNELFzGUaSACdVCLLLOvWK7jE,2463
|
|
202
|
+
cosmotech_api/models/runner_root_last_run.py,sha256=n3kx4xeCQg4Jr2dCwT3WP1QAO7ivEDRM608s-yu_ndw,3172
|
|
203
|
+
cosmotech_api/models/runner_run_template_parameter_value.py,sha256=KJRK0dCQtqS_MrwbylEHFjq_kZEz53wBd21IQB-RM2c,3229
|
|
204
|
+
cosmotech_api/models/runner_security.py,sha256=8pEp7giZzbHiv12x7aLvCED-6z_2x0Jsdsxb5D7YkuE,3299
|
|
205
|
+
cosmotech_api/models/runner_validation_status.py,sha256=66Tdv9OCaKkqN56mJkMJtZnEf3yswZbFtSdLTOmSjDk,815
|
|
206
|
+
cosmotech_api/models/scenario.py,sha256=r-G6oxzHhie1L18QjfPfi-x4n15R3sfB_XX-G_3OG04,9803
|
|
207
|
+
cosmotech_api/models/scenario_access_control.py,sha256=pW8hmglJtAT6SO7ya5LrHx-OuiD9u5VoKDfWn4KHYrA,2598
|
|
208
|
+
cosmotech_api/models/scenario_changed_parameter_value.py,sha256=CJgjTz0hrAFeKDo5GnByFlYGiW4AgltxFsMIre28mcA,3509
|
|
209
|
+
cosmotech_api/models/scenario_comparison_result.py,sha256=7W1cMjLg7YJZ4zdzTvKgykjVyoPNJP5sSxH-agp8hwk,3927
|
|
210
|
+
cosmotech_api/models/scenario_data_download_info.py,sha256=LJEz0X7sVaSse3iLaCXgflUNY1DEVjmz4oAKK4wvXx8,2797
|
|
211
|
+
cosmotech_api/models/scenario_data_download_job.py,sha256=ixPxne7lx2bZjfN3M3AJ12rWcDrq6qjK0oi1IRvczaA,2633
|
|
212
|
+
cosmotech_api/models/scenario_job_state.py,sha256=WkUiwTYUqtKzmo4ChqWwk20CKeP0Pufa9iM6NgE-txM,872
|
|
213
|
+
cosmotech_api/models/scenario_last_run.py,sha256=OKoCWy425ZfnBFI2-4CfpR6qtLO46jfAXFTbNLPo8p0,3176
|
|
214
|
+
cosmotech_api/models/scenario_resource_sizing.py,sha256=vsiPeElnennV3mj2c_Ja0U2Ah6lXQ1KHwElcAmy0Q9c,3163
|
|
215
|
+
cosmotech_api/models/scenario_role.py,sha256=FIin4Ak0i_V4VnRAojPVEEUCx6vis2oG_6lNtzMZM4Y,2473
|
|
216
|
+
cosmotech_api/models/scenario_run.py,sha256=kD_JtFOXqTaQ2IklidOCaaI3rn3OEumhyO2UzXs6n1o,9775
|
|
217
|
+
cosmotech_api/models/scenario_run_container.py,sha256=M33Wkg1-Vss7vO473EMk3FYQqpQ_8BvzwicfAYyJE3Q,5431
|
|
218
|
+
cosmotech_api/models/scenario_run_container_artifact.py,sha256=hw33MasgLkSnMnokuNhwFZxBItoqRYHBbHp4pTYktkE,2730
|
|
219
|
+
cosmotech_api/models/scenario_run_container_logs.py,sha256=3wsmn82C8MKNvX0Qw0ivDNC707EOLSEHuI1drvlSJGs,3390
|
|
220
|
+
cosmotech_api/models/scenario_run_logs.py,sha256=cPDGVthz4spggoctLfDYbjG2nctoKB3yija2Yyj3PGc,3587
|
|
221
|
+
cosmotech_api/models/scenario_run_resource_requested.py,sha256=C8rHi8JBOTrXVv32cRIODrY0XlMr9VPEE5i0eKC3UpQ,2714
|
|
222
|
+
cosmotech_api/models/scenario_run_result.py,sha256=Uh01C67xNYyuuuSL9y0OzJ2VI1mX_9V8KZILyexmVbw,2613
|
|
223
|
+
cosmotech_api/models/scenario_run_search.py,sha256=Fg8dphtUc7wp-KqDcmICcI5eR4KQVyLjFsJNnGp9vB8,4569
|
|
224
|
+
cosmotech_api/models/scenario_run_start_containers.py,sha256=oKGHUnjyYZCUHE9EKlofJiOozAaO-TaHYuHTVzoaqGg,3805
|
|
225
|
+
cosmotech_api/models/scenario_run_state.py,sha256=c3X0Sgwd9iZtIVecSroXnkQY5aNKiy8XD5zhpRDpV8M,908
|
|
226
|
+
cosmotech_api/models/scenario_run_status.py,sha256=icyZhsjgf_SQ1BPGHIX-ohDy_mnq6wNv-cYaGio1LqA,5068
|
|
227
|
+
cosmotech_api/models/scenario_run_status_node.py,sha256=xCyPJE8kejTMUBsBPq1UaY1g2VAs_1C-F9hlu7Ubpm8,5088
|
|
228
|
+
cosmotech_api/models/scenario_run_template_parameter_value.py,sha256=Wi_k-X31w6fksOUh_RkX3ym5HM0xiJAP4IqbflkNEb4,3237
|
|
229
|
+
cosmotech_api/models/scenario_security.py,sha256=BKJh_QwdIQV77e9W5D07uk_aMsUNMrJUOr10kcaZBuU,3317
|
|
230
|
+
cosmotech_api/models/scenario_validation_status.py,sha256=b1Y1DsT7xKwklzpOnIQphc8eOKAET_Nm510QNNUHN5c,821
|
|
231
|
+
cosmotech_api/models/send_run_data_request.py,sha256=OJ-UIyMJv-OoxY69Cz0txSkvpCXEfQ3212s1yly1A3o,2556
|
|
232
|
+
cosmotech_api/models/solution.py,sha256=OGMoLBWG08kyisgiTZ7j-zJAG0DaxWepF54TnVbssWs,7524
|
|
233
|
+
cosmotech_api/models/solution_access_control.py,sha256=1qtrGjGZEXkLLGq2JH7L-OdzPMH3GriCFPpQAHQC-1U,2598
|
|
234
|
+
cosmotech_api/models/solution_role.py,sha256=j0NZOOYkG648R9MTqe3BoedYNRaHR4HlUFxM_goeBPg,2473
|
|
235
|
+
cosmotech_api/models/solution_security.py,sha256=GJ0gV8PYBIRjyVz1TBApGTpMVNASckF1fQJOSPfQUTM,3317
|
|
236
|
+
cosmotech_api/models/source_info.py,sha256=lL_Yy_29FagV8IXf1V_2rKX2uLPA4Z_hHY-wKVH2iNM,3023
|
|
237
|
+
cosmotech_api/models/sub_dataset_graph_query.py,sha256=UfGNmdFq0UwyTmtwIJvaefcAxfrVUFJBQfcaEHTzk-8,3043
|
|
238
|
+
cosmotech_api/models/twin_graph_batch_result.py,sha256=-MW8LCjTyGDD3NAeqs3eN-8dONGcJIQx6C0JCQdvvYM,2737
|
|
239
|
+
cosmotech_api/models/twin_graph_hash.py,sha256=IcjLToQQwNN_c5DMrcfAmQUFmdFbDeHoNT8Q5lwnf9Y,2514
|
|
240
|
+
cosmotech_api/models/twin_graph_query.py,sha256=EUxVIquu4cD1aPGY6ByVpYSno_hzHn_MfxpQPlS6dYE,2667
|
|
241
|
+
cosmotech_api/models/validator.py,sha256=j5WKHC64azogrxj2OKvKMwtTYfkdzHEMqoCEoLsHyMw,3713
|
|
242
|
+
cosmotech_api/models/validator_run.py,sha256=OPZ2DUHjb716kXLgHhzny5BA9eRredK_EoFivhJxjYI,4561
|
|
243
|
+
cosmotech_api/models/workspace.py,sha256=n7KDy1PvXw55WI1gWL4TjsJJihrxZFRup-phijMqeSY,8767
|
|
244
|
+
cosmotech_api/models/workspace_access_control.py,sha256=gnwopwxabNQNJK2CnMHlXIdY3duJJp19xWtP3y9F1mE,2602
|
|
245
|
+
cosmotech_api/models/workspace_file.py,sha256=qxBBAXYR-OvIxCk2QCFhduXCae-XJvTtxSmO_CtTWOo,2559
|
|
246
|
+
cosmotech_api/models/workspace_role.py,sha256=E-gFEQwk-Xl3NsjM-eQj9W7S0Vz6srum-eei4CkZkow,2478
|
|
247
|
+
cosmotech_api/models/workspace_secret.py,sha256=-Eas0K6KzNTH1_39Zncq2SCBkaEU0U4-eLhFbGPW6b8,2641
|
|
248
|
+
cosmotech_api/models/workspace_security.py,sha256=oOG14EJUkYpx9wupxYYaOqbAqzQwm7msycuRdXSfLJk,3326
|
|
249
|
+
cosmotech_api/models/workspace_solution.py,sha256=uFdrqfpsXvXa-FbR22zoWqlSYXvoQtE-9fxiI3zYMrk,3173
|
|
250
|
+
cosmotech_api/models/workspace_web_app.py,sha256=1bYQGFiF17n16DKZh9Db0B_tfkwAZKVuLffRSrv-x5A,2839
|
|
251
|
+
cosmotech_api-3.2.0.dist-info/LICENSE,sha256=3WIX4TWBzkdiuP1Yiuv4TzmgFUpd_Nu9R-C4a4U6ijo,1134
|
|
252
|
+
cosmotech_api-3.2.0.dist-info/METADATA,sha256=xngonScNsi-VtGRYBu_WB4jAuuh-xaqz5Zy2wEI5I7Y,474
|
|
253
|
+
cosmotech_api-3.2.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
254
|
+
cosmotech_api-3.2.0.dist-info/top_level.txt,sha256=wv9-Z7Kc5Uxdc-ZChExKN0TSbyrEU7FHipDjAyybBlw,14
|
|
255
|
+
cosmotech_api-3.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cosmotech_api
|