huaweicloudsdkeihealth 3.1.121__py2.py3-none-any.whl → 3.1.123__py2.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.
- huaweicloudsdkeihealth/v1/__init__.py +24 -0
- huaweicloudsdkeihealth/v1/eihealth_async_client.py +492 -0
- huaweicloudsdkeihealth/v1/eihealth_client.py +492 -0
- huaweicloudsdkeihealth/v1/model/__init__.py +24 -0
- huaweicloudsdkeihealth/v1/model/bound_box_dto.py +171 -0
- huaweicloudsdkeihealth/v1/model/clustering_drug_file.py +197 -0
- huaweicloudsdkeihealth/v1/model/clustering_file_source.py +89 -0
- huaweicloudsdkeihealth/v1/model/convert_file.py +197 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_req.py +134 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_clustering_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_req.py +254 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_favorite_response.py +116 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_req.py +163 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/create_mol_docking_job_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/delete_favorite_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/delete_favorite_response.py +85 -0
- huaweicloudsdkeihealth/v1/model/favorite_dto.py +376 -0
- huaweicloudsdkeihealth/v1/model/list_favorite_request.py +433 -0
- huaweicloudsdkeihealth/v1/model/list_favorite_response.py +145 -0
- huaweicloudsdkeihealth/v1/model/optimization_mode.py +1 -0
- huaweicloudsdkeihealth/v1/model/receptor_dto.py +280 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_req.py +166 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_request.py +139 -0
- huaweicloudsdkeihealth/v1/model/run_format_converter_response.py +112 -0
- huaweicloudsdkeihealth/v1/model/show_clustering_job_request.py +142 -0
- huaweicloudsdkeihealth/v1/model/show_clustering_job_response.py +191 -0
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/METADATA +2 -2
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/RECORD +34 -10
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/WHEEL +1 -1
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/LICENSE +0 -0
- {huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,142 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class ShowClusteringJobRequest:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'eihealth_project_id': 'str',
|
21
|
+
'job_id': 'str'
|
22
|
+
}
|
23
|
+
|
24
|
+
attribute_map = {
|
25
|
+
'eihealth_project_id': 'eihealth_project_id',
|
26
|
+
'job_id': 'job_id'
|
27
|
+
}
|
28
|
+
|
29
|
+
def __init__(self, eihealth_project_id=None, job_id=None):
|
30
|
+
"""ShowClusteringJobRequest
|
31
|
+
|
32
|
+
The model defined in huaweicloud sdk
|
33
|
+
|
34
|
+
:param eihealth_project_id: 平台项目ID。
|
35
|
+
:type eihealth_project_id: str
|
36
|
+
:param job_id: 作业id
|
37
|
+
:type job_id: str
|
38
|
+
"""
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
self._eihealth_project_id = None
|
43
|
+
self._job_id = None
|
44
|
+
self.discriminator = None
|
45
|
+
|
46
|
+
self.eihealth_project_id = eihealth_project_id
|
47
|
+
self.job_id = job_id
|
48
|
+
|
49
|
+
@property
|
50
|
+
def eihealth_project_id(self):
|
51
|
+
"""Gets the eihealth_project_id of this ShowClusteringJobRequest.
|
52
|
+
|
53
|
+
平台项目ID。
|
54
|
+
|
55
|
+
:return: The eihealth_project_id of this ShowClusteringJobRequest.
|
56
|
+
:rtype: str
|
57
|
+
"""
|
58
|
+
return self._eihealth_project_id
|
59
|
+
|
60
|
+
@eihealth_project_id.setter
|
61
|
+
def eihealth_project_id(self, eihealth_project_id):
|
62
|
+
"""Sets the eihealth_project_id of this ShowClusteringJobRequest.
|
63
|
+
|
64
|
+
平台项目ID。
|
65
|
+
|
66
|
+
:param eihealth_project_id: The eihealth_project_id of this ShowClusteringJobRequest.
|
67
|
+
:type eihealth_project_id: str
|
68
|
+
"""
|
69
|
+
self._eihealth_project_id = eihealth_project_id
|
70
|
+
|
71
|
+
@property
|
72
|
+
def job_id(self):
|
73
|
+
"""Gets the job_id of this ShowClusteringJobRequest.
|
74
|
+
|
75
|
+
作业id
|
76
|
+
|
77
|
+
:return: The job_id of this ShowClusteringJobRequest.
|
78
|
+
:rtype: str
|
79
|
+
"""
|
80
|
+
return self._job_id
|
81
|
+
|
82
|
+
@job_id.setter
|
83
|
+
def job_id(self, job_id):
|
84
|
+
"""Sets the job_id of this ShowClusteringJobRequest.
|
85
|
+
|
86
|
+
作业id
|
87
|
+
|
88
|
+
:param job_id: The job_id of this ShowClusteringJobRequest.
|
89
|
+
:type job_id: str
|
90
|
+
"""
|
91
|
+
self._job_id = job_id
|
92
|
+
|
93
|
+
def to_dict(self):
|
94
|
+
"""Returns the model properties as a dict"""
|
95
|
+
result = {}
|
96
|
+
|
97
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
98
|
+
value = getattr(self, attr)
|
99
|
+
if isinstance(value, list):
|
100
|
+
result[attr] = list(map(
|
101
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
102
|
+
value
|
103
|
+
))
|
104
|
+
elif hasattr(value, "to_dict"):
|
105
|
+
result[attr] = value.to_dict()
|
106
|
+
elif isinstance(value, dict):
|
107
|
+
result[attr] = dict(map(
|
108
|
+
lambda item: (item[0], item[1].to_dict())
|
109
|
+
if hasattr(item[1], "to_dict") else item,
|
110
|
+
value.items()
|
111
|
+
))
|
112
|
+
else:
|
113
|
+
if attr in self.sensitive_list:
|
114
|
+
result[attr] = "****"
|
115
|
+
else:
|
116
|
+
result[attr] = value
|
117
|
+
|
118
|
+
return result
|
119
|
+
|
120
|
+
def to_str(self):
|
121
|
+
"""Returns the string representation of the model"""
|
122
|
+
import simplejson as json
|
123
|
+
if six.PY2:
|
124
|
+
import sys
|
125
|
+
reload(sys)
|
126
|
+
sys.setdefaultencoding("utf-8")
|
127
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
128
|
+
|
129
|
+
def __repr__(self):
|
130
|
+
"""For `print`"""
|
131
|
+
return self.to_str()
|
132
|
+
|
133
|
+
def __eq__(self, other):
|
134
|
+
"""Returns true if both objects are equal"""
|
135
|
+
if not isinstance(other, ShowClusteringJobRequest):
|
136
|
+
return False
|
137
|
+
|
138
|
+
return self.__dict__ == other.__dict__
|
139
|
+
|
140
|
+
def __ne__(self, other):
|
141
|
+
"""Returns true if both objects are not equal"""
|
142
|
+
return not self == other
|
@@ -0,0 +1,191 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.sdk_response import SdkResponse
|
6
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
7
|
+
|
8
|
+
|
9
|
+
class ShowClusteringJobResponse(SdkResponse):
|
10
|
+
|
11
|
+
"""
|
12
|
+
Attributes:
|
13
|
+
openapi_types (dict): The key is attribute name
|
14
|
+
and the value is attribute type.
|
15
|
+
attribute_map (dict): The key is attribute name
|
16
|
+
and the value is json key in definition.
|
17
|
+
"""
|
18
|
+
sensitive_list = []
|
19
|
+
|
20
|
+
openapi_types = {
|
21
|
+
'basic_info': 'DrugJobDto',
|
22
|
+
'file': 'DrugFile',
|
23
|
+
'failed_reasons': 'list[FailedReasonRecord]',
|
24
|
+
'job_result': 'JobResult'
|
25
|
+
}
|
26
|
+
|
27
|
+
attribute_map = {
|
28
|
+
'basic_info': 'basic_info',
|
29
|
+
'file': 'file',
|
30
|
+
'failed_reasons': 'failed_reasons',
|
31
|
+
'job_result': 'job_result'
|
32
|
+
}
|
33
|
+
|
34
|
+
def __init__(self, basic_info=None, file=None, failed_reasons=None, job_result=None):
|
35
|
+
"""ShowClusteringJobResponse
|
36
|
+
|
37
|
+
The model defined in huaweicloud sdk
|
38
|
+
|
39
|
+
:param basic_info:
|
40
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.DrugJobDto`
|
41
|
+
:param file:
|
42
|
+
:type file: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
43
|
+
:param failed_reasons: 部分失败原因和数量。
|
44
|
+
:type failed_reasons: list[:class:`huaweicloudsdkeihealth.v1.FailedReasonRecord`]
|
45
|
+
:param job_result:
|
46
|
+
:type job_result: :class:`huaweicloudsdkeihealth.v1.JobResult`
|
47
|
+
"""
|
48
|
+
|
49
|
+
super(ShowClusteringJobResponse, self).__init__()
|
50
|
+
|
51
|
+
self._basic_info = None
|
52
|
+
self._file = None
|
53
|
+
self._failed_reasons = None
|
54
|
+
self._job_result = None
|
55
|
+
self.discriminator = None
|
56
|
+
|
57
|
+
if basic_info is not None:
|
58
|
+
self.basic_info = basic_info
|
59
|
+
if file is not None:
|
60
|
+
self.file = file
|
61
|
+
if failed_reasons is not None:
|
62
|
+
self.failed_reasons = failed_reasons
|
63
|
+
if job_result is not None:
|
64
|
+
self.job_result = job_result
|
65
|
+
|
66
|
+
@property
|
67
|
+
def basic_info(self):
|
68
|
+
"""Gets the basic_info of this ShowClusteringJobResponse.
|
69
|
+
|
70
|
+
:return: The basic_info of this ShowClusteringJobResponse.
|
71
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.DrugJobDto`
|
72
|
+
"""
|
73
|
+
return self._basic_info
|
74
|
+
|
75
|
+
@basic_info.setter
|
76
|
+
def basic_info(self, basic_info):
|
77
|
+
"""Sets the basic_info of this ShowClusteringJobResponse.
|
78
|
+
|
79
|
+
:param basic_info: The basic_info of this ShowClusteringJobResponse.
|
80
|
+
:type basic_info: :class:`huaweicloudsdkeihealth.v1.DrugJobDto`
|
81
|
+
"""
|
82
|
+
self._basic_info = basic_info
|
83
|
+
|
84
|
+
@property
|
85
|
+
def file(self):
|
86
|
+
"""Gets the file of this ShowClusteringJobResponse.
|
87
|
+
|
88
|
+
:return: The file of this ShowClusteringJobResponse.
|
89
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
90
|
+
"""
|
91
|
+
return self._file
|
92
|
+
|
93
|
+
@file.setter
|
94
|
+
def file(self, file):
|
95
|
+
"""Sets the file of this ShowClusteringJobResponse.
|
96
|
+
|
97
|
+
:param file: The file of this ShowClusteringJobResponse.
|
98
|
+
:type file: :class:`huaweicloudsdkeihealth.v1.DrugFile`
|
99
|
+
"""
|
100
|
+
self._file = file
|
101
|
+
|
102
|
+
@property
|
103
|
+
def failed_reasons(self):
|
104
|
+
"""Gets the failed_reasons of this ShowClusteringJobResponse.
|
105
|
+
|
106
|
+
部分失败原因和数量。
|
107
|
+
|
108
|
+
:return: The failed_reasons of this ShowClusteringJobResponse.
|
109
|
+
:rtype: list[:class:`huaweicloudsdkeihealth.v1.FailedReasonRecord`]
|
110
|
+
"""
|
111
|
+
return self._failed_reasons
|
112
|
+
|
113
|
+
@failed_reasons.setter
|
114
|
+
def failed_reasons(self, failed_reasons):
|
115
|
+
"""Sets the failed_reasons of this ShowClusteringJobResponse.
|
116
|
+
|
117
|
+
部分失败原因和数量。
|
118
|
+
|
119
|
+
:param failed_reasons: The failed_reasons of this ShowClusteringJobResponse.
|
120
|
+
:type failed_reasons: list[:class:`huaweicloudsdkeihealth.v1.FailedReasonRecord`]
|
121
|
+
"""
|
122
|
+
self._failed_reasons = failed_reasons
|
123
|
+
|
124
|
+
@property
|
125
|
+
def job_result(self):
|
126
|
+
"""Gets the job_result of this ShowClusteringJobResponse.
|
127
|
+
|
128
|
+
:return: The job_result of this ShowClusteringJobResponse.
|
129
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.JobResult`
|
130
|
+
"""
|
131
|
+
return self._job_result
|
132
|
+
|
133
|
+
@job_result.setter
|
134
|
+
def job_result(self, job_result):
|
135
|
+
"""Sets the job_result of this ShowClusteringJobResponse.
|
136
|
+
|
137
|
+
:param job_result: The job_result of this ShowClusteringJobResponse.
|
138
|
+
:type job_result: :class:`huaweicloudsdkeihealth.v1.JobResult`
|
139
|
+
"""
|
140
|
+
self._job_result = job_result
|
141
|
+
|
142
|
+
def to_dict(self):
|
143
|
+
"""Returns the model properties as a dict"""
|
144
|
+
result = {}
|
145
|
+
|
146
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
147
|
+
value = getattr(self, attr)
|
148
|
+
if isinstance(value, list):
|
149
|
+
result[attr] = list(map(
|
150
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
151
|
+
value
|
152
|
+
))
|
153
|
+
elif hasattr(value, "to_dict"):
|
154
|
+
result[attr] = value.to_dict()
|
155
|
+
elif isinstance(value, dict):
|
156
|
+
result[attr] = dict(map(
|
157
|
+
lambda item: (item[0], item[1].to_dict())
|
158
|
+
if hasattr(item[1], "to_dict") else item,
|
159
|
+
value.items()
|
160
|
+
))
|
161
|
+
else:
|
162
|
+
if attr in self.sensitive_list:
|
163
|
+
result[attr] = "****"
|
164
|
+
else:
|
165
|
+
result[attr] = value
|
166
|
+
|
167
|
+
return result
|
168
|
+
|
169
|
+
def to_str(self):
|
170
|
+
"""Returns the string representation of the model"""
|
171
|
+
import simplejson as json
|
172
|
+
if six.PY2:
|
173
|
+
import sys
|
174
|
+
reload(sys)
|
175
|
+
sys.setdefaultencoding("utf-8")
|
176
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
177
|
+
|
178
|
+
def __repr__(self):
|
179
|
+
"""For `print`"""
|
180
|
+
return self.to_str()
|
181
|
+
|
182
|
+
def __eq__(self, other):
|
183
|
+
"""Returns true if both objects are equal"""
|
184
|
+
if not isinstance(other, ShowClusteringJobResponse):
|
185
|
+
return False
|
186
|
+
|
187
|
+
return self.__dict__ == other.__dict__
|
188
|
+
|
189
|
+
def __ne__(self, other):
|
190
|
+
"""Returns true if both objects are not equal"""
|
191
|
+
return not self == other
|
{huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkeihealth
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.123
|
4
4
|
Summary: eiHealth
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore>=3.1.
|
25
|
+
Requires-Dist: huaweicloudsdkcore>=3.1.123
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
{huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
1
|
huaweicloudsdkeihealth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
huaweicloudsdkeihealth/v1/__init__.py,sha256=
|
3
|
-
huaweicloudsdkeihealth/v1/eihealth_async_client.py,sha256
|
4
|
-
huaweicloudsdkeihealth/v1/eihealth_client.py,sha256=
|
5
|
-
huaweicloudsdkeihealth/v1/model/__init__.py,sha256=
|
2
|
+
huaweicloudsdkeihealth/v1/__init__.py,sha256=F1Vxs3kSbdYvagqEjD3Z-t31sbo58Tg0a1mU0x4fpqY,94402
|
3
|
+
huaweicloudsdkeihealth/v1/eihealth_async_client.py,sha256=-vCpJFZqZcthzCZh9tFfcPiXQ1Y5XSx6bssuANdQqrk,752652
|
4
|
+
huaweicloudsdkeihealth/v1/eihealth_client.py,sha256=BdF0ha-3xmcG2dMoVY70PCq1_0dprjbHBHS-TZHmyL0,753209
|
5
|
+
huaweicloudsdkeihealth/v1/model/__init__.py,sha256=DijTXws7Pu6Kp2auhVrYLbf6EfUR2u90H21_M_xUYqo,94286
|
6
6
|
huaweicloudsdkeihealth/v1/model/action_type.py,sha256=9ucc9e-YbPOzXfsnhnTBWlNnMeEwqvI5T-y-A80Vszc,2365
|
7
7
|
huaweicloudsdkeihealth/v1/model/add_drug_database_file_req.py,sha256=flQKbmW4Eq2QQjU0Vri6l85rvkS-YekC72BJ0t5fwOA,3904
|
8
8
|
huaweicloudsdkeihealth/v1/model/add_drug_database_file_request.py,sha256=WuLvwkv2sPmi01Coop6LReBUKvBaL4T4q4MGiyog4EM,4007
|
@@ -62,6 +62,7 @@ huaweicloudsdkeihealth/v1/model/batch_update_notice_response.py,sha256=sAK2SXwxi
|
|
62
62
|
huaweicloudsdkeihealth/v1/model/bind_site_dto.py,sha256=UjJXxJDZ7g8cgI_Jqx2bezqc71ksney47o7NX6ndqss,8165
|
63
63
|
huaweicloudsdkeihealth/v1/model/bind_user_rsp.py,sha256=sCcX4bUUC1WsH6NPhGtM3prnf7eF1Z76ebkgeB4EhbI,3566
|
64
64
|
huaweicloudsdkeihealth/v1/model/binding_site.py,sha256=hfU6GYysu0HJtiw5XmprdRX73A0qdbGFp0ikVoI1QoQ,4030
|
65
|
+
huaweicloudsdkeihealth/v1/model/bound_box_dto.py,sha256=Or_RaUmxo3p3-unjSC_O-EK1690qMzg7FsF5d2jRiIk,4504
|
65
66
|
huaweicloudsdkeihealth/v1/model/bounding_box.py,sha256=rKyyUgUNurO6A3rzmGNOyWyP0FrR3-GmJchtMtLvFoo,3836
|
66
67
|
huaweicloudsdkeihealth/v1/model/bounding_box_dto.py,sha256=_4N5t2ed3KkorRBH_x205sW_s0sVkg3dvuAvsmkpjmU,4519
|
67
68
|
huaweicloudsdkeihealth/v1/model/bucket_dto.py,sha256=hvmCPmE00iA9gnelobrArtxHpvHhaAdYMvsyqK7tnxA,4262
|
@@ -89,12 +90,15 @@ huaweicloudsdkeihealth/v1/model/clean_nextflow_cache_request.py,sha256=_ha0Igxj2
|
|
89
90
|
huaweicloudsdkeihealth/v1/model/clean_nextflow_cache_response.py,sha256=tmvXE-Nj263tgoq7tcuWQjWMhEUsUJ1pcuzp5bzLYHE,2455
|
90
91
|
huaweicloudsdkeihealth/v1/model/clone_data_req.py,sha256=TtKGJUeWHaH2tA0Zo3tTbTeofRGBsyp6Ab6JnnBAU7A,4857
|
91
92
|
huaweicloudsdkeihealth/v1/model/cluster_job_rsp.py,sha256=a52uLwyhmQjhbHvnxcn5IxzK6egnTsOLrMwMWfIVRS0,5483
|
93
|
+
huaweicloudsdkeihealth/v1/model/clustering_drug_file.py,sha256=SU7RZ_c4aOud7pzeqpoAT6ZNuIKvHkBTAPJHxgw6vEk,5655
|
94
|
+
huaweicloudsdkeihealth/v1/model/clustering_file_source.py,sha256=vmxqbeXGJ-mk7bhNT_tP-ZY9n9VtE_ZlePSt_I9xlWI,2419
|
92
95
|
huaweicloudsdkeihealth/v1/model/code_verify_req.py,sha256=fmHtjbpKgaukWMNMX-gjAYjYIAek7w2w-mWHzUe8WSA,3552
|
93
96
|
huaweicloudsdkeihealth/v1/model/column_type.py,sha256=-iZtQKPv4zAaaSF38E8Lb1bx1eKs6WpIFQKIS1n9Ykg,2389
|
94
97
|
huaweicloudsdkeihealth/v1/model/column_value_dto.py,sha256=LEGX50P49-amJIoFF-oyT_04kiRAvD7cHudw5vmXnls,3628
|
95
98
|
huaweicloudsdkeihealth/v1/model/computing_resource_flavors_rsp.py,sha256=cxaQczajy4DNdthIaCGw_mSGkpLNENmnEw8IcaxRcnk,14127
|
96
99
|
huaweicloudsdkeihealth/v1/model/computing_resource_rsp.py,sha256=Ztk4EzXG20BJ0B0RDBK2-9MOFXjy4P9AJ1CwysiR2Cw,14436
|
97
100
|
huaweicloudsdkeihealth/v1/model/computing_spec_dto.py,sha256=ctm4CmuNA5qYyV0frOygv66ZKV-3XGeaMk9sY3M1z3o,7066
|
101
|
+
huaweicloudsdkeihealth/v1/model/convert_file.py,sha256=IduJHBMmhT88nvgrS5b2rWPRh5YwodAwPsFKIXZtUdI,5696
|
98
102
|
huaweicloudsdkeihealth/v1/model/copy_data_request.py,sha256=oIFI1oXqoyqnmwWei_nIaT9wGOD8raRVmWFjo97N6rw,4272
|
99
103
|
huaweicloudsdkeihealth/v1/model/copy_data_response.py,sha256=anybuNcWy-rMpqHTCLKuP-wB-rNoCLKmB0b6s5DhEK4,3030
|
100
104
|
huaweicloudsdkeihealth/v1/model/cpi_receptor.py,sha256=W75w2HL5MN-D-1e5X4SLPpE9lxhATadFx57vh8Bpxro,6429
|
@@ -115,6 +119,9 @@ huaweicloudsdkeihealth/v1/model/create_backup_response.py,sha256=4TKOraCH42l2c4_
|
|
115
119
|
huaweicloudsdkeihealth/v1/model/create_cluster_job_req.py,sha256=C35455wQo9XBN7rc7kXN30y7fodQp9M2cgyb1Lctu5k,4522
|
116
120
|
huaweicloudsdkeihealth/v1/model/create_cluster_job_request.py,sha256=Q_ctfaYudJzvjC6Fe8znUu4O4L_OKTtDdXBEUI3SRCA,4835
|
117
121
|
huaweicloudsdkeihealth/v1/model/create_cluster_job_response.py,sha256=YqdFVmHWnbY4D5v1NG6kIm84pv3-ebTLDsUbnekbJ0Y,4080
|
122
|
+
huaweicloudsdkeihealth/v1/model/create_clustering_job_req.py,sha256=9nbbUcP6s_t02c6Fs96rI8MZcqGNsp_Gz-_c82039g4,3982
|
123
|
+
huaweicloudsdkeihealth/v1/model/create_clustering_job_request.py,sha256=VnDZHCXr_r1MtuhzIGbrc5ibZnAFgs__KjWXNrOufAo,4201
|
124
|
+
huaweicloudsdkeihealth/v1/model/create_clustering_job_response.py,sha256=TgKy1_DylYkfZbkfPC2GvpZyhCE4Tbvvu147WBDyw5Q,4116
|
118
125
|
huaweicloudsdkeihealth/v1/model/create_code_request.py,sha256=08JTWt97XyWkfs9854pXnUz0wHskzzapp81QfBpbjXQ,3758
|
119
126
|
huaweicloudsdkeihealth/v1/model/create_code_response.py,sha256=14ICvL2BeVy2cIHcucxcfnK3nmRchxsXjuNoqmkJZ4k,2423
|
120
127
|
huaweicloudsdkeihealth/v1/model/create_computing_resource_req.py,sha256=h1G4cvnVyFvmDEN8vWB3p87ILAPk4DjCaSMd2W9Qmi4,6834
|
@@ -159,6 +166,9 @@ huaweicloudsdkeihealth/v1/model/create_drug_ligand_svg_request.py,sha256=pQvNxF8
|
|
159
166
|
huaweicloudsdkeihealth/v1/model/create_drug_ligand_svg_response.py,sha256=Poixnni7dnath4Um7aIHcxcFJ8-RyZ3eMbq-rKgKais,3102
|
160
167
|
huaweicloudsdkeihealth/v1/model/create_drug_model_request.py,sha256=vhuYrDilGNeyHPwatW8R-Gj6q8LGdIrMiwuqgbWDokw,3130
|
161
168
|
huaweicloudsdkeihealth/v1/model/create_drug_model_response.py,sha256=y1NPyqnOIjTi2mmPvkbGFwi5BLNqsXqjypkuo8XsrBM,4068
|
169
|
+
huaweicloudsdkeihealth/v1/model/create_favorite_req.py,sha256=xge-rggmmNuOxtFv345FIH5Sb38Bq53362xWowqIRJk,7427
|
170
|
+
huaweicloudsdkeihealth/v1/model/create_favorite_request.py,sha256=Cz_avDfVbr5mK9u00px5y7UEsKxCuXLAUFS9_LthTzU,4364
|
171
|
+
huaweicloudsdkeihealth/v1/model/create_favorite_response.py,sha256=jylpNnd5WxMdRsgGZA7TBOBARhMC3Ixf2v6xGO6_Biw,3087
|
162
172
|
huaweicloudsdkeihealth/v1/model/create_fep_job_req.py,sha256=UdUPTXKJA6ON-KkD1-jdeUuX-LBJu8LoE2UPrdAgZ1U,7171
|
163
173
|
huaweicloudsdkeihealth/v1/model/create_fep_job_request.py,sha256=8YMVw64blK0EByj07w86Vslsa-MYTbvMwuxPf5l0ia8,4089
|
164
174
|
huaweicloudsdkeihealth/v1/model/create_fep_job_response.py,sha256=f6bEO0k7U6Q8zfKSoVUbVCM835yGcNYlPxzN7qKZ4yI,4032
|
@@ -187,6 +197,9 @@ huaweicloudsdkeihealth/v1/model/create_model_req.py,sha256=Exdf7J8aOvMD7opUfrsa2
|
|
187
197
|
huaweicloudsdkeihealth/v1/model/create_mol_batch_download_task_req.py,sha256=UxZOJfBqpP0a3bCye7C2KqLtzGq2KXivk113LE9nfuU,5615
|
188
198
|
huaweicloudsdkeihealth/v1/model/create_mol_batch_download_task_request.py,sha256=I10cH8sVEp_SxpfiAe000pwncKpn3qWDUtd54XXBSrI,4313
|
189
199
|
huaweicloudsdkeihealth/v1/model/create_mol_batch_download_task_response.py,sha256=VqsCPGso2QTHUOVjaM28s9UfSjU4Xp-u_qvvXLUx84o,3156
|
200
|
+
huaweicloudsdkeihealth/v1/model/create_mol_docking_job_req.py,sha256=YMSn6TyBjREIptSHRfAvWbzfIAiIvNTf_xoXZxSPJuc,4689
|
201
|
+
huaweicloudsdkeihealth/v1/model/create_mol_docking_job_request.py,sha256=CyvViIRJ5UId4YP7BzSQWpCggappY08KqMkyqnOGSzU,4201
|
202
|
+
huaweicloudsdkeihealth/v1/model/create_mol_docking_job_response.py,sha256=zLAYbZ70I05Enj3QwCvspBYt903jxBlVmNDPjB4ikfY,4039
|
190
203
|
huaweicloudsdkeihealth/v1/model/create_nextflow_job_request.py,sha256=SQDIkr8FSkh7akg9_mHm9MslzXBX5pM6ruPIBw7aPkE,4444
|
191
204
|
huaweicloudsdkeihealth/v1/model/create_nextflow_job_request_body.py,sha256=_g-0Pauw6rt1miVkY3x4sIVka3an5mLa_jNjJFmNciQ,8362
|
192
205
|
huaweicloudsdkeihealth/v1/model/create_nextflow_job_response.py,sha256=RYrnvYc_v9ciDlllKR11FfQhUU29B7T6o3Vwf_VsyIE,3084
|
@@ -292,6 +305,8 @@ huaweicloudsdkeihealth/v1/model/delete_drug_ligand_similarity_graph_task_request
|
|
292
305
|
huaweicloudsdkeihealth/v1/model/delete_drug_ligand_similarity_graph_task_response.py,sha256=VFHARklf11bexnCvLG0JHzkEjnoUoLjxEVQSesR9g0k,2523
|
293
306
|
huaweicloudsdkeihealth/v1/model/delete_drug_model_request.py,sha256=OvNmnsouJXGtozhKP-7ABMskLZRpUcaSpOpBY0cVrBw,3046
|
294
307
|
huaweicloudsdkeihealth/v1/model/delete_drug_model_response.py,sha256=-Q7ieCd9PrxvAeYpS-naUwXu5ofOx4a51wZLNHoTklY,2443
|
308
|
+
huaweicloudsdkeihealth/v1/model/delete_favorite_request.py,sha256=vVKKemA5cIfeScaiESQgP0f36dtuqmXDtodSWgfVYrk,4344
|
309
|
+
huaweicloudsdkeihealth/v1/model/delete_favorite_response.py,sha256=3KH_AEIxRfWd2w5qbnM3hF_uA7SRSu9tV0dRerPQ1G0,2439
|
295
310
|
huaweicloudsdkeihealth/v1/model/delete_image_request.py,sha256=m8sSoTrdRSDMP-aUmeamJfCaUJNyYBWDJklhjABdJB8,4236
|
296
311
|
huaweicloudsdkeihealth/v1/model/delete_image_response.py,sha256=jIfr3gnJc0TG1QOEVEzfGjI8r8jscfJcB59SWpa00js,2427
|
297
312
|
huaweicloudsdkeihealth/v1/model/delete_instance_request.py,sha256=8dJ_Vk_ZnlIuBI9Y0OzT2VdmykpHQ1Do_MVOQiQuoHM,4362
|
@@ -358,6 +373,7 @@ huaweicloudsdkeihealth/v1/model/execute_job_response.py,sha256=Vkoi4QUf5EJwy62fs
|
|
358
373
|
huaweicloudsdkeihealth/v1/model/extremum_dto.py,sha256=yBCyU_F5BtHLLmI9mbvlG5bWOIZZZPP-sFD9R1Do8Uc,5316
|
359
374
|
huaweicloudsdkeihealth/v1/model/failed_reason_record.py,sha256=b9TLNYdFxBhWml5-66rZxvmpf5hSeM9HZDPsExL2A0k,3707
|
360
375
|
huaweicloudsdkeihealth/v1/model/fasta_receptor.py,sha256=V22pb2mG25irvcr-g_mqk0cCk7dcPIfhz9ERUjHxzgM,5620
|
376
|
+
huaweicloudsdkeihealth/v1/model/favorite_dto.py,sha256=FgWhSuhKIw2zplz6RGeLy8Dq7UeAwezb23dbPij-S0c,10032
|
361
377
|
huaweicloudsdkeihealth/v1/model/feature_enum.py,sha256=aw75u8WEic6awhLOx81tjBp-O3x3D9R9ifXaVSB-uaU,2348
|
362
378
|
huaweicloudsdkeihealth/v1/model/fep_graph_dto.py,sha256=U3lLvAUvLkd4mKzrNaWBv5PO5d3mqjxfxGH0mR8bl6g,3823
|
363
379
|
huaweicloudsdkeihealth/v1/model/fep_param_dto.py,sha256=vuI8IwveABnihsoqhVx0lZNq8e3VaOMbrbBh_270rFs,8618
|
@@ -472,6 +488,8 @@ huaweicloudsdkeihealth/v1/model/list_drug_job_request.py,sha256=SKxT5Fyk-y_PwDCG
|
|
472
488
|
huaweicloudsdkeihealth/v1/model/list_drug_job_response.py,sha256=aNm2JAtSUuToGcqwOgPU76GPvQ4_dHYBQ7IyfpJprpA,3941
|
473
489
|
huaweicloudsdkeihealth/v1/model/list_drug_model_request.py,sha256=XTEIYFQNpEGqPuBZrkMMaKoMwa0Z82dmKEJZG4V1KSM,14287
|
474
490
|
huaweicloudsdkeihealth/v1/model/list_drug_model_response.py,sha256=07YvwzeNjMeE7B_JKIbAFn1nOP7LLtiboNQLihrboQY,4003
|
491
|
+
huaweicloudsdkeihealth/v1/model/list_favorite_request.py,sha256=I-U3Hfec8QGnhioVe2aJN4Ib5iehPo2-Kesj9Rez-Dk,14140
|
492
|
+
huaweicloudsdkeihealth/v1/model/list_favorite_response.py,sha256=GFTuwa12rtbzYr8qBnaRm-sYFRL6wKUbdbXF8qaK8zo,4090
|
475
493
|
huaweicloudsdkeihealth/v1/model/list_global_workflow_statistic_request.py,sha256=SbaZhLJCZ0y3EM78xbJAM9BwQ_nWptTCCIKf7KswC-8,2360
|
476
494
|
huaweicloudsdkeihealth/v1/model/list_global_workflow_statistic_response.py,sha256=wDxL4pRnUrbo7qZBLlavpIy1CKskJgVBzaiAhPW9YY8,3355
|
477
495
|
huaweicloudsdkeihealth/v1/model/list_iam_group_users_request.py,sha256=GzUz0FhAmRnN0m2XEDXceqWD4NIO_AyX4tjqhGI9Iyk,3078
|
@@ -595,7 +613,7 @@ huaweicloudsdkeihealth/v1/model/notice_operation.py,sha256=H0rkoSUsR9EFZfwzbbV1g
|
|
595
613
|
huaweicloudsdkeihealth/v1/model/notice_rsp.py,sha256=A_MA9SfmMru1LdnNALbXe6kEliyQa-FOnscg-uuPhYE,5660
|
596
614
|
huaweicloudsdkeihealth/v1/model/operation.py,sha256=Bzxw82z2itAxyXGul6RVjAFB7oTboF1iQFQBfiL0uYk,2362
|
597
615
|
huaweicloudsdkeihealth/v1/model/operator_type.py,sha256=9KJvfpqsgo913JD40rVwDgBp7-afYrlGznMrfZ5y6eA,2363
|
598
|
-
huaweicloudsdkeihealth/v1/model/optimization_mode.py,sha256=
|
616
|
+
huaweicloudsdkeihealth/v1/model/optimization_mode.py,sha256=WJgKzcIhr-md04iOwOoWsiPRCbnEjm0AckYnD7eraW0,2513
|
599
617
|
huaweicloudsdkeihealth/v1/model/optimization_result.py,sha256=6MORo5qtpi8CEFOGlKD07vL7krX5l3ktJ-KZI4dHF8w,15553
|
600
618
|
huaweicloudsdkeihealth/v1/model/optimization_result_item.py,sha256=riPXSM8cBPk1eGxVCOyT4FaRKmWs2yL-2uZISzhMHwg,6735
|
601
619
|
huaweicloudsdkeihealth/v1/model/optimization_task_data.py,sha256=WUBkzZUCEXdRPRjuHZBeiG_2yeb6COJD5CrMeuNK-Ks,9182
|
@@ -647,6 +665,7 @@ huaweicloudsdkeihealth/v1/model/reboot_node_request.py,sha256=sd9f7KZP4PuftavjnK
|
|
647
665
|
huaweicloudsdkeihealth/v1/model/reboot_node_response.py,sha256=7k-XE4mYCdzVUXtwHerl5Otrn0_BeFD1h0b6aYFwNic,2423
|
648
666
|
huaweicloudsdkeihealth/v1/model/receptor_drug_file.py,sha256=ZIqK5WCvATnnqpbjj-o5WLFkqdk3IH6p5e7ZtBuHuCw,5671
|
649
667
|
huaweicloudsdkeihealth/v1/model/receptor_drug_file_req.py,sha256=6kwqeAA_nB6MQSwDDqV5tnLAZfCiYwmWVs2SYmI987A,6592
|
668
|
+
huaweicloudsdkeihealth/v1/model/receptor_dto.py,sha256=2Km6xwRv5R5S8tJ0ZAe2c9onUWRi8m4-TjWrpBRRa38,8075
|
650
669
|
huaweicloudsdkeihealth/v1/model/receptor_ligand_info_dto.py,sha256=uRqsR0F6-6asRWJrmtRKS_hOfHsGTpY_mRkj4G5aFbE,7908
|
651
670
|
huaweicloudsdkeihealth/v1/model/recognize_drug_receptor_pocket_request.py,sha256=F1P5F11KjochmmO1m-64fLooLmQg1upzB01fYu0KW8A,4556
|
652
671
|
huaweicloudsdkeihealth/v1/model/recognize_drug_receptor_pocket_response.py,sha256=CqUigbwm7XYmIeqlU-O3hCDv0D3Z1vjSfh_2gvg7Ea8,4356
|
@@ -675,6 +694,9 @@ huaweicloudsdkeihealth/v1/model/run_drug_receptor_preprocess_response.py,sha256=
|
|
675
694
|
huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_req.py,sha256=BNW0mvIhLpdIkh0TKBV5Q58z2u_sTyz0vzNXGhOUsog,4770
|
676
695
|
huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_request.py,sha256=YSkySfXnaVWlLbQZfTCbk-lSJcSsWo3xjU3P2cqMcms,4185
|
677
696
|
huaweicloudsdkeihealth/v1/model/run_fasta_preprocess_response.py,sha256=3xH7oARzVNljRm04yYYqfgRl1JaVcbSExfJ_E_SB7OE,4135
|
697
|
+
huaweicloudsdkeihealth/v1/model/run_format_converter_req.py,sha256=CTfd-ZRFEYWx24iMFIjcfhWVc0H2jfsdFpGdZTVbVeQ,4828
|
698
|
+
huaweicloudsdkeihealth/v1/model/run_format_converter_request.py,sha256=cyovCCx-V3ratRXZ1IqXxe3qHcT3xh8p1Tbqs5ckwK0,4185
|
699
|
+
huaweicloudsdkeihealth/v1/model/run_format_converter_response.py,sha256=8oHGrsjg8GFdTdEupzjyKPhVuwmahP2fxOUv64hopuU,3094
|
678
700
|
huaweicloudsdkeihealth/v1/model/run_pocket_req.py,sha256=pXP3RwMFeoQ_Gpoc9epOWhD0AnWd4__McqaoJggktmY,4333
|
679
701
|
huaweicloudsdkeihealth/v1/model/run_receptor_preprocess_req.py,sha256=U07s-1QUYSIOVjwPiORBj_nG9Up_oWlN820zDT9D4X8,6610
|
680
702
|
huaweicloudsdkeihealth/v1/model/run_surface_points_req.py,sha256=DbGmexTPr8O_OOVfE9a5G0vff9nsYeAnDa0CCMqk91k,4823
|
@@ -708,6 +730,8 @@ huaweicloudsdkeihealth/v1/model/show_bms_devices_request.py,sha256=Av9xlbVC1fZlc
|
|
708
730
|
huaweicloudsdkeihealth/v1/model/show_bms_devices_response.py,sha256=RyRIpnBnleJS0FA0H-g9YeIkUST3LleK8Xtl5DxlTsY,3217
|
709
731
|
huaweicloudsdkeihealth/v1/model/show_bucket_storage_request.py,sha256=k3L7un8tIU1xY2Pwm_Y-brgHAxNw_NLozWMp7FXz5Vk,3572
|
710
732
|
huaweicloudsdkeihealth/v1/model/show_bucket_storage_response.py,sha256=P2epQSGPFbPk7I5EJteYV-C43bHfOzSUfw0KyLbRfMs,3178
|
733
|
+
huaweicloudsdkeihealth/v1/model/show_clustering_job_request.py,sha256=ePryLxSRycmWi2O6Qo9rRFIRuAO9gVkxKrd4Am2pelc,4015
|
734
|
+
huaweicloudsdkeihealth/v1/model/show_clustering_job_response.py,sha256=CzcrkAA-wBFw197qZOtbEh5IA3HgPLZxRp9gNFu47hM,6183
|
711
735
|
huaweicloudsdkeihealth/v1/model/show_cpi_job_request.py,sha256=aLT04qD8ZY2liZG3kug8J4IwLxg6pTX7WDK5dBqmRYw,3938
|
712
736
|
huaweicloudsdkeihealth/v1/model/show_cpi_job_response.py,sha256=738yRPAiXOAE57t_0YX6c0HPMgfQOY1kB3zjZASKN48,5178
|
713
737
|
huaweicloudsdkeihealth/v1/model/show_cpi_task_result_request.py,sha256=Ub1USgBgNCa0muwrhEv_1K59DqkibuF-_1SBPldLtto,3047
|
@@ -1040,8 +1064,8 @@ huaweicloudsdkeihealth/v2/model/smiles.py,sha256=Knee_wJ19ixWYsx59Fp8kreax74VfD6
|
|
1040
1064
|
huaweicloudsdkeihealth/v2/model/value_range.py,sha256=pJ-AqFnamCj3lZxEfh54rPdvUduEtqvqmMm0CMAXNTI,5460
|
1041
1065
|
huaweicloudsdkeihealth/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1042
1066
|
huaweicloudsdkeihealth/v2/region/eihealth_region.py,sha256=QbxjdzPTE_Sedf1c02Rbn3g9JFLDOtHjJZdxtKefdSs,1266
|
1043
|
-
huaweicloudsdkeihealth-3.1.
|
1044
|
-
huaweicloudsdkeihealth-3.1.
|
1045
|
-
huaweicloudsdkeihealth-3.1.
|
1046
|
-
huaweicloudsdkeihealth-3.1.
|
1047
|
-
huaweicloudsdkeihealth-3.1.
|
1067
|
+
huaweicloudsdkeihealth-3.1.123.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
1068
|
+
huaweicloudsdkeihealth-3.1.123.dist-info/METADATA,sha256=ITxOtsWj8HDdbYBSHgHNnPiSId2gofH7ZAIbyKTmBIU,1150
|
1069
|
+
huaweicloudsdkeihealth-3.1.123.dist-info/WHEEL,sha256=QyeGbh-t8WT0nt0_LNSP02jN-g4ymd1egk1U3osCGMU,110
|
1070
|
+
huaweicloudsdkeihealth-3.1.123.dist-info/top_level.txt,sha256=Xr25kDcX0TKxsWwDM_9bVOpMpaOXSxNNSvkh_ZDAeq8,23
|
1071
|
+
huaweicloudsdkeihealth-3.1.123.dist-info/RECORD,,
|
{huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/LICENSE
RENAMED
File without changes
|
{huaweicloudsdkeihealth-3.1.121.dist-info → huaweicloudsdkeihealth-3.1.123.dist-info}/top_level.txt
RENAMED
File without changes
|