huaweicloudsdkgaussdbforopengauss 3.1.103__py2.py3-none-any.whl → 3.1.104__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.
- huaweicloudsdkgaussdbforopengauss/v3/model/list_datastore.py +61 -3
- {huaweicloudsdkgaussdbforopengauss-3.1.103.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdbforopengauss-3.1.103.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info}/RECORD +6 -6
- {huaweicloudsdkgaussdbforopengauss-3.1.103.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.103.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.103.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info}/top_level.txt +0 -0
@@ -20,17 +20,21 @@ class ListDatastore:
|
|
20
20
|
'type': 'str',
|
21
21
|
'version': 'str',
|
22
22
|
'complete_version': 'str',
|
23
|
-
'hotfix_versions': 'str'
|
23
|
+
'hotfix_versions': 'str',
|
24
|
+
'target_version': 'str',
|
25
|
+
'hotfix_finished_times': 'list[str]'
|
24
26
|
}
|
25
27
|
|
26
28
|
attribute_map = {
|
27
29
|
'type': 'type',
|
28
30
|
'version': 'version',
|
29
31
|
'complete_version': 'complete_version',
|
30
|
-
'hotfix_versions': 'hotfix_versions'
|
32
|
+
'hotfix_versions': 'hotfix_versions',
|
33
|
+
'target_version': 'target_version',
|
34
|
+
'hotfix_finished_times': 'hotfix_finished_times'
|
31
35
|
}
|
32
36
|
|
33
|
-
def __init__(self, type=None, version=None, complete_version=None, hotfix_versions=None):
|
37
|
+
def __init__(self, type=None, version=None, complete_version=None, hotfix_versions=None, target_version=None, hotfix_finished_times=None):
|
34
38
|
"""ListDatastore
|
35
39
|
|
36
40
|
The model defined in huaweicloud sdk
|
@@ -43,6 +47,10 @@ class ListDatastore:
|
|
43
47
|
:type complete_version: str
|
44
48
|
:param hotfix_versions: 数据库已升级的热补丁版本,当数据库热补丁升级成功后,该值不为空。
|
45
49
|
:type hotfix_versions: str
|
50
|
+
:param target_version: 数据库正在升级的目标版本。
|
51
|
+
:type target_version: str
|
52
|
+
:param hotfix_finished_times: 热补丁升级完成时间列表。 热补丁升级完成时间,格式为“yyyy-mm-dd hh:mm:ss timezone”。 其中timezone是指时区。
|
53
|
+
:type hotfix_finished_times: list[str]
|
46
54
|
"""
|
47
55
|
|
48
56
|
|
@@ -51,6 +59,8 @@ class ListDatastore:
|
|
51
59
|
self._version = None
|
52
60
|
self._complete_version = None
|
53
61
|
self._hotfix_versions = None
|
62
|
+
self._target_version = None
|
63
|
+
self._hotfix_finished_times = None
|
54
64
|
self.discriminator = None
|
55
65
|
|
56
66
|
self.type = type
|
@@ -59,6 +69,10 @@ class ListDatastore:
|
|
59
69
|
self.complete_version = complete_version
|
60
70
|
if hotfix_versions is not None:
|
61
71
|
self.hotfix_versions = hotfix_versions
|
72
|
+
if target_version is not None:
|
73
|
+
self.target_version = target_version
|
74
|
+
if hotfix_finished_times is not None:
|
75
|
+
self.hotfix_finished_times = hotfix_finished_times
|
62
76
|
|
63
77
|
@property
|
64
78
|
def type(self):
|
@@ -148,6 +162,50 @@ class ListDatastore:
|
|
148
162
|
"""
|
149
163
|
self._hotfix_versions = hotfix_versions
|
150
164
|
|
165
|
+
@property
|
166
|
+
def target_version(self):
|
167
|
+
"""Gets the target_version of this ListDatastore.
|
168
|
+
|
169
|
+
数据库正在升级的目标版本。
|
170
|
+
|
171
|
+
:return: The target_version of this ListDatastore.
|
172
|
+
:rtype: str
|
173
|
+
"""
|
174
|
+
return self._target_version
|
175
|
+
|
176
|
+
@target_version.setter
|
177
|
+
def target_version(self, target_version):
|
178
|
+
"""Sets the target_version of this ListDatastore.
|
179
|
+
|
180
|
+
数据库正在升级的目标版本。
|
181
|
+
|
182
|
+
:param target_version: The target_version of this ListDatastore.
|
183
|
+
:type target_version: str
|
184
|
+
"""
|
185
|
+
self._target_version = target_version
|
186
|
+
|
187
|
+
@property
|
188
|
+
def hotfix_finished_times(self):
|
189
|
+
"""Gets the hotfix_finished_times of this ListDatastore.
|
190
|
+
|
191
|
+
热补丁升级完成时间列表。 热补丁升级完成时间,格式为“yyyy-mm-dd hh:mm:ss timezone”。 其中timezone是指时区。
|
192
|
+
|
193
|
+
:return: The hotfix_finished_times of this ListDatastore.
|
194
|
+
:rtype: list[str]
|
195
|
+
"""
|
196
|
+
return self._hotfix_finished_times
|
197
|
+
|
198
|
+
@hotfix_finished_times.setter
|
199
|
+
def hotfix_finished_times(self, hotfix_finished_times):
|
200
|
+
"""Sets the hotfix_finished_times of this ListDatastore.
|
201
|
+
|
202
|
+
热补丁升级完成时间列表。 热补丁升级完成时间,格式为“yyyy-mm-dd hh:mm:ss timezone”。 其中timezone是指时区。
|
203
|
+
|
204
|
+
:param hotfix_finished_times: The hotfix_finished_times of this ListDatastore.
|
205
|
+
:type hotfix_finished_times: list[str]
|
206
|
+
"""
|
207
|
+
self._hotfix_finished_times = hotfix_finished_times
|
208
|
+
|
151
209
|
def to_dict(self):
|
152
210
|
"""Returns the model properties as a dict"""
|
153
211
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdbforopengauss
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.104
|
4
4
|
Summary: GaussDBforopenGauss
|
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.104
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -120,7 +120,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_database_schemas_request.py,sha2
|
|
120
120
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_database_schemas_response.py,sha256=IBBR-c9npj20Y5SNKx88m5lOnhTLvFtvkVtlUqMosss,4757
|
121
121
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_databases_request.py,sha256=VEbnkP4CHa1KZYOqefUKz4ChotVo4pUAFrtWj9sdN6I,5651
|
122
122
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_databases_response.py,sha256=fjwge7XAkUte95K2xvrMt_xNnT9m6M-nEUDlgcCZFQc,4452
|
123
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/list_datastore.py,sha256=
|
123
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_datastore.py,sha256=ZLsas0NUH3gPQC515KRGd6IYEZGmKmiSWO7fFdyP-8c,8136
|
124
124
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_datastores_request.py,sha256=4ICIN3aW4EjuDNFDTXidK398yqPsUOmzFSKwnDtYoLc,3116
|
125
125
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_datastores_response.py,sha256=fBq4t8gET37idXB_YzxOCQGkTTKihXbLfJGGs0DuEL4,3261
|
126
126
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_db_backups_request.py,sha256=3gpV6A_NrjvLve1aoawOk928v7GGWfkYJKJWuZNvg_0,10725
|
@@ -326,8 +326,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_response.py,sh
|
|
326
326
|
huaweicloudsdkgaussdbforopengauss/v3/model/weak_password_request_body.py,sha256=o6aHUH5vLvSBEf2BJZkKk4XCiwcJgVu7rHklOd476B0,3101
|
327
327
|
huaweicloudsdkgaussdbforopengauss/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
328
328
|
huaweicloudsdkgaussdbforopengauss/v3/region/gaussdbforopengauss_region.py,sha256=12tDcVvpGUM3dRQG38MK4JaveqrmzOwxPrDpJ9AVC84,2971
|
329
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
330
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
331
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
332
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
333
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
329
|
+
huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
330
|
+
huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/METADATA,sha256=v3gre1oPsSsXEKoW7Ud64RbsI9jarVsiXTncp_0iqR8,1184
|
331
|
+
huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
332
|
+
huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
|
333
|
+
huaweicloudsdkgaussdbforopengauss-3.1.104.dist-info/RECORD,,
|
File without changes
|
File without changes
|