huaweicloudsdkdrs 3.1.124__py2.py3-none-any.whl → 3.1.125__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/v3/region/drs_region.py +3 -0
- huaweicloudsdkdrs/v5/model/compare_job_info.py +32 -3
- huaweicloudsdkdrs/v5/region/drs_region.py +3 -0
- {huaweicloudsdkdrs-3.1.124.dist-info → huaweicloudsdkdrs-3.1.125.dist-info}/METADATA +2 -2
- {huaweicloudsdkdrs-3.1.124.dist-info → huaweicloudsdkdrs-3.1.125.dist-info}/RECORD +8 -8
- {huaweicloudsdkdrs-3.1.124.dist-info → huaweicloudsdkdrs-3.1.125.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdrs-3.1.124.dist-info → huaweicloudsdkdrs-3.1.125.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdrs-3.1.124.dist-info → huaweicloudsdkdrs-3.1.125.dist-info}/top_level.txt +0 -0
@@ -58,6 +58,8 @@ class DrsRegion:
|
|
58
58
|
"https://drs.my-kualalumpur-1.myhuaweicloud.com")
|
59
59
|
RU_NORTHWEST_2 = Region("ru-northwest-2",
|
60
60
|
"https://drs.ru-northwest-2.myhuaweicloud.com")
|
61
|
+
AP_SOUTHEAST_5 = Region("ap-southeast-5",
|
62
|
+
"https://drs.ap-southeast-5.myhuaweicloud.com")
|
61
63
|
|
62
64
|
static_fields = {
|
63
65
|
"eu-west-101": EU_WEST_101,
|
@@ -86,6 +88,7 @@ class DrsRegion:
|
|
86
88
|
"ae-ad-1": AE_AD_1,
|
87
89
|
"my-kualalumpur-1": MY_KUALALUMPUR_1,
|
88
90
|
"ru-northwest-2": RU_NORTHWEST_2,
|
91
|
+
"ap-southeast-5": AP_SOUTHEAST_5,
|
89
92
|
}
|
90
93
|
|
91
94
|
@classmethod
|
@@ -27,7 +27,8 @@ class CompareJobInfo:
|
|
27
27
|
'report_remain_seconds': 'int',
|
28
28
|
'compare_job_tag': 'dict(str, str)',
|
29
29
|
'options': 'dict(str, str)',
|
30
|
-
'error_msg': 'str'
|
30
|
+
'error_msg': 'str',
|
31
|
+
'dynamic_compare_delay': 'int'
|
31
32
|
}
|
32
33
|
|
33
34
|
attribute_map = {
|
@@ -41,10 +42,11 @@ class CompareJobInfo:
|
|
41
42
|
'report_remain_seconds': 'report_remain_seconds',
|
42
43
|
'compare_job_tag': 'compare_job_tag',
|
43
44
|
'options': 'options',
|
44
|
-
'error_msg': 'error_msg'
|
45
|
+
'error_msg': 'error_msg',
|
46
|
+
'dynamic_compare_delay': 'dynamic_compare_delay'
|
45
47
|
}
|
46
48
|
|
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):
|
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):
|
48
50
|
"""CompareJobInfo
|
49
51
|
|
50
52
|
The model defined in huaweicloud sdk
|
@@ -71,6 +73,8 @@ class CompareJobInfo:
|
|
71
73
|
:type options: dict(str, str)
|
72
74
|
:param error_msg: 失败原因。
|
73
75
|
:type error_msg: str
|
76
|
+
:param dynamic_compare_delay: 动态比对时延。
|
77
|
+
:type dynamic_compare_delay: int
|
74
78
|
"""
|
75
79
|
|
76
80
|
|
@@ -86,6 +90,7 @@ class CompareJobInfo:
|
|
86
90
|
self._compare_job_tag = None
|
87
91
|
self._options = None
|
88
92
|
self._error_msg = None
|
93
|
+
self._dynamic_compare_delay = None
|
89
94
|
self.discriminator = None
|
90
95
|
|
91
96
|
if id is not None:
|
@@ -110,6 +115,8 @@ class CompareJobInfo:
|
|
110
115
|
self.options = options
|
111
116
|
if error_msg is not None:
|
112
117
|
self.error_msg = error_msg
|
118
|
+
if dynamic_compare_delay is not None:
|
119
|
+
self.dynamic_compare_delay = dynamic_compare_delay
|
113
120
|
|
114
121
|
@property
|
115
122
|
def id(self):
|
@@ -353,6 +360,28 @@ class CompareJobInfo:
|
|
353
360
|
"""
|
354
361
|
self._error_msg = error_msg
|
355
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
|
+
|
356
385
|
def to_dict(self):
|
357
386
|
"""Returns the model properties as a dict"""
|
358
387
|
result = {}
|
@@ -58,6 +58,8 @@ class DrsRegion:
|
|
58
58
|
"https://drs.my-kualalumpur-1.myhuaweicloud.com")
|
59
59
|
RU_NORTHWEST_2 = Region("ru-northwest-2",
|
60
60
|
"https://drs.ru-northwest-2.myhuaweicloud.com")
|
61
|
+
AP_SOUTHEAST_5 = Region("ap-southeast-5",
|
62
|
+
"https://drs.ap-southeast-5.myhuaweicloud.com")
|
61
63
|
|
62
64
|
static_fields = {
|
63
65
|
"eu-west-101": EU_WEST_101,
|
@@ -86,6 +88,7 @@ class DrsRegion:
|
|
86
88
|
"ae-ad-1": AE_AD_1,
|
87
89
|
"my-kualalumpur-1": MY_KUALALUMPUR_1,
|
88
90
|
"ru-northwest-2": RU_NORTHWEST_2,
|
91
|
+
"ap-southeast-5": AP_SOUTHEAST_5,
|
89
92
|
}
|
90
93
|
|
91
94
|
@classmethod
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkdrs
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.125
|
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.125
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -260,7 +260,7 @@ huaweicloudsdkdrs/v3/model/update_user_req.py,sha256=1RsRp_xR3tUfpS0FsaHg9YOeUUT
|
|
260
260
|
huaweicloudsdkdrs/v3/model/user_account_vo.py,sha256=dDMC9DmWVBqziBYvO8NIS5JECPJ0JSAv_FeBSgQMy9g,8814
|
261
261
|
huaweicloudsdkdrs/v3/model/user_role_vo.py,sha256=DE95DIyHWAj3bK6vKIqvF6p092TbAn85SVD15SwLtuI,6684
|
262
262
|
huaweicloudsdkdrs/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
-
huaweicloudsdkdrs/v3/region/drs_region.py,sha256=
|
263
|
+
huaweicloudsdkdrs/v3/region/drs_region.py,sha256=B5YBsWxgBmzwp1sK40NSEV-F1jHC5-Cpe8zt3oC9d8E,4755
|
264
264
|
huaweicloudsdkdrs/v5/__init__.py,sha256=40vPzyYfe1cCx13lEYnJv_x94KutqK80d-qQFH7OvVM,29739
|
265
265
|
huaweicloudsdkdrs/v5/drs_async_client.py,sha256=uxtA5jm68IyL7P3tSOCBXRrEQezPjpM-V-m6maPOUog,225231
|
266
266
|
huaweicloudsdkdrs/v5/drs_client.py,sha256=urIrlbZa9_cIpTDOcudDtA37jyC5XQNWKdZ0o_n3XjM,225304
|
@@ -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=XnO2smcwvQxw6id0wIumzYpgViwT0tiRVtbJ97uEmKY,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
|
@@ -608,9 +608,9 @@ huaweicloudsdkdrs/v5/model/user_migration_role.py,sha256=GzzRrl10tA_kD3M1g1IDToM
|
|
608
608
|
huaweicloudsdkdrs/v5/model/validate_job_name_request.py,sha256=74qQd020c2h8BdFUsLCjodOMvoYkEQe9kYemwaihetw,3963
|
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
|
-
huaweicloudsdkdrs/v5/region/drs_region.py,sha256=
|
612
|
-
huaweicloudsdkdrs-3.1.
|
613
|
-
huaweicloudsdkdrs-3.1.
|
614
|
-
huaweicloudsdkdrs-3.1.
|
615
|
-
huaweicloudsdkdrs-3.1.
|
616
|
-
huaweicloudsdkdrs-3.1.
|
611
|
+
huaweicloudsdkdrs/v5/region/drs_region.py,sha256=B5YBsWxgBmzwp1sK40NSEV-F1jHC5-Cpe8zt3oC9d8E,4755
|
612
|
+
huaweicloudsdkdrs-3.1.125.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
613
|
+
huaweicloudsdkdrs-3.1.125.dist-info/METADATA,sha256=iRz1PHWybGmHuSXtIwhg5rRXcs8uXCVLvKFy0zQ5ksA,1135
|
614
|
+
huaweicloudsdkdrs-3.1.125.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
615
|
+
huaweicloudsdkdrs-3.1.125.dist-info/top_level.txt,sha256=FJmOnPaGx7WoM_NJdeECns2-V--JJZyO0PVtyQAgpYg,18
|
616
|
+
huaweicloudsdkdrs-3.1.125.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|