huaweicloudsdkdrs 3.1.118__py2.py3-none-any.whl → 3.1.120__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.
- huaweicloudsdkdrs/v5/model/compare_job_info.py +34 -5
- {huaweicloudsdkdrs-3.1.118.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/METADATA +2 -2
- {huaweicloudsdkdrs-3.1.118.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/RECORD +6 -6
- {huaweicloudsdkdrs-3.1.118.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdrs-3.1.118.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdrs-3.1.118.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/top_level.txt +0 -0
@@ -24,8 +24,9 @@ class CompareJobInfo:
|
|
24
24
|
'status': 'str',
|
25
25
|
'compute_type': 'str',
|
26
26
|
'export_status': 'str',
|
27
|
-
'report_remain_seconds': '
|
27
|
+
'report_remain_seconds': 'int',
|
28
28
|
'compare_job_tag': 'dict(str, str)',
|
29
|
+
'options': 'dict(str, str)',
|
29
30
|
'error_msg': 'str'
|
30
31
|
}
|
31
32
|
|
@@ -39,10 +40,11 @@ class CompareJobInfo:
|
|
39
40
|
'export_status': 'export_status',
|
40
41
|
'report_remain_seconds': 'report_remain_seconds',
|
41
42
|
'compare_job_tag': 'compare_job_tag',
|
43
|
+
'options': 'options',
|
42
44
|
'error_msg': 'error_msg'
|
43
45
|
}
|
44
46
|
|
45
|
-
def __init__(self, id=None, type=None, start_time=None, end_time=None, status=None, compute_type=None, export_status=None, report_remain_seconds=None, compare_job_tag=None, error_msg=None):
|
47
|
+
def __init__(self, id=None, type=None, start_time=None, end_time=None, status=None, compute_type=None, export_status=None, report_remain_seconds=None, compare_job_tag=None, options=None, error_msg=None):
|
46
48
|
"""CompareJobInfo
|
47
49
|
|
48
50
|
The model defined in huaweicloud sdk
|
@@ -62,9 +64,11 @@ class CompareJobInfo:
|
|
62
64
|
:param export_status: 导出比对结果状态。
|
63
65
|
:type export_status: str
|
64
66
|
:param report_remain_seconds: 导出比对结果有效期剩余时间。
|
65
|
-
:type report_remain_seconds:
|
67
|
+
:type report_remain_seconds: int
|
66
68
|
:param compare_job_tag: 对比任务的标签。
|
67
69
|
:type compare_job_tag: dict(str, str)
|
70
|
+
:param options: 对比任务选项。
|
71
|
+
:type options: dict(str, str)
|
68
72
|
:param error_msg: 失败原因。
|
69
73
|
:type error_msg: str
|
70
74
|
"""
|
@@ -80,6 +84,7 @@ class CompareJobInfo:
|
|
80
84
|
self._export_status = None
|
81
85
|
self._report_remain_seconds = None
|
82
86
|
self._compare_job_tag = None
|
87
|
+
self._options = None
|
83
88
|
self._error_msg = None
|
84
89
|
self.discriminator = None
|
85
90
|
|
@@ -101,6 +106,8 @@ class CompareJobInfo:
|
|
101
106
|
self.report_remain_seconds = report_remain_seconds
|
102
107
|
if compare_job_tag is not None:
|
103
108
|
self.compare_job_tag = compare_job_tag
|
109
|
+
if options is not None:
|
110
|
+
self.options = options
|
104
111
|
if error_msg is not None:
|
105
112
|
self.error_msg = error_msg
|
106
113
|
|
@@ -265,7 +272,7 @@ class CompareJobInfo:
|
|
265
272
|
导出比对结果有效期剩余时间。
|
266
273
|
|
267
274
|
:return: The report_remain_seconds of this CompareJobInfo.
|
268
|
-
:rtype:
|
275
|
+
:rtype: int
|
269
276
|
"""
|
270
277
|
return self._report_remain_seconds
|
271
278
|
|
@@ -276,7 +283,7 @@ class CompareJobInfo:
|
|
276
283
|
导出比对结果有效期剩余时间。
|
277
284
|
|
278
285
|
:param report_remain_seconds: The report_remain_seconds of this CompareJobInfo.
|
279
|
-
:type report_remain_seconds:
|
286
|
+
:type report_remain_seconds: int
|
280
287
|
"""
|
281
288
|
self._report_remain_seconds = report_remain_seconds
|
282
289
|
|
@@ -302,6 +309,28 @@ class CompareJobInfo:
|
|
302
309
|
"""
|
303
310
|
self._compare_job_tag = compare_job_tag
|
304
311
|
|
312
|
+
@property
|
313
|
+
def options(self):
|
314
|
+
"""Gets the options of this CompareJobInfo.
|
315
|
+
|
316
|
+
对比任务选项。
|
317
|
+
|
318
|
+
:return: The options of this CompareJobInfo.
|
319
|
+
:rtype: dict(str, str)
|
320
|
+
"""
|
321
|
+
return self._options
|
322
|
+
|
323
|
+
@options.setter
|
324
|
+
def options(self, options):
|
325
|
+
"""Sets the options of this CompareJobInfo.
|
326
|
+
|
327
|
+
对比任务选项。
|
328
|
+
|
329
|
+
:param options: The options of this CompareJobInfo.
|
330
|
+
:type options: dict(str, str)
|
331
|
+
"""
|
332
|
+
self._options = options
|
333
|
+
|
305
334
|
@property
|
306
335
|
def error_msg(self):
|
307
336
|
"""Gets the error_msg of this CompareJobInfo.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkdrs
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.120
|
4
4
|
Summary: DRS
|
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.120
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -333,7 +333,7 @@ huaweicloudsdkdrs/v5/model/collect_position_async_response.py,sha256=FR8Bm9qf2zD
|
|
333
333
|
huaweicloudsdkdrs/v5/model/column_object.py,sha256=PKvlMCoISaiIOjT0RMibs7jRYLc3GoNmg7-H9aQy2ME,18435
|
334
334
|
huaweicloudsdkdrs/v5/model/commit_async_job_request.py,sha256=9LCnXRcsLc3kGUNtGWzL-3xOG_Gdqiv-noL2f6nUW4Y,4165
|
335
335
|
huaweicloudsdkdrs/v5/model/commit_async_job_response.py,sha256=FD5Yr5p2seUkOZF4u5GPzt63t7baexTd1FCUZPP1KRo,3189
|
336
|
-
huaweicloudsdkdrs/v5/model/compare_job_info.py,sha256=
|
336
|
+
huaweicloudsdkdrs/v5/model/compare_job_info.py,sha256=vmGqzzATClTE6TTTE4jVAbaunK0kGV03aTA-U87gq_8,12037
|
337
337
|
huaweicloudsdkdrs/v5/model/compare_result_info.py,sha256=ojIIo8Qze7lbPZKcBo4KNgrnMmTQ6rJGY9rQHZteqqw,13453
|
338
338
|
huaweicloudsdkdrs/v5/model/compare_task_params.py,sha256=Njcek_VFxI_jDFJ_ptyhURRDfbbmYK-6lZvgIUwLh3Y,7933
|
339
339
|
huaweicloudsdkdrs/v5/model/connection_config.py,sha256=tIcm9NLAF0tNbaiOjldG2iVN2B0ThawY0KCNZ8aFOLY,3149
|
@@ -609,8 +609,8 @@ huaweicloudsdkdrs/v5/model/validate_job_name_request.py,sha256=74qQd020c2h8BdFUs
|
|
609
609
|
huaweicloudsdkdrs/v5/model/validate_job_name_response.py,sha256=Yehy1O1CeximGx5YvOn7luyGGLz__HTT-tWpZTV0BUE,4895
|
610
610
|
huaweicloudsdkdrs/v5/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
611
611
|
huaweicloudsdkdrs/v5/region/drs_region.py,sha256=TdtC3M5leXWUKIlgDJCujSX7OazDcjz855amM6V0OI4,4595
|
612
|
-
huaweicloudsdkdrs-3.1.
|
613
|
-
huaweicloudsdkdrs-3.1.
|
614
|
-
huaweicloudsdkdrs-3.1.
|
615
|
-
huaweicloudsdkdrs-3.1.
|
616
|
-
huaweicloudsdkdrs-3.1.
|
612
|
+
huaweicloudsdkdrs-3.1.120.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
613
|
+
huaweicloudsdkdrs-3.1.120.dist-info/METADATA,sha256=ngxw3aL-LXHuKyccbnsEK65wIwGWLw8uT3FU4iCuTV0,1135
|
614
|
+
huaweicloudsdkdrs-3.1.120.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
615
|
+
huaweicloudsdkdrs-3.1.120.dist-info/top_level.txt,sha256=FJmOnPaGx7WoM_NJdeECns2-V--JJZyO0PVtyQAgpYg,18
|
616
|
+
huaweicloudsdkdrs-3.1.120.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|