huaweicloudsdkdrs 3.1.117__py2.py3-none-any.whl → 3.1.119__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 +61 -3
- {huaweicloudsdkdrs-3.1.117.dist-info → huaweicloudsdkdrs-3.1.119.dist-info}/METADATA +2 -2
- {huaweicloudsdkdrs-3.1.117.dist-info → huaweicloudsdkdrs-3.1.119.dist-info}/RECORD +6 -6
- {huaweicloudsdkdrs-3.1.117.dist-info → huaweicloudsdkdrs-3.1.119.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdrs-3.1.117.dist-info → huaweicloudsdkdrs-3.1.119.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdrs-3.1.117.dist-info → huaweicloudsdkdrs-3.1.119.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,9 @@ class CompareJobInfo:
|
|
26
26
|
'export_status': 'str',
|
27
27
|
'report_remain_seconds': 'str',
|
28
28
|
'compare_job_tag': 'dict(str, str)',
|
29
|
-
'
|
29
|
+
'options': 'dict(str, str)',
|
30
|
+
'error_msg': 'str',
|
31
|
+
'dynamic_compare_delay': 'int'
|
30
32
|
}
|
31
33
|
|
32
34
|
attribute_map = {
|
@@ -39,10 +41,12 @@ class CompareJobInfo:
|
|
39
41
|
'export_status': 'export_status',
|
40
42
|
'report_remain_seconds': 'report_remain_seconds',
|
41
43
|
'compare_job_tag': 'compare_job_tag',
|
42
|
-
'
|
44
|
+
'options': 'options',
|
45
|
+
'error_msg': 'error_msg',
|
46
|
+
'dynamic_compare_delay': 'dynamic_compare_delay'
|
43
47
|
}
|
44
48
|
|
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):
|
49
|
+
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, dynamic_compare_delay=None):
|
46
50
|
"""CompareJobInfo
|
47
51
|
|
48
52
|
The model defined in huaweicloud sdk
|
@@ -65,8 +69,12 @@ class CompareJobInfo:
|
|
65
69
|
:type report_remain_seconds: str
|
66
70
|
:param compare_job_tag: 对比任务的标签。
|
67
71
|
:type compare_job_tag: dict(str, str)
|
72
|
+
:param options: 对比任务选项。
|
73
|
+
:type options: dict(str, str)
|
68
74
|
:param error_msg: 失败原因。
|
69
75
|
:type error_msg: str
|
76
|
+
:param dynamic_compare_delay: 动态比对时延。
|
77
|
+
:type dynamic_compare_delay: int
|
70
78
|
"""
|
71
79
|
|
72
80
|
|
@@ -80,7 +88,9 @@ class CompareJobInfo:
|
|
80
88
|
self._export_status = None
|
81
89
|
self._report_remain_seconds = None
|
82
90
|
self._compare_job_tag = None
|
91
|
+
self._options = None
|
83
92
|
self._error_msg = None
|
93
|
+
self._dynamic_compare_delay = None
|
84
94
|
self.discriminator = None
|
85
95
|
|
86
96
|
if id is not None:
|
@@ -101,8 +111,12 @@ class CompareJobInfo:
|
|
101
111
|
self.report_remain_seconds = report_remain_seconds
|
102
112
|
if compare_job_tag is not None:
|
103
113
|
self.compare_job_tag = compare_job_tag
|
114
|
+
if options is not None:
|
115
|
+
self.options = options
|
104
116
|
if error_msg is not None:
|
105
117
|
self.error_msg = error_msg
|
118
|
+
if dynamic_compare_delay is not None:
|
119
|
+
self.dynamic_compare_delay = dynamic_compare_delay
|
106
120
|
|
107
121
|
@property
|
108
122
|
def id(self):
|
@@ -302,6 +316,28 @@ class CompareJobInfo:
|
|
302
316
|
"""
|
303
317
|
self._compare_job_tag = compare_job_tag
|
304
318
|
|
319
|
+
@property
|
320
|
+
def options(self):
|
321
|
+
"""Gets the options of this CompareJobInfo.
|
322
|
+
|
323
|
+
对比任务选项。
|
324
|
+
|
325
|
+
:return: The options of this CompareJobInfo.
|
326
|
+
:rtype: dict(str, str)
|
327
|
+
"""
|
328
|
+
return self._options
|
329
|
+
|
330
|
+
@options.setter
|
331
|
+
def options(self, options):
|
332
|
+
"""Sets the options of this CompareJobInfo.
|
333
|
+
|
334
|
+
对比任务选项。
|
335
|
+
|
336
|
+
:param options: The options of this CompareJobInfo.
|
337
|
+
:type options: dict(str, str)
|
338
|
+
"""
|
339
|
+
self._options = options
|
340
|
+
|
305
341
|
@property
|
306
342
|
def error_msg(self):
|
307
343
|
"""Gets the error_msg of this CompareJobInfo.
|
@@ -324,6 +360,28 @@ class CompareJobInfo:
|
|
324
360
|
"""
|
325
361
|
self._error_msg = error_msg
|
326
362
|
|
363
|
+
@property
|
364
|
+
def dynamic_compare_delay(self):
|
365
|
+
"""Gets the dynamic_compare_delay of this CompareJobInfo.
|
366
|
+
|
367
|
+
动态比对时延。
|
368
|
+
|
369
|
+
:return: The dynamic_compare_delay of this CompareJobInfo.
|
370
|
+
:rtype: int
|
371
|
+
"""
|
372
|
+
return self._dynamic_compare_delay
|
373
|
+
|
374
|
+
@dynamic_compare_delay.setter
|
375
|
+
def dynamic_compare_delay(self, dynamic_compare_delay):
|
376
|
+
"""Sets the dynamic_compare_delay of this CompareJobInfo.
|
377
|
+
|
378
|
+
动态比对时延。
|
379
|
+
|
380
|
+
:param dynamic_compare_delay: The dynamic_compare_delay of this CompareJobInfo.
|
381
|
+
:type dynamic_compare_delay: int
|
382
|
+
"""
|
383
|
+
self._dynamic_compare_delay = dynamic_compare_delay
|
384
|
+
|
327
385
|
def to_dict(self):
|
328
386
|
"""Returns the model properties as a dict"""
|
329
387
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkdrs
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.119
|
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.119
|
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=x9o4xBEJto1gPop93SplvuTBV_rxPAo-TNSdVnEx-gI,13102
|
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.119.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
613
|
+
huaweicloudsdkdrs-3.1.119.dist-info/METADATA,sha256=l0EOwh5lMDYUUO9CN5FGngnUe2VhUV5uVAljNEx_EJY,1135
|
614
|
+
huaweicloudsdkdrs-3.1.119.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
615
|
+
huaweicloudsdkdrs-3.1.119.dist-info/top_level.txt,sha256=FJmOnPaGx7WoM_NJdeECns2-V--JJZyO0PVtyQAgpYg,18
|
616
|
+
huaweicloudsdkdrs-3.1.119.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|