huaweicloudsdkdrs 3.1.119__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 +7 -36
- {huaweicloudsdkdrs-3.1.119.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/METADATA +2 -2
- {huaweicloudsdkdrs-3.1.119.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/RECORD +6 -6
- {huaweicloudsdkdrs-3.1.119.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdrs-3.1.119.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdrs-3.1.119.dist-info → huaweicloudsdkdrs-3.1.120.dist-info}/top_level.txt +0 -0
@@ -24,11 +24,10 @@ 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
29
|
'options': 'dict(str, str)',
|
30
|
-
'error_msg': 'str'
|
31
|
-
'dynamic_compare_delay': 'int'
|
30
|
+
'error_msg': 'str'
|
32
31
|
}
|
33
32
|
|
34
33
|
attribute_map = {
|
@@ -42,11 +41,10 @@ class CompareJobInfo:
|
|
42
41
|
'report_remain_seconds': 'report_remain_seconds',
|
43
42
|
'compare_job_tag': 'compare_job_tag',
|
44
43
|
'options': 'options',
|
45
|
-
'error_msg': 'error_msg'
|
46
|
-
'dynamic_compare_delay': 'dynamic_compare_delay'
|
44
|
+
'error_msg': 'error_msg'
|
47
45
|
}
|
48
46
|
|
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
|
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):
|
50
48
|
"""CompareJobInfo
|
51
49
|
|
52
50
|
The model defined in huaweicloud sdk
|
@@ -66,15 +64,13 @@ class CompareJobInfo:
|
|
66
64
|
:param export_status: 导出比对结果状态。
|
67
65
|
:type export_status: str
|
68
66
|
:param report_remain_seconds: 导出比对结果有效期剩余时间。
|
69
|
-
:type report_remain_seconds:
|
67
|
+
:type report_remain_seconds: int
|
70
68
|
:param compare_job_tag: 对比任务的标签。
|
71
69
|
:type compare_job_tag: dict(str, str)
|
72
70
|
:param options: 对比任务选项。
|
73
71
|
:type options: dict(str, str)
|
74
72
|
:param error_msg: 失败原因。
|
75
73
|
:type error_msg: str
|
76
|
-
:param dynamic_compare_delay: 动态比对时延。
|
77
|
-
:type dynamic_compare_delay: int
|
78
74
|
"""
|
79
75
|
|
80
76
|
|
@@ -90,7 +86,6 @@ class CompareJobInfo:
|
|
90
86
|
self._compare_job_tag = None
|
91
87
|
self._options = None
|
92
88
|
self._error_msg = None
|
93
|
-
self._dynamic_compare_delay = None
|
94
89
|
self.discriminator = None
|
95
90
|
|
96
91
|
if id is not None:
|
@@ -115,8 +110,6 @@ class CompareJobInfo:
|
|
115
110
|
self.options = options
|
116
111
|
if error_msg is not None:
|
117
112
|
self.error_msg = error_msg
|
118
|
-
if dynamic_compare_delay is not None:
|
119
|
-
self.dynamic_compare_delay = dynamic_compare_delay
|
120
113
|
|
121
114
|
@property
|
122
115
|
def id(self):
|
@@ -279,7 +272,7 @@ class CompareJobInfo:
|
|
279
272
|
导出比对结果有效期剩余时间。
|
280
273
|
|
281
274
|
:return: The report_remain_seconds of this CompareJobInfo.
|
282
|
-
:rtype:
|
275
|
+
:rtype: int
|
283
276
|
"""
|
284
277
|
return self._report_remain_seconds
|
285
278
|
|
@@ -290,7 +283,7 @@ class CompareJobInfo:
|
|
290
283
|
导出比对结果有效期剩余时间。
|
291
284
|
|
292
285
|
:param report_remain_seconds: The report_remain_seconds of this CompareJobInfo.
|
293
|
-
:type report_remain_seconds:
|
286
|
+
:type report_remain_seconds: int
|
294
287
|
"""
|
295
288
|
self._report_remain_seconds = report_remain_seconds
|
296
289
|
|
@@ -360,28 +353,6 @@ class CompareJobInfo:
|
|
360
353
|
"""
|
361
354
|
self._error_msg = error_msg
|
362
355
|
|
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
|
-
|
385
356
|
def to_dict(self):
|
386
357
|
"""Returns the model properties as a dict"""
|
387
358
|
result = {}
|
@@ -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
|