huaweicloudsdkeihealth 3.1.110__py2.py3-none-any.whl → 3.1.111__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 +1 -0
- huaweicloudsdkeihealth/v1/model/__init__.py +1 -0
- huaweicloudsdkeihealth/v1/model/base_model_dto.py +1 -30
- huaweicloudsdkeihealth/v1/model/create_fep_job_req.py +30 -1
- huaweicloudsdkeihealth/v1/model/job_result.py +32 -3
- huaweicloudsdkeihealth/v1/model/show_fep_job_response.py +30 -1
- huaweicloudsdkeihealth/v1/model/show_mol_batch_download_task_response.py +28 -3
- huaweicloudsdkeihealth/v1/model/task_progress.py +115 -0
- {huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/METADATA +2 -2
- {huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/RECORD +13 -12
- {huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/LICENSE +0 -0
- {huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/WHEEL +0 -0
- {huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/top_level.txt +0 -0
@@ -898,6 +898,7 @@ from huaweicloudsdkeihealth.v1.model.task_instance_spec_containers_rsp import Ta
|
|
898
898
|
from huaweicloudsdkeihealth.v1.model.task_instance_spec_rsp import TaskInstanceSpecRsp
|
899
899
|
from huaweicloudsdkeihealth.v1.model.task_instance_status_rsp import TaskInstanceStatusRsp
|
900
900
|
from huaweicloudsdkeihealth.v1.model.task_parameter_dto import TaskParameterDto
|
901
|
+
from huaweicloudsdkeihealth.v1.model.task_progress import TaskProgress
|
901
902
|
from huaweicloudsdkeihealth.v1.model.task_resource_dto import TaskResourceDto
|
902
903
|
from huaweicloudsdkeihealth.v1.model.task_runtime_dto import TaskRuntimeDto
|
903
904
|
from huaweicloudsdkeihealth.v1.model.template_rsp import TemplateRsp
|
@@ -896,6 +896,7 @@ from huaweicloudsdkeihealth.v1.model.task_instance_spec_containers_rsp import Ta
|
|
896
896
|
from huaweicloudsdkeihealth.v1.model.task_instance_spec_rsp import TaskInstanceSpecRsp
|
897
897
|
from huaweicloudsdkeihealth.v1.model.task_instance_status_rsp import TaskInstanceStatusRsp
|
898
898
|
from huaweicloudsdkeihealth.v1.model.task_parameter_dto import TaskParameterDto
|
899
|
+
from huaweicloudsdkeihealth.v1.model.task_progress import TaskProgress
|
899
900
|
from huaweicloudsdkeihealth.v1.model.task_resource_dto import TaskResourceDto
|
900
901
|
from huaweicloudsdkeihealth.v1.model.task_runtime_dto import TaskRuntimeDto
|
901
902
|
from huaweicloudsdkeihealth.v1.model.template_rsp import TemplateRsp
|
@@ -20,7 +20,6 @@ class BaseModelDto:
|
|
20
20
|
'name': 'str',
|
21
21
|
'id': 'str',
|
22
22
|
'create_time': 'str',
|
23
|
-
'creator': 'str',
|
24
23
|
'description': 'str'
|
25
24
|
}
|
26
25
|
|
@@ -28,11 +27,10 @@ class BaseModelDto:
|
|
28
27
|
'name': 'name',
|
29
28
|
'id': 'id',
|
30
29
|
'create_time': 'create_time',
|
31
|
-
'creator': 'creator',
|
32
30
|
'description': 'description'
|
33
31
|
}
|
34
32
|
|
35
|
-
def __init__(self, name=None, id=None, create_time=None,
|
33
|
+
def __init__(self, name=None, id=None, create_time=None, description=None):
|
36
34
|
"""BaseModelDto
|
37
35
|
|
38
36
|
The model defined in huaweicloud sdk
|
@@ -43,8 +41,6 @@ class BaseModelDto:
|
|
43
41
|
:type id: str
|
44
42
|
:param create_time: 模型创建时间
|
45
43
|
:type create_time: str
|
46
|
-
:param creator: 创建模型的用户名称
|
47
|
-
:type creator: str
|
48
44
|
:param description: 模型描述信息
|
49
45
|
:type description: str
|
50
46
|
"""
|
@@ -54,7 +50,6 @@ class BaseModelDto:
|
|
54
50
|
self._name = None
|
55
51
|
self._id = None
|
56
52
|
self._create_time = None
|
57
|
-
self._creator = None
|
58
53
|
self._description = None
|
59
54
|
self.discriminator = None
|
60
55
|
|
@@ -64,8 +59,6 @@ class BaseModelDto:
|
|
64
59
|
self.id = id
|
65
60
|
if create_time is not None:
|
66
61
|
self.create_time = create_time
|
67
|
-
if creator is not None:
|
68
|
-
self.creator = creator
|
69
62
|
if description is not None:
|
70
63
|
self.description = description
|
71
64
|
|
@@ -135,28 +128,6 @@ class BaseModelDto:
|
|
135
128
|
"""
|
136
129
|
self._create_time = create_time
|
137
130
|
|
138
|
-
@property
|
139
|
-
def creator(self):
|
140
|
-
"""Gets the creator of this BaseModelDto.
|
141
|
-
|
142
|
-
创建模型的用户名称
|
143
|
-
|
144
|
-
:return: The creator of this BaseModelDto.
|
145
|
-
:rtype: str
|
146
|
-
"""
|
147
|
-
return self._creator
|
148
|
-
|
149
|
-
@creator.setter
|
150
|
-
def creator(self, creator):
|
151
|
-
"""Sets the creator of this BaseModelDto.
|
152
|
-
|
153
|
-
创建模型的用户名称
|
154
|
-
|
155
|
-
:param creator: The creator of this BaseModelDto.
|
156
|
-
:type creator: str
|
157
|
-
"""
|
158
|
-
self._creator = creator
|
159
|
-
|
160
131
|
@property
|
161
132
|
def description(self):
|
162
133
|
"""Gets the description of this BaseModelDto.
|
@@ -19,6 +19,7 @@ class CreateFepJobReq:
|
|
19
19
|
openapi_types = {
|
20
20
|
'basic_info': 'CreateDrugJobBasicInfo',
|
21
21
|
'receptor': 'ReceptorDrugFile',
|
22
|
+
'add_membrane': 'bool',
|
22
23
|
'ligands': 'list[LigandPreviewDto]',
|
23
24
|
'graph': 'FepGraphDto',
|
24
25
|
'params': 'FepParamDto'
|
@@ -27,12 +28,13 @@ class CreateFepJobReq:
|
|
27
28
|
attribute_map = {
|
28
29
|
'basic_info': 'basic_info',
|
29
30
|
'receptor': 'receptor',
|
31
|
+
'add_membrane': 'add_membrane',
|
30
32
|
'ligands': 'ligands',
|
31
33
|
'graph': 'graph',
|
32
34
|
'params': 'params'
|
33
35
|
}
|
34
36
|
|
35
|
-
def __init__(self, basic_info=None, receptor=None, ligands=None, graph=None, params=None):
|
37
|
+
def __init__(self, basic_info=None, receptor=None, add_membrane=None, ligands=None, graph=None, params=None):
|
36
38
|
"""CreateFepJobReq
|
37
39
|
|
38
40
|
The model defined in huaweicloud sdk
|
@@ -41,6 +43,8 @@ class CreateFepJobReq:
|
|
41
43
|
:type basic_info: :class:`huaweicloudsdkeihealth.v1.CreateDrugJobBasicInfo`
|
42
44
|
:param receptor:
|
43
45
|
:type receptor: :class:`huaweicloudsdkeihealth.v1.ReceptorDrugFile`
|
46
|
+
:param add_membrane: 是否加膜处理
|
47
|
+
:type add_membrane: bool
|
44
48
|
:param ligands: 配体列表
|
45
49
|
:type ligands: list[:class:`huaweicloudsdkeihealth.v1.LigandPreviewDto`]
|
46
50
|
:param graph:
|
@@ -53,6 +57,7 @@ class CreateFepJobReq:
|
|
53
57
|
|
54
58
|
self._basic_info = None
|
55
59
|
self._receptor = None
|
60
|
+
self._add_membrane = None
|
56
61
|
self._ligands = None
|
57
62
|
self._graph = None
|
58
63
|
self._params = None
|
@@ -60,6 +65,8 @@ class CreateFepJobReq:
|
|
60
65
|
|
61
66
|
self.basic_info = basic_info
|
62
67
|
self.receptor = receptor
|
68
|
+
if add_membrane is not None:
|
69
|
+
self.add_membrane = add_membrane
|
63
70
|
self.ligands = ligands
|
64
71
|
self.graph = graph
|
65
72
|
self.params = params
|
@@ -100,6 +107,28 @@ class CreateFepJobReq:
|
|
100
107
|
"""
|
101
108
|
self._receptor = receptor
|
102
109
|
|
110
|
+
@property
|
111
|
+
def add_membrane(self):
|
112
|
+
"""Gets the add_membrane of this CreateFepJobReq.
|
113
|
+
|
114
|
+
是否加膜处理
|
115
|
+
|
116
|
+
:return: The add_membrane of this CreateFepJobReq.
|
117
|
+
:rtype: bool
|
118
|
+
"""
|
119
|
+
return self._add_membrane
|
120
|
+
|
121
|
+
@add_membrane.setter
|
122
|
+
def add_membrane(self, add_membrane):
|
123
|
+
"""Sets the add_membrane of this CreateFepJobReq.
|
124
|
+
|
125
|
+
是否加膜处理
|
126
|
+
|
127
|
+
:param add_membrane: The add_membrane of this CreateFepJobReq.
|
128
|
+
:type add_membrane: bool
|
129
|
+
"""
|
130
|
+
self._add_membrane = add_membrane
|
131
|
+
|
103
132
|
@property
|
104
133
|
def ligands(self):
|
105
134
|
"""Gets the ligands of this CreateFepJobReq.
|
@@ -18,15 +18,17 @@ class JobResult:
|
|
18
18
|
|
19
19
|
openapi_types = {
|
20
20
|
'total_count': 'int',
|
21
|
-
'failed_count': 'int'
|
21
|
+
'failed_count': 'int',
|
22
|
+
'sub_tasks_duration': 'list[float]'
|
22
23
|
}
|
23
24
|
|
24
25
|
attribute_map = {
|
25
26
|
'total_count': 'total_count',
|
26
|
-
'failed_count': 'failed_count'
|
27
|
+
'failed_count': 'failed_count',
|
28
|
+
'sub_tasks_duration': 'sub_tasks_duration'
|
27
29
|
}
|
28
30
|
|
29
|
-
def __init__(self, total_count=None, failed_count=None):
|
31
|
+
def __init__(self, total_count=None, failed_count=None, sub_tasks_duration=None):
|
30
32
|
"""JobResult
|
31
33
|
|
32
34
|
The model defined in huaweicloud sdk
|
@@ -35,18 +37,23 @@ class JobResult:
|
|
35
37
|
:type total_count: int
|
36
38
|
:param failed_count: 失败个数
|
37
39
|
:type failed_count: int
|
40
|
+
:param sub_tasks_duration: 子任务运行时长(秒)。
|
41
|
+
:type sub_tasks_duration: list[float]
|
38
42
|
"""
|
39
43
|
|
40
44
|
|
41
45
|
|
42
46
|
self._total_count = None
|
43
47
|
self._failed_count = None
|
48
|
+
self._sub_tasks_duration = None
|
44
49
|
self.discriminator = None
|
45
50
|
|
46
51
|
if total_count is not None:
|
47
52
|
self.total_count = total_count
|
48
53
|
if failed_count is not None:
|
49
54
|
self.failed_count = failed_count
|
55
|
+
if sub_tasks_duration is not None:
|
56
|
+
self.sub_tasks_duration = sub_tasks_duration
|
50
57
|
|
51
58
|
@property
|
52
59
|
def total_count(self):
|
@@ -92,6 +99,28 @@ class JobResult:
|
|
92
99
|
"""
|
93
100
|
self._failed_count = failed_count
|
94
101
|
|
102
|
+
@property
|
103
|
+
def sub_tasks_duration(self):
|
104
|
+
"""Gets the sub_tasks_duration of this JobResult.
|
105
|
+
|
106
|
+
子任务运行时长(秒)。
|
107
|
+
|
108
|
+
:return: The sub_tasks_duration of this JobResult.
|
109
|
+
:rtype: list[float]
|
110
|
+
"""
|
111
|
+
return self._sub_tasks_duration
|
112
|
+
|
113
|
+
@sub_tasks_duration.setter
|
114
|
+
def sub_tasks_duration(self, sub_tasks_duration):
|
115
|
+
"""Sets the sub_tasks_duration of this JobResult.
|
116
|
+
|
117
|
+
子任务运行时长(秒)。
|
118
|
+
|
119
|
+
:param sub_tasks_duration: The sub_tasks_duration of this JobResult.
|
120
|
+
:type sub_tasks_duration: list[float]
|
121
|
+
"""
|
122
|
+
self._sub_tasks_duration = sub_tasks_duration
|
123
|
+
|
95
124
|
def to_dict(self):
|
96
125
|
"""Returns the model properties as a dict"""
|
97
126
|
result = {}
|
@@ -20,6 +20,7 @@ class ShowFepJobResponse(SdkResponse):
|
|
20
20
|
openapi_types = {
|
21
21
|
'basic_info': 'DrugJobDto',
|
22
22
|
'receptor': 'ReceptorDrugFile',
|
23
|
+
'add_membrane': 'bool',
|
23
24
|
'ligands': 'list[LigandPreviewDto]',
|
24
25
|
'graph': 'FepGraphDto',
|
25
26
|
'params': 'FepParamDto',
|
@@ -30,6 +31,7 @@ class ShowFepJobResponse(SdkResponse):
|
|
30
31
|
attribute_map = {
|
31
32
|
'basic_info': 'basic_info',
|
32
33
|
'receptor': 'receptor',
|
34
|
+
'add_membrane': 'add_membrane',
|
33
35
|
'ligands': 'ligands',
|
34
36
|
'graph': 'graph',
|
35
37
|
'params': 'params',
|
@@ -37,7 +39,7 @@ class ShowFepJobResponse(SdkResponse):
|
|
37
39
|
'part_failed_reason': 'part_failed_reason'
|
38
40
|
}
|
39
41
|
|
40
|
-
def __init__(self, basic_info=None, receptor=None, ligands=None, graph=None, params=None, job_result=None, part_failed_reason=None):
|
42
|
+
def __init__(self, basic_info=None, receptor=None, add_membrane=None, ligands=None, graph=None, params=None, job_result=None, part_failed_reason=None):
|
41
43
|
"""ShowFepJobResponse
|
42
44
|
|
43
45
|
The model defined in huaweicloud sdk
|
@@ -46,6 +48,8 @@ class ShowFepJobResponse(SdkResponse):
|
|
46
48
|
:type basic_info: :class:`huaweicloudsdkeihealth.v1.DrugJobDto`
|
47
49
|
:param receptor:
|
48
50
|
:type receptor: :class:`huaweicloudsdkeihealth.v1.ReceptorDrugFile`
|
51
|
+
:param add_membrane: 是否加膜处理
|
52
|
+
:type add_membrane: bool
|
49
53
|
:param ligands: 配体列表
|
50
54
|
:type ligands: list[:class:`huaweicloudsdkeihealth.v1.LigandPreviewDto`]
|
51
55
|
:param graph:
|
@@ -62,6 +66,7 @@ class ShowFepJobResponse(SdkResponse):
|
|
62
66
|
|
63
67
|
self._basic_info = None
|
64
68
|
self._receptor = None
|
69
|
+
self._add_membrane = None
|
65
70
|
self._ligands = None
|
66
71
|
self._graph = None
|
67
72
|
self._params = None
|
@@ -73,6 +78,8 @@ class ShowFepJobResponse(SdkResponse):
|
|
73
78
|
self.basic_info = basic_info
|
74
79
|
if receptor is not None:
|
75
80
|
self.receptor = receptor
|
81
|
+
if add_membrane is not None:
|
82
|
+
self.add_membrane = add_membrane
|
76
83
|
if ligands is not None:
|
77
84
|
self.ligands = ligands
|
78
85
|
if graph is not None:
|
@@ -120,6 +127,28 @@ class ShowFepJobResponse(SdkResponse):
|
|
120
127
|
"""
|
121
128
|
self._receptor = receptor
|
122
129
|
|
130
|
+
@property
|
131
|
+
def add_membrane(self):
|
132
|
+
"""Gets the add_membrane of this ShowFepJobResponse.
|
133
|
+
|
134
|
+
是否加膜处理
|
135
|
+
|
136
|
+
:return: The add_membrane of this ShowFepJobResponse.
|
137
|
+
:rtype: bool
|
138
|
+
"""
|
139
|
+
return self._add_membrane
|
140
|
+
|
141
|
+
@add_membrane.setter
|
142
|
+
def add_membrane(self, add_membrane):
|
143
|
+
"""Sets the add_membrane of this ShowFepJobResponse.
|
144
|
+
|
145
|
+
是否加膜处理
|
146
|
+
|
147
|
+
:param add_membrane: The add_membrane of this ShowFepJobResponse.
|
148
|
+
:type add_membrane: bool
|
149
|
+
"""
|
150
|
+
self._add_membrane = add_membrane
|
151
|
+
|
123
152
|
@property
|
124
153
|
def ligands(self):
|
125
154
|
"""Gets the ligands of this ShowFepJobResponse.
|
@@ -20,16 +20,18 @@ class ShowMolBatchDownloadTaskResponse(SdkResponse):
|
|
20
20
|
openapi_types = {
|
21
21
|
'status': 'str',
|
22
22
|
'filename': 'str',
|
23
|
-
'out_dir': 'str'
|
23
|
+
'out_dir': 'str',
|
24
|
+
'progress': 'TaskProgress'
|
24
25
|
}
|
25
26
|
|
26
27
|
attribute_map = {
|
27
28
|
'status': 'status',
|
28
29
|
'filename': 'filename',
|
29
|
-
'out_dir': 'out_dir'
|
30
|
+
'out_dir': 'out_dir',
|
31
|
+
'progress': 'progress'
|
30
32
|
}
|
31
33
|
|
32
|
-
def __init__(self, status=None, filename=None, out_dir=None):
|
34
|
+
def __init__(self, status=None, filename=None, out_dir=None, progress=None):
|
33
35
|
"""ShowMolBatchDownloadTaskResponse
|
34
36
|
|
35
37
|
The model defined in huaweicloud sdk
|
@@ -40,6 +42,8 @@ class ShowMolBatchDownloadTaskResponse(SdkResponse):
|
|
40
42
|
:type filename: str
|
41
43
|
:param out_dir: 下载路径
|
42
44
|
:type out_dir: str
|
45
|
+
:param progress:
|
46
|
+
:type progress: :class:`huaweicloudsdkeihealth.v1.TaskProgress`
|
43
47
|
"""
|
44
48
|
|
45
49
|
super(ShowMolBatchDownloadTaskResponse, self).__init__()
|
@@ -47,6 +51,7 @@ class ShowMolBatchDownloadTaskResponse(SdkResponse):
|
|
47
51
|
self._status = None
|
48
52
|
self._filename = None
|
49
53
|
self._out_dir = None
|
54
|
+
self._progress = None
|
50
55
|
self.discriminator = None
|
51
56
|
|
52
57
|
if status is not None:
|
@@ -55,6 +60,8 @@ class ShowMolBatchDownloadTaskResponse(SdkResponse):
|
|
55
60
|
self.filename = filename
|
56
61
|
if out_dir is not None:
|
57
62
|
self.out_dir = out_dir
|
63
|
+
if progress is not None:
|
64
|
+
self.progress = progress
|
58
65
|
|
59
66
|
@property
|
60
67
|
def status(self):
|
@@ -122,6 +129,24 @@ class ShowMolBatchDownloadTaskResponse(SdkResponse):
|
|
122
129
|
"""
|
123
130
|
self._out_dir = out_dir
|
124
131
|
|
132
|
+
@property
|
133
|
+
def progress(self):
|
134
|
+
"""Gets the progress of this ShowMolBatchDownloadTaskResponse.
|
135
|
+
|
136
|
+
:return: The progress of this ShowMolBatchDownloadTaskResponse.
|
137
|
+
:rtype: :class:`huaweicloudsdkeihealth.v1.TaskProgress`
|
138
|
+
"""
|
139
|
+
return self._progress
|
140
|
+
|
141
|
+
@progress.setter
|
142
|
+
def progress(self, progress):
|
143
|
+
"""Sets the progress of this ShowMolBatchDownloadTaskResponse.
|
144
|
+
|
145
|
+
:param progress: The progress of this ShowMolBatchDownloadTaskResponse.
|
146
|
+
:type progress: :class:`huaweicloudsdkeihealth.v1.TaskProgress`
|
147
|
+
"""
|
148
|
+
self._progress = progress
|
149
|
+
|
125
150
|
def to_dict(self):
|
126
151
|
"""Returns the model properties as a dict"""
|
127
152
|
result = {}
|
@@ -0,0 +1,115 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class TaskProgress:
|
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
|
+
'overall': 'float'
|
21
|
+
}
|
22
|
+
|
23
|
+
attribute_map = {
|
24
|
+
'overall': 'overall'
|
25
|
+
}
|
26
|
+
|
27
|
+
def __init__(self, overall=None):
|
28
|
+
"""TaskProgress
|
29
|
+
|
30
|
+
The model defined in huaweicloud sdk
|
31
|
+
|
32
|
+
:param overall: 整体进度
|
33
|
+
:type overall: float
|
34
|
+
"""
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
self._overall = None
|
39
|
+
self.discriminator = None
|
40
|
+
|
41
|
+
if overall is not None:
|
42
|
+
self.overall = overall
|
43
|
+
|
44
|
+
@property
|
45
|
+
def overall(self):
|
46
|
+
"""Gets the overall of this TaskProgress.
|
47
|
+
|
48
|
+
整体进度
|
49
|
+
|
50
|
+
:return: The overall of this TaskProgress.
|
51
|
+
:rtype: float
|
52
|
+
"""
|
53
|
+
return self._overall
|
54
|
+
|
55
|
+
@overall.setter
|
56
|
+
def overall(self, overall):
|
57
|
+
"""Sets the overall of this TaskProgress.
|
58
|
+
|
59
|
+
整体进度
|
60
|
+
|
61
|
+
:param overall: The overall of this TaskProgress.
|
62
|
+
:type overall: float
|
63
|
+
"""
|
64
|
+
self._overall = overall
|
65
|
+
|
66
|
+
def to_dict(self):
|
67
|
+
"""Returns the model properties as a dict"""
|
68
|
+
result = {}
|
69
|
+
|
70
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
71
|
+
value = getattr(self, attr)
|
72
|
+
if isinstance(value, list):
|
73
|
+
result[attr] = list(map(
|
74
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
75
|
+
value
|
76
|
+
))
|
77
|
+
elif hasattr(value, "to_dict"):
|
78
|
+
result[attr] = value.to_dict()
|
79
|
+
elif isinstance(value, dict):
|
80
|
+
result[attr] = dict(map(
|
81
|
+
lambda item: (item[0], item[1].to_dict())
|
82
|
+
if hasattr(item[1], "to_dict") else item,
|
83
|
+
value.items()
|
84
|
+
))
|
85
|
+
else:
|
86
|
+
if attr in self.sensitive_list:
|
87
|
+
result[attr] = "****"
|
88
|
+
else:
|
89
|
+
result[attr] = value
|
90
|
+
|
91
|
+
return result
|
92
|
+
|
93
|
+
def to_str(self):
|
94
|
+
"""Returns the string representation of the model"""
|
95
|
+
import simplejson as json
|
96
|
+
if six.PY2:
|
97
|
+
import sys
|
98
|
+
reload(sys)
|
99
|
+
sys.setdefaultencoding("utf-8")
|
100
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
101
|
+
|
102
|
+
def __repr__(self):
|
103
|
+
"""For `print`"""
|
104
|
+
return self.to_str()
|
105
|
+
|
106
|
+
def __eq__(self, other):
|
107
|
+
"""Returns true if both objects are equal"""
|
108
|
+
if not isinstance(other, TaskProgress):
|
109
|
+
return False
|
110
|
+
|
111
|
+
return self.__dict__ == other.__dict__
|
112
|
+
|
113
|
+
def __ne__(self, other):
|
114
|
+
"""Returns true if both objects are not equal"""
|
115
|
+
return not self == other
|
{huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.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.111
|
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.111
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
{huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
1
|
huaweicloudsdkeihealth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
huaweicloudsdkeihealth/v1/__init__.py,sha256=
|
2
|
+
huaweicloudsdkeihealth/v1/__init__.py,sha256=rYbGVFUwHSwS6vwXDZIDX31mbYKQdl64KnDSvnOqhfc,92249
|
3
3
|
huaweicloudsdkeihealth/v1/eihealth_async_client.py,sha256=8cL3zRBNZypD3DIXFWFRIHx9g9egliAbG3WgpT7f1Cc,735445
|
4
4
|
huaweicloudsdkeihealth/v1/eihealth_client.py,sha256=y5nnr8Migoh9nsL_zn3vSoy7m_vBVjk0KOhmEc9ba2M,735988
|
5
|
-
huaweicloudsdkeihealth/v1/model/__init__.py,sha256=
|
5
|
+
huaweicloudsdkeihealth/v1/model/__init__.py,sha256=ojN6vzclk0k8X0arc1QMMbZIsLcpCbQ8pGWsWfCQoS4,92133
|
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
|
@@ -20,7 +20,7 @@ huaweicloudsdkeihealth/v1/model/async_task_status.py,sha256=LPz551y4Yr9OYq9EPder
|
|
20
20
|
huaweicloudsdkeihealth/v1/model/auto_job_list_dto.py,sha256=Nhjl7NEXnROcj9SxEWgK19WZCvZqQ5cv45x5wgDE-nI,14344
|
21
21
|
huaweicloudsdkeihealth/v1/model/backup_dto.py,sha256=IhOlkoMPUwX0LF6JeTm8d3o_jN76q6HN4HxQzWHeI_w,10828
|
22
22
|
huaweicloudsdkeihealth/v1/model/base_model.py,sha256=IXtgypJC7YvI7U7V1qgRnE5ruOuYX1ndfxuCmp7td7I,3435
|
23
|
-
huaweicloudsdkeihealth/v1/model/base_model_dto.py,sha256=
|
23
|
+
huaweicloudsdkeihealth/v1/model/base_model_dto.py,sha256=lUNXyNk8PaOloKouCYC91GNMqdyWKenaQyLJIRsnfuQ,5150
|
24
24
|
huaweicloudsdkeihealth/v1/model/basic_drug_model.py,sha256=u1dk7c71oB34XGR_TEWrMemVDlOWlEo3D7Z4z6xJQwQ,7327
|
25
25
|
huaweicloudsdkeihealth/v1/model/batch_cancel_job_request.py,sha256=VeBQK1eMWSn4qq01AnT-mwU4GjwVtHusiuOCucqkCCc,5152
|
26
26
|
huaweicloudsdkeihealth/v1/model/batch_cancel_job_response.py,sha256=WJ_Mlx7WIAJCm9dcKN1THwqPQNO7KzuuuHVnYUIkynk,3251
|
@@ -159,7 +159,7 @@ huaweicloudsdkeihealth/v1/model/create_drug_ligand_svg_request.py,sha256=pQvNxF8
|
|
159
159
|
huaweicloudsdkeihealth/v1/model/create_drug_ligand_svg_response.py,sha256=Poixnni7dnath4Um7aIHcxcFJ8-RyZ3eMbq-rKgKais,3102
|
160
160
|
huaweicloudsdkeihealth/v1/model/create_drug_model_request.py,sha256=vhuYrDilGNeyHPwatW8R-Gj6q8LGdIrMiwuqgbWDokw,3130
|
161
161
|
huaweicloudsdkeihealth/v1/model/create_drug_model_response.py,sha256=y1NPyqnOIjTi2mmPvkbGFwi5BLNqsXqjypkuo8XsrBM,4068
|
162
|
-
huaweicloudsdkeihealth/v1/model/create_fep_job_req.py,sha256=
|
162
|
+
huaweicloudsdkeihealth/v1/model/create_fep_job_req.py,sha256=UdUPTXKJA6ON-KkD1-jdeUuX-LBJu8LoE2UPrdAgZ1U,7171
|
163
163
|
huaweicloudsdkeihealth/v1/model/create_fep_job_request.py,sha256=8YMVw64blK0EByj07w86Vslsa-MYTbvMwuxPf5l0ia8,4089
|
164
164
|
huaweicloudsdkeihealth/v1/model/create_fep_job_response.py,sha256=f6bEO0k7U6Q8zfKSoVUbVCM835yGcNYlPxzN7qKZ4yI,4032
|
165
165
|
huaweicloudsdkeihealth/v1/model/create_gen_job_req.py,sha256=WMMhRsonxKvGhQ65YrFXBJW8MAixCMcTDYfBp-mnAeU,10741
|
@@ -418,7 +418,7 @@ huaweicloudsdkeihealth/v1/model/job_event_rsp.py,sha256=8XR5XTVAXLKDYEVXEBkq3BLj
|
|
418
418
|
huaweicloudsdkeihealth/v1/model/job_filter_dto.py,sha256=FOHHa8vndWysr3FoDAmiBbu3_rq2BC9Z7X7lhQESF9Q,3959
|
419
419
|
huaweicloudsdkeihealth/v1/model/job_list_dto.py,sha256=e57FaqtalM0kIYneinVBEbgaq_QlUbEwQuYbng_BrpQ,17401
|
420
420
|
huaweicloudsdkeihealth/v1/model/job_name_type.py,sha256=ivvtWuEMZfaVpSbkG3m_He5gkhJJRvUa_dqR0N40Wqs,2396
|
421
|
-
huaweicloudsdkeihealth/v1/model/job_result.py,sha256=
|
421
|
+
huaweicloudsdkeihealth/v1/model/job_result.py,sha256=8-rK-_gzB-sjKa2C4UtXiBsbmE354q3VwRuLwWNnbXE,4928
|
422
422
|
huaweicloudsdkeihealth/v1/model/job_task_dto.py,sha256=JhdVETIyMTGaQOOsyKP3nvwPon8ns25o8ILl03_8l-A,6347
|
423
423
|
huaweicloudsdkeihealth/v1/model/label_page_list_dto.py,sha256=HaLxplC_3gEQpsDkhiicNc8rkApgBLtTszljJ4g9GZI,5857
|
424
424
|
huaweicloudsdkeihealth/v1/model/label_rsp.py,sha256=gSqI87uRuPtmsW2n9bv7zgM80YVAhT7bF9lHVzL5qOU,6559
|
@@ -735,7 +735,7 @@ huaweicloudsdkeihealth/v1/model/show_evs_quota_response.py,sha256=E5nVtJt2Zs0fRH
|
|
735
735
|
huaweicloudsdkeihealth/v1/model/show_extremum_info_request.py,sha256=rA_VaobdjdKJ5HoQvWsKR2Tuq4NWQBeS-0AnVfC8u5o,4988
|
736
736
|
huaweicloudsdkeihealth/v1/model/show_extremum_info_response.py,sha256=LqmHUEMOWiOfnZ0nLi1VlAOMQ2LDMoVvwgC4ihbRucE,4121
|
737
737
|
huaweicloudsdkeihealth/v1/model/show_fep_job_request.py,sha256=WL5QkRGgTMuBKZSUymjnQkenYH__cASo-1DzurFEtkU,3938
|
738
|
-
huaweicloudsdkeihealth/v1/model/show_fep_job_response.py,sha256=
|
738
|
+
huaweicloudsdkeihealth/v1/model/show_fep_job_response.py,sha256=m5wPabr1WzwISQeIKYNflFkA__F-9nHmrPHeotmaVuU,9589
|
739
739
|
huaweicloudsdkeihealth/v1/model/show_gen_job_request.py,sha256=vDd9w2WXFqhPkSa4YpH5lD1yk6RGgLO7qScKbtGel2Y,3938
|
740
740
|
huaweicloudsdkeihealth/v1/model/show_gen_job_response.py,sha256=4mtUpLOQfJb6qhritoERgSf-u0F9TE20fDscJ8Zm9SQ,12258
|
741
741
|
huaweicloudsdkeihealth/v1/model/show_generation_task_result_request.py,sha256=_-ToB6cgwXgb-V5noiHTLBuwYnboEUR1BuCQ69vEsHI,3123
|
@@ -759,7 +759,7 @@ huaweicloudsdkeihealth/v1/model/show_message_email_config_response.py,sha256=Bcm
|
|
759
759
|
huaweicloudsdkeihealth/v1/model/show_message_receive_config_request.py,sha256=HKaYJltkYZBFEsmIn7qEJQ71Lc9iMd49xMvb68m72ao,2351
|
760
760
|
huaweicloudsdkeihealth/v1/model/show_message_receive_config_response.py,sha256=g_lqVYFSJT_Phj2T9EDx7MYhUhfcsMu-m9COnOS2CFo,5366
|
761
761
|
huaweicloudsdkeihealth/v1/model/show_mol_batch_download_task_request.py,sha256=vveHUgUJRGkunJnQXvmeMHh9jJw1BgpNiDsisoWXerk,4141
|
762
|
-
huaweicloudsdkeihealth/v1/model/show_mol_batch_download_task_response.py,sha256=
|
762
|
+
huaweicloudsdkeihealth/v1/model/show_mol_batch_download_task_response.py,sha256=ASQGNlNG8WpuviaMZ5RDYOe0QuuerlVBZlCcleC8CY4,5937
|
763
763
|
huaweicloudsdkeihealth/v1/model/show_nextflow_job_log_request.py,sha256=C6sur4-T7EuWyf-57heZgzIc_ucmk6tZW52jH2jHqDI,4269
|
764
764
|
huaweicloudsdkeihealth/v1/model/show_nextflow_job_log_response.py,sha256=Rz8orZvsPFAj4r3nIy25HKKpQGlVHaJBr-Obf-riisM,4825
|
765
765
|
huaweicloudsdkeihealth/v1/model/show_nextflow_job_reports_request.py,sha256=_vNZFZM97skQPSLuiWosZjKTjq-2FscPv3VydZwi_IA,4313
|
@@ -896,6 +896,7 @@ huaweicloudsdkeihealth/v1/model/task_instance_spec_containers_rsp.py,sha256=RtBI
|
|
896
896
|
huaweicloudsdkeihealth/v1/model/task_instance_spec_rsp.py,sha256=k52JzT7RacIBOp5GlXgdx-0YuowOQNuLA-Ps0N2bQas,3380
|
897
897
|
huaweicloudsdkeihealth/v1/model/task_instance_status_rsp.py,sha256=APQ1mawpiiHH41qiTzd_xzQuGX7b_qZWTSjGv_EgzjU,7414
|
898
898
|
huaweicloudsdkeihealth/v1/model/task_parameter_dto.py,sha256=gVmwQUgJUEbvmk_B1RkHTrJ9cLQ3-qJXax9UEo2cq6g,5209
|
899
|
+
huaweicloudsdkeihealth/v1/model/task_progress.py,sha256=4tfLZKGTJUYxMC-HmUWPOqADXETh8Crm2Otu5emDRZo,3010
|
899
900
|
huaweicloudsdkeihealth/v1/model/task_resource_dto.py,sha256=D3cusSMlpjIdX-wM4ERifgAn6TE0JaUFLWDxd879CUc,8432
|
900
901
|
huaweicloudsdkeihealth/v1/model/task_runtime_dto.py,sha256=aPZH69uBspqUG_930ifoH9MNfRwnDVZScrlE4GAq2JQ,7643
|
901
902
|
huaweicloudsdkeihealth/v1/model/template_rsp.py,sha256=k99RCghdvoOIDzEy9_YeVWeFvk0wLgAXh2-HoH-62NE,11175
|
@@ -1039,8 +1040,8 @@ huaweicloudsdkeihealth/v2/model/smiles.py,sha256=Knee_wJ19ixWYsx59Fp8kreax74VfD6
|
|
1039
1040
|
huaweicloudsdkeihealth/v2/model/value_range.py,sha256=pJ-AqFnamCj3lZxEfh54rPdvUduEtqvqmMm0CMAXNTI,5460
|
1040
1041
|
huaweicloudsdkeihealth/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1041
1042
|
huaweicloudsdkeihealth/v2/region/eihealth_region.py,sha256=QbxjdzPTE_Sedf1c02Rbn3g9JFLDOtHjJZdxtKefdSs,1266
|
1042
|
-
huaweicloudsdkeihealth-3.1.
|
1043
|
-
huaweicloudsdkeihealth-3.1.
|
1044
|
-
huaweicloudsdkeihealth-3.1.
|
1045
|
-
huaweicloudsdkeihealth-3.1.
|
1046
|
-
huaweicloudsdkeihealth-3.1.
|
1043
|
+
huaweicloudsdkeihealth-3.1.111.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
1044
|
+
huaweicloudsdkeihealth-3.1.111.dist-info/METADATA,sha256=uSv_hwJWt3O9QozFEwg4cPwI-VG_BDFamTFfBRVy3xg,1150
|
1045
|
+
huaweicloudsdkeihealth-3.1.111.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
1046
|
+
huaweicloudsdkeihealth-3.1.111.dist-info/top_level.txt,sha256=Xr25kDcX0TKxsWwDM_9bVOpMpaOXSxNNSvkh_ZDAeq8,23
|
1047
|
+
huaweicloudsdkeihealth-3.1.111.dist-info/RECORD,,
|
{huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
{huaweicloudsdkeihealth-3.1.110.dist-info → huaweicloudsdkeihealth-3.1.111.dist-info}/top_level.txt
RENAMED
File without changes
|