huaweicloudsdkdcs 3.1.35__py2.py3-none-any.whl → 3.1.37__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.
Potentially problematic release.
This version of huaweicloudsdkdcs might be problematic. Click here for more details.
- huaweicloudsdkdcs/v2/model/create_redislog_download_link_response.py +30 -1
- {huaweicloudsdkdcs-3.1.35.dist-info → huaweicloudsdkdcs-3.1.37.dist-info}/METADATA +2 -2
- {huaweicloudsdkdcs-3.1.35.dist-info → huaweicloudsdkdcs-3.1.37.dist-info}/RECORD +6 -6
- {huaweicloudsdkdcs-3.1.35.dist-info → huaweicloudsdkdcs-3.1.37.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdcs-3.1.35.dist-info → huaweicloudsdkdcs-3.1.37.dist-info}/WHEEL +0 -0
- {huaweicloudsdkdcs-3.1.35.dist-info → huaweicloudsdkdcs-3.1.37.dist-info}/top_level.txt +0 -0
|
@@ -21,21 +21,25 @@ class CreateRedislogDownloadLinkResponse(SdkResponse):
|
|
|
21
21
|
|
|
22
22
|
openapi_types = {
|
|
23
23
|
'id': 'str',
|
|
24
|
+
'backup_id': 'str',
|
|
24
25
|
'link': 'str'
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
attribute_map = {
|
|
28
29
|
'id': 'id',
|
|
30
|
+
'backup_id': 'backup_id',
|
|
29
31
|
'link': 'link'
|
|
30
32
|
}
|
|
31
33
|
|
|
32
|
-
def __init__(self, id=None, link=None):
|
|
34
|
+
def __init__(self, id=None, backup_id=None, link=None):
|
|
33
35
|
"""CreateRedislogDownloadLinkResponse
|
|
34
36
|
|
|
35
37
|
The model defined in huaweicloud sdk
|
|
36
38
|
|
|
37
39
|
:param id: 日志id
|
|
38
40
|
:type id: str
|
|
41
|
+
:param backup_id: 后台任务id
|
|
42
|
+
:type backup_id: str
|
|
39
43
|
:param link: 日志下载链接,默认有效时间为24小时
|
|
40
44
|
:type link: str
|
|
41
45
|
"""
|
|
@@ -43,11 +47,14 @@ class CreateRedislogDownloadLinkResponse(SdkResponse):
|
|
|
43
47
|
super(CreateRedislogDownloadLinkResponse, self).__init__()
|
|
44
48
|
|
|
45
49
|
self._id = None
|
|
50
|
+
self._backup_id = None
|
|
46
51
|
self._link = None
|
|
47
52
|
self.discriminator = None
|
|
48
53
|
|
|
49
54
|
if id is not None:
|
|
50
55
|
self.id = id
|
|
56
|
+
if backup_id is not None:
|
|
57
|
+
self.backup_id = backup_id
|
|
51
58
|
if link is not None:
|
|
52
59
|
self.link = link
|
|
53
60
|
|
|
@@ -73,6 +80,28 @@ class CreateRedislogDownloadLinkResponse(SdkResponse):
|
|
|
73
80
|
"""
|
|
74
81
|
self._id = id
|
|
75
82
|
|
|
83
|
+
@property
|
|
84
|
+
def backup_id(self):
|
|
85
|
+
"""Gets the backup_id of this CreateRedislogDownloadLinkResponse.
|
|
86
|
+
|
|
87
|
+
后台任务id
|
|
88
|
+
|
|
89
|
+
:return: The backup_id of this CreateRedislogDownloadLinkResponse.
|
|
90
|
+
:rtype: str
|
|
91
|
+
"""
|
|
92
|
+
return self._backup_id
|
|
93
|
+
|
|
94
|
+
@backup_id.setter
|
|
95
|
+
def backup_id(self, backup_id):
|
|
96
|
+
"""Sets the backup_id of this CreateRedislogDownloadLinkResponse.
|
|
97
|
+
|
|
98
|
+
后台任务id
|
|
99
|
+
|
|
100
|
+
:param backup_id: The backup_id of this CreateRedislogDownloadLinkResponse.
|
|
101
|
+
:type backup_id: str
|
|
102
|
+
"""
|
|
103
|
+
self._backup_id = backup_id
|
|
104
|
+
|
|
76
105
|
@property
|
|
77
106
|
def link(self):
|
|
78
107
|
"""Gets the link of this CreateRedislogDownloadLinkResponse.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: huaweicloudsdkdcs
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.37
|
|
4
4
|
Summary: DCS
|
|
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.37)
|
|
26
26
|
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
|
@@ -59,7 +59,7 @@ huaweicloudsdkdcs/v2/model/create_online_migration_task_request.py,sha256=pG8lT_
|
|
|
59
59
|
huaweicloudsdkdcs/v2/model/create_online_migration_task_response.py,sha256=YM0PiSiGQXCxdnmeiLbeSrf8n6k9Uh-_oeAtQtHE-NA,3411
|
|
60
60
|
huaweicloudsdkdcs/v2/model/create_or_delete_instance_tags.py,sha256=xS75RoDYygszYwXohgmyQUDFhflqwQd6UQVrF1_JEUo,4066
|
|
61
61
|
huaweicloudsdkdcs/v2/model/create_redislog_download_link_request.py,sha256=QcLC-3vglcIAR_8jiQI7u5CWMpiMCldEgKaZVn4k9Yo,3997
|
|
62
|
-
huaweicloudsdkdcs/v2/model/create_redislog_download_link_response.py,sha256=
|
|
62
|
+
huaweicloudsdkdcs/v2/model/create_redislog_download_link_response.py,sha256=7XaBVnGKzkvOfVSO7urDjccDSGtgG-_TqGvBF4pk4Cc,4856
|
|
63
63
|
huaweicloudsdkdcs/v2/model/create_redislog_request.py,sha256=E88Gt5Y06O6G7mmHvYZc6aQAMfx5ZAsSg9xbLmnNcUI,6378
|
|
64
64
|
huaweicloudsdkdcs/v2/model/create_redislog_response.py,sha256=Iq3xXGSarPFnJ-v9mNUu3MzD7j8DMdYH1o6Qx67hrNM,2450
|
|
65
65
|
huaweicloudsdkdcs/v2/model/delete_background_task_request.py,sha256=l462viO8gYivg9i8HW8tJxM8leSPXhY78GErxs_N7qA,3906
|
|
@@ -226,8 +226,8 @@ huaweicloudsdkdcs/v2/model/update_slave_priority_response.py,sha256=HRZLSo7c3OAp
|
|
|
226
226
|
huaweicloudsdkdcs/v2/model/whitelist.py,sha256=DxTJEJYPjBHIZwyZdWorP_8aLahGWM7oqYIHNNgc4K8,4346
|
|
227
227
|
huaweicloudsdkdcs/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
228
|
huaweicloudsdkdcs/v2/region/dcs_region.py,sha256=C3LtZugifUP3nzpL0U2H4PaX5sN6l92Die4z6pjNAuc,3382
|
|
229
|
-
huaweicloudsdkdcs-3.1.
|
|
230
|
-
huaweicloudsdkdcs-3.1.
|
|
231
|
-
huaweicloudsdkdcs-3.1.
|
|
232
|
-
huaweicloudsdkdcs-3.1.
|
|
233
|
-
huaweicloudsdkdcs-3.1.
|
|
229
|
+
huaweicloudsdkdcs-3.1.37.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
|
230
|
+
huaweicloudsdkdcs-3.1.37.dist-info/METADATA,sha256=Od8KGT2MajZhGd7pgliXg97TrG4yZdW9ARsa8DeAf70,1136
|
|
231
|
+
huaweicloudsdkdcs-3.1.37.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
|
|
232
|
+
huaweicloudsdkdcs-3.1.37.dist-info/top_level.txt,sha256=_O-5__fP_OBumTm1dj6NCIbz4-U1qSrYHpdKCWm6Tu8,18
|
|
233
|
+
huaweicloudsdkdcs-3.1.37.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|