huaweicloudsdkgaussdbforopengauss 3.1.96__py2.py3-none-any.whl → 3.1.98__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/components.py +61 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/create_configuration_template_request_body.py +3 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_request_body.py +3 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_request.py +3 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_list_database.py +61 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/para_group_parameter_result.py +3 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/param_group_diff_request_body.py +3 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/recycle_instances_detail_result.py +6 -6
- huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_response.py +61 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/task_detail_result.py +59 -1
- huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_response.py +32 -3
- huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_type_info.py +32 -3
- {huaweicloudsdkgaussdbforopengauss-3.1.96.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdbforopengauss-3.1.96.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info}/RECORD +17 -17
- {huaweicloudsdkgaussdbforopengauss-3.1.96.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.96.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.96.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info}/top_level.txt +0 -0
@@ -20,17 +20,21 @@ class Components:
|
|
20
20
|
'id': 'str',
|
21
21
|
'role': 'str',
|
22
22
|
'status': 'str',
|
23
|
-
'distributed_id': 'str'
|
23
|
+
'distributed_id': 'str',
|
24
|
+
'type': 'str',
|
25
|
+
'detail': 'str'
|
24
26
|
}
|
25
27
|
|
26
28
|
attribute_map = {
|
27
29
|
'id': 'id',
|
28
30
|
'role': 'role',
|
29
31
|
'status': 'status',
|
30
|
-
'distributed_id': 'distributed_id'
|
32
|
+
'distributed_id': 'distributed_id',
|
33
|
+
'type': 'type',
|
34
|
+
'detail': 'detail'
|
31
35
|
}
|
32
36
|
|
33
|
-
def __init__(self, id=None, role=None, status=None, distributed_id=None):
|
37
|
+
def __init__(self, id=None, role=None, status=None, distributed_id=None, type=None, detail=None):
|
34
38
|
"""Components
|
35
39
|
|
36
40
|
The model defined in huaweicloud sdk
|
@@ -43,6 +47,10 @@ class Components:
|
|
43
47
|
:type status: str
|
44
48
|
:param distributed_id: 分组id,只有dn组件有分组id,用于区分是否是同一个分片下的组件。其他组件为空字符串。
|
45
49
|
:type distributed_id: str
|
50
|
+
:param type: 节点类型,包括:DN, CN, GTM, CM, ETCD。
|
51
|
+
:type type: str
|
52
|
+
:param detail: 详情。
|
53
|
+
:type detail: str
|
46
54
|
"""
|
47
55
|
|
48
56
|
|
@@ -51,6 +59,8 @@ class Components:
|
|
51
59
|
self._role = None
|
52
60
|
self._status = None
|
53
61
|
self._distributed_id = None
|
62
|
+
self._type = None
|
63
|
+
self._detail = None
|
54
64
|
self.discriminator = None
|
55
65
|
|
56
66
|
if id is not None:
|
@@ -61,6 +71,10 @@ class Components:
|
|
61
71
|
self.status = status
|
62
72
|
if distributed_id is not None:
|
63
73
|
self.distributed_id = distributed_id
|
74
|
+
if type is not None:
|
75
|
+
self.type = type
|
76
|
+
if detail is not None:
|
77
|
+
self.detail = detail
|
64
78
|
|
65
79
|
@property
|
66
80
|
def id(self):
|
@@ -150,6 +164,50 @@ class Components:
|
|
150
164
|
"""
|
151
165
|
self._distributed_id = distributed_id
|
152
166
|
|
167
|
+
@property
|
168
|
+
def type(self):
|
169
|
+
"""Gets the type of this Components.
|
170
|
+
|
171
|
+
节点类型,包括:DN, CN, GTM, CM, ETCD。
|
172
|
+
|
173
|
+
:return: The type of this Components.
|
174
|
+
:rtype: str
|
175
|
+
"""
|
176
|
+
return self._type
|
177
|
+
|
178
|
+
@type.setter
|
179
|
+
def type(self, type):
|
180
|
+
"""Sets the type of this Components.
|
181
|
+
|
182
|
+
节点类型,包括:DN, CN, GTM, CM, ETCD。
|
183
|
+
|
184
|
+
:param type: The type of this Components.
|
185
|
+
:type type: str
|
186
|
+
"""
|
187
|
+
self._type = type
|
188
|
+
|
189
|
+
@property
|
190
|
+
def detail(self):
|
191
|
+
"""Gets the detail of this Components.
|
192
|
+
|
193
|
+
详情。
|
194
|
+
|
195
|
+
:return: The detail of this Components.
|
196
|
+
:rtype: str
|
197
|
+
"""
|
198
|
+
return self._detail
|
199
|
+
|
200
|
+
@detail.setter
|
201
|
+
def detail(self, detail):
|
202
|
+
"""Sets the detail of this Components.
|
203
|
+
|
204
|
+
详情。
|
205
|
+
|
206
|
+
:param detail: The detail of this Components.
|
207
|
+
:type detail: str
|
208
|
+
"""
|
209
|
+
self._detail = detail
|
210
|
+
|
153
211
|
def to_dict(self):
|
154
212
|
"""Returns the model properties as a dict"""
|
155
213
|
result = {}
|
@@ -35,7 +35,7 @@ class CreateConfigurationTemplateRequestBody:
|
|
35
35
|
|
36
36
|
The model defined in huaweicloud sdk
|
37
37
|
|
38
|
-
:param name:
|
38
|
+
:param name: 参数模板名称,不可与已有参数模板名称重复。 取值范围:长度1到64位之间,区分大小写字母,可包含字母、数字、中划线、下划线或句点,不能包含其他特殊字符。
|
39
39
|
:type name: str
|
40
40
|
:param description: 参数模板描述,默认为空。 取值范围:长度不超过256,不能包含回车<>!&等特殊字符。
|
41
41
|
:type description: str
|
@@ -64,7 +64,7 @@ class CreateConfigurationTemplateRequestBody:
|
|
64
64
|
def name(self):
|
65
65
|
"""Gets the name of this CreateConfigurationTemplateRequestBody.
|
66
66
|
|
67
|
-
|
67
|
+
参数模板名称,不可与已有参数模板名称重复。 取值范围:长度1到64位之间,区分大小写字母,可包含字母、数字、中划线、下划线或句点,不能包含其他特殊字符。
|
68
68
|
|
69
69
|
:return: The name of this CreateConfigurationTemplateRequestBody.
|
70
70
|
:rtype: str
|
@@ -75,7 +75,7 @@ class CreateConfigurationTemplateRequestBody:
|
|
75
75
|
def name(self, name):
|
76
76
|
"""Sets the name of this CreateConfigurationTemplateRequestBody.
|
77
77
|
|
78
|
-
|
78
|
+
参数模板名称,不可与已有参数模板名称重复。 取值范围:长度1到64位之间,区分大小写字母,可包含字母、数字、中划线、下划线或句点,不能包含其他特殊字符。
|
79
79
|
|
80
80
|
:param name: The name of this CreateConfigurationTemplateRequestBody.
|
81
81
|
:type name: str
|
@@ -35,7 +35,7 @@ class CreateManualBackupRequestBody:
|
|
35
35
|
|
36
36
|
:param instance_id: 实例ID。
|
37
37
|
:type instance_id: str
|
38
|
-
:param name:
|
38
|
+
:param name: 备份名称,不可重复,4~64个字符,必须以英文字母开头,区分大小写,可以包含英文字母、数字、中划线或者下划线,不能包含其他特殊字符。
|
39
39
|
:type name: str
|
40
40
|
:param description: 备份描述,不能包含>!<\"&'=特殊字符,不大于256个字符。
|
41
41
|
:type description: str
|
@@ -79,7 +79,7 @@ class CreateManualBackupRequestBody:
|
|
79
79
|
def name(self):
|
80
80
|
"""Gets the name of this CreateManualBackupRequestBody.
|
81
81
|
|
82
|
-
|
82
|
+
备份名称,不可重复,4~64个字符,必须以英文字母开头,区分大小写,可以包含英文字母、数字、中划线或者下划线,不能包含其他特殊字符。
|
83
83
|
|
84
84
|
:return: The name of this CreateManualBackupRequestBody.
|
85
85
|
:rtype: str
|
@@ -90,7 +90,7 @@ class CreateManualBackupRequestBody:
|
|
90
90
|
def name(self, name):
|
91
91
|
"""Sets the name of this CreateManualBackupRequestBody.
|
92
92
|
|
93
|
-
|
93
|
+
备份名称,不可重复,4~64个字符,必须以英文字母开头,区分大小写,可以包含英文字母、数字、中划线或者下划线,不能包含其他特殊字符。
|
94
94
|
|
95
95
|
:param name: The name of this CreateManualBackupRequestBody.
|
96
96
|
:type name: str
|
@@ -33,7 +33,7 @@ class DeleteManualBackupRequest:
|
|
33
33
|
|
34
34
|
:param x_language: 语言
|
35
35
|
:type x_language: str
|
36
|
-
:param backup_id:
|
36
|
+
:param backup_id: 手动备份ID。
|
37
37
|
:type backup_id: str
|
38
38
|
"""
|
39
39
|
|
@@ -73,7 +73,7 @@ class DeleteManualBackupRequest:
|
|
73
73
|
def backup_id(self):
|
74
74
|
"""Gets the backup_id of this DeleteManualBackupRequest.
|
75
75
|
|
76
|
-
|
76
|
+
手动备份ID。
|
77
77
|
|
78
78
|
:return: The backup_id of this DeleteManualBackupRequest.
|
79
79
|
:rtype: str
|
@@ -84,7 +84,7 @@ class DeleteManualBackupRequest:
|
|
84
84
|
def backup_id(self, backup_id):
|
85
85
|
"""Sets the backup_id of this DeleteManualBackupRequest.
|
86
86
|
|
87
|
-
|
87
|
+
手动备份ID。
|
88
88
|
|
89
89
|
:param backup_id: The backup_id of this DeleteManualBackupRequest.
|
90
90
|
:type backup_id: str
|
@@ -21,7 +21,9 @@ class GaussDBforOpenGaussListDatabase:
|
|
21
21
|
'owner': 'str',
|
22
22
|
'character_set': 'str',
|
23
23
|
'collate_set': 'str',
|
24
|
-
'size': 'str'
|
24
|
+
'size': 'str',
|
25
|
+
'datctype': 'str',
|
26
|
+
'compatibility_type': 'str'
|
25
27
|
}
|
26
28
|
|
27
29
|
attribute_map = {
|
@@ -29,10 +31,12 @@ class GaussDBforOpenGaussListDatabase:
|
|
29
31
|
'owner': 'owner',
|
30
32
|
'character_set': 'character_set',
|
31
33
|
'collate_set': 'collate_set',
|
32
|
-
'size': 'size'
|
34
|
+
'size': 'size',
|
35
|
+
'datctype': 'datctype',
|
36
|
+
'compatibility_type': 'compatibility_type'
|
33
37
|
}
|
34
38
|
|
35
|
-
def __init__(self, name=None, owner=None, character_set=None, collate_set=None, size=None):
|
39
|
+
def __init__(self, name=None, owner=None, character_set=None, collate_set=None, size=None, datctype=None, compatibility_type=None):
|
36
40
|
"""GaussDBforOpenGaussListDatabase
|
37
41
|
|
38
42
|
The model defined in huaweicloud sdk
|
@@ -47,6 +51,10 @@ class GaussDBforOpenGaussListDatabase:
|
|
47
51
|
:type collate_set: str
|
48
52
|
:param size: 数据库大小(单位:MB)。
|
49
53
|
:type size: str
|
54
|
+
:param datctype: 数据库使用的字符分类,例如en_US.UTF-8等。
|
55
|
+
:type datctype: str
|
56
|
+
:param compatibility_type: 数据库兼容的类型,如GaussDB,M。
|
57
|
+
:type compatibility_type: str
|
50
58
|
"""
|
51
59
|
|
52
60
|
|
@@ -56,6 +64,8 @@ class GaussDBforOpenGaussListDatabase:
|
|
56
64
|
self._character_set = None
|
57
65
|
self._collate_set = None
|
58
66
|
self._size = None
|
67
|
+
self._datctype = None
|
68
|
+
self._compatibility_type = None
|
59
69
|
self.discriminator = None
|
60
70
|
|
61
71
|
if name is not None:
|
@@ -68,6 +78,10 @@ class GaussDBforOpenGaussListDatabase:
|
|
68
78
|
self.collate_set = collate_set
|
69
79
|
if size is not None:
|
70
80
|
self.size = size
|
81
|
+
if datctype is not None:
|
82
|
+
self.datctype = datctype
|
83
|
+
if compatibility_type is not None:
|
84
|
+
self.compatibility_type = compatibility_type
|
71
85
|
|
72
86
|
@property
|
73
87
|
def name(self):
|
@@ -179,6 +193,50 @@ class GaussDBforOpenGaussListDatabase:
|
|
179
193
|
"""
|
180
194
|
self._size = size
|
181
195
|
|
196
|
+
@property
|
197
|
+
def datctype(self):
|
198
|
+
"""Gets the datctype of this GaussDBforOpenGaussListDatabase.
|
199
|
+
|
200
|
+
数据库使用的字符分类,例如en_US.UTF-8等。
|
201
|
+
|
202
|
+
:return: The datctype of this GaussDBforOpenGaussListDatabase.
|
203
|
+
:rtype: str
|
204
|
+
"""
|
205
|
+
return self._datctype
|
206
|
+
|
207
|
+
@datctype.setter
|
208
|
+
def datctype(self, datctype):
|
209
|
+
"""Sets the datctype of this GaussDBforOpenGaussListDatabase.
|
210
|
+
|
211
|
+
数据库使用的字符分类,例如en_US.UTF-8等。
|
212
|
+
|
213
|
+
:param datctype: The datctype of this GaussDBforOpenGaussListDatabase.
|
214
|
+
:type datctype: str
|
215
|
+
"""
|
216
|
+
self._datctype = datctype
|
217
|
+
|
218
|
+
@property
|
219
|
+
def compatibility_type(self):
|
220
|
+
"""Gets the compatibility_type of this GaussDBforOpenGaussListDatabase.
|
221
|
+
|
222
|
+
数据库兼容的类型,如GaussDB,M。
|
223
|
+
|
224
|
+
:return: The compatibility_type of this GaussDBforOpenGaussListDatabase.
|
225
|
+
:rtype: str
|
226
|
+
"""
|
227
|
+
return self._compatibility_type
|
228
|
+
|
229
|
+
@compatibility_type.setter
|
230
|
+
def compatibility_type(self, compatibility_type):
|
231
|
+
"""Sets the compatibility_type of this GaussDBforOpenGaussListDatabase.
|
232
|
+
|
233
|
+
数据库兼容的类型,如GaussDB,M。
|
234
|
+
|
235
|
+
:param compatibility_type: The compatibility_type of this GaussDBforOpenGaussListDatabase.
|
236
|
+
:type compatibility_type: str
|
237
|
+
"""
|
238
|
+
self._compatibility_type = compatibility_type
|
239
|
+
|
182
240
|
def to_dict(self):
|
183
241
|
"""Returns the model properties as a dict"""
|
184
242
|
result = {}
|
@@ -51,7 +51,7 @@ class ParaGroupParameterResult:
|
|
51
51
|
:type readonly: bool
|
52
52
|
:param value_range: 参数取值范围。
|
53
53
|
:type value_range: str
|
54
|
-
:param data_type: 参数类型,取值为“string”、“integer”、“boolean”、“list
|
54
|
+
:param data_type: 参数类型,取值为“string”、“integer”、“boolean”、“list”、\"all\"或“float”之一。
|
55
55
|
:type data_type: str
|
56
56
|
:param description: 参数描述。
|
57
57
|
:type description: str
|
@@ -190,7 +190,7 @@ class ParaGroupParameterResult:
|
|
190
190
|
def data_type(self):
|
191
191
|
"""Gets the data_type of this ParaGroupParameterResult.
|
192
192
|
|
193
|
-
参数类型,取值为“string”、“integer”、“boolean”、“list
|
193
|
+
参数类型,取值为“string”、“integer”、“boolean”、“list”、\"all\"或“float”之一。
|
194
194
|
|
195
195
|
:return: The data_type of this ParaGroupParameterResult.
|
196
196
|
:rtype: str
|
@@ -201,7 +201,7 @@ class ParaGroupParameterResult:
|
|
201
201
|
def data_type(self, data_type):
|
202
202
|
"""Sets the data_type of this ParaGroupParameterResult.
|
203
203
|
|
204
|
-
参数类型,取值为“string”、“integer”、“boolean”、“list
|
204
|
+
参数类型,取值为“string”、“integer”、“boolean”、“list”、\"all\"或“float”之一。
|
205
205
|
|
206
206
|
:param data_type: The data_type of this ParaGroupParameterResult.
|
207
207
|
:type data_type: str
|
@@ -33,7 +33,7 @@ class ParamGroupDiffRequestBody:
|
|
33
33
|
|
34
34
|
:param source_id: 需要进行比较的参数组模板ID。
|
35
35
|
:type source_id: str
|
36
|
-
:param target_id: 需要进行比较的参数组模板ID
|
36
|
+
:param target_id: 需要进行比较的参数组模板ID,需要与源参数组模板的部署形态相同才可比较。
|
37
37
|
:type target_id: str
|
38
38
|
"""
|
39
39
|
|
@@ -72,7 +72,7 @@ class ParamGroupDiffRequestBody:
|
|
72
72
|
def target_id(self):
|
73
73
|
"""Gets the target_id of this ParamGroupDiffRequestBody.
|
74
74
|
|
75
|
-
需要进行比较的参数组模板ID
|
75
|
+
需要进行比较的参数组模板ID,需要与源参数组模板的部署形态相同才可比较。
|
76
76
|
|
77
77
|
:return: The target_id of this ParamGroupDiffRequestBody.
|
78
78
|
:rtype: str
|
@@ -83,7 +83,7 @@ class ParamGroupDiffRequestBody:
|
|
83
83
|
def target_id(self, target_id):
|
84
84
|
"""Sets the target_id of this ParamGroupDiffRequestBody.
|
85
85
|
|
86
|
-
需要进行比较的参数组模板ID
|
86
|
+
需要进行比较的参数组模板ID,需要与源参数组模板的部署形态相同才可比较。
|
87
87
|
|
88
88
|
:param target_id: The target_id of this ParamGroupDiffRequestBody.
|
89
89
|
:type target_id: str
|
@@ -65,7 +65,7 @@ class RecycleInstancesDetailResult:
|
|
65
65
|
:type id: str
|
66
66
|
:param name: 实例名称。
|
67
67
|
:type name: str
|
68
|
-
:param ha_mode:
|
68
|
+
:param ha_mode: 部署形态(Ha:主备版;Independent:独立部署;Combined:混合部署)。
|
69
69
|
:type ha_mode: str
|
70
70
|
:param engine_name: 引擎名称
|
71
71
|
:type engine_name: str
|
@@ -93,7 +93,7 @@ class RecycleInstancesDetailResult:
|
|
93
93
|
:type recycle_backup_id: str
|
94
94
|
:param recycle_status: 回收站备份状态。(Running:运行中;Active:有效的)。
|
95
95
|
:type recycle_status: str
|
96
|
-
:param mode:
|
96
|
+
:param mode: 产品类型(basic:基础版;standard:标准版;enterprise:企业版)。
|
97
97
|
:type mode: str
|
98
98
|
"""
|
99
99
|
|
@@ -188,7 +188,7 @@ class RecycleInstancesDetailResult:
|
|
188
188
|
def ha_mode(self):
|
189
189
|
"""Gets the ha_mode of this RecycleInstancesDetailResult.
|
190
190
|
|
191
|
-
|
191
|
+
部署形态(Ha:主备版;Independent:独立部署;Combined:混合部署)。
|
192
192
|
|
193
193
|
:return: The ha_mode of this RecycleInstancesDetailResult.
|
194
194
|
:rtype: str
|
@@ -199,7 +199,7 @@ class RecycleInstancesDetailResult:
|
|
199
199
|
def ha_mode(self, ha_mode):
|
200
200
|
"""Sets the ha_mode of this RecycleInstancesDetailResult.
|
201
201
|
|
202
|
-
|
202
|
+
部署形态(Ha:主备版;Independent:独立部署;Combined:混合部署)。
|
203
203
|
|
204
204
|
:param ha_mode: The ha_mode of this RecycleInstancesDetailResult.
|
205
205
|
:type ha_mode: str
|
@@ -496,7 +496,7 @@ class RecycleInstancesDetailResult:
|
|
496
496
|
def mode(self):
|
497
497
|
"""Gets the mode of this RecycleInstancesDetailResult.
|
498
498
|
|
499
|
-
|
499
|
+
产品类型(basic:基础版;standard:标准版;enterprise:企业版)。
|
500
500
|
|
501
501
|
:return: The mode of this RecycleInstancesDetailResult.
|
502
502
|
:rtype: str
|
@@ -507,7 +507,7 @@ class RecycleInstancesDetailResult:
|
|
507
507
|
def mode(self, mode):
|
508
508
|
"""Sets the mode of this RecycleInstancesDetailResult.
|
509
509
|
|
510
|
-
|
510
|
+
产品类型(basic:基础版;standard:标准版;enterprise:企业版)。
|
511
511
|
|
512
512
|
:param mode: The mode of this RecycleInstancesDetailResult.
|
513
513
|
:type mode: str
|
@@ -23,7 +23,9 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
23
23
|
'min_volume_size': 'int',
|
24
24
|
'max_volume_size': 'int',
|
25
25
|
'trigger_available_percent': 'int',
|
26
|
-
'percents': 'list[int]'
|
26
|
+
'percents': 'list[int]',
|
27
|
+
'step_size': 'int',
|
28
|
+
'step_percent': 'int'
|
27
29
|
}
|
28
30
|
|
29
31
|
attribute_map = {
|
@@ -32,10 +34,12 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
32
34
|
'min_volume_size': 'min_volume_size',
|
33
35
|
'max_volume_size': 'max_volume_size',
|
34
36
|
'trigger_available_percent': 'trigger_available_percent',
|
35
|
-
'percents': 'percents'
|
37
|
+
'percents': 'percents',
|
38
|
+
'step_size': 'step_size',
|
39
|
+
'step_percent': 'step_percent'
|
36
40
|
}
|
37
41
|
|
38
|
-
def __init__(self, switch_option=None, limit_volume_size=None, min_volume_size=None, max_volume_size=None, trigger_available_percent=None, percents=None):
|
42
|
+
def __init__(self, switch_option=None, limit_volume_size=None, min_volume_size=None, max_volume_size=None, trigger_available_percent=None, percents=None, step_size=None, step_percent=None):
|
39
43
|
"""SearchAutoEnlargePolicyResponse
|
40
44
|
|
41
45
|
The model defined in huaweicloud sdk
|
@@ -52,6 +56,10 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
52
56
|
:type trigger_available_percent: int
|
53
57
|
:param percents: 空间率集合。
|
54
58
|
:type percents: list[int]
|
59
|
+
:param step_size: 扩容步长,固定大小扩容方式。
|
60
|
+
:type step_size: int
|
61
|
+
:param step_percent: 扩容步长,百分比扩容方式。
|
62
|
+
:type step_percent: int
|
55
63
|
"""
|
56
64
|
|
57
65
|
super(SearchAutoEnlargePolicyResponse, self).__init__()
|
@@ -62,6 +70,8 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
62
70
|
self._max_volume_size = None
|
63
71
|
self._trigger_available_percent = None
|
64
72
|
self._percents = None
|
73
|
+
self._step_size = None
|
74
|
+
self._step_percent = None
|
65
75
|
self.discriminator = None
|
66
76
|
|
67
77
|
if switch_option is not None:
|
@@ -76,6 +86,10 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
76
86
|
self.trigger_available_percent = trigger_available_percent
|
77
87
|
if percents is not None:
|
78
88
|
self.percents = percents
|
89
|
+
if step_size is not None:
|
90
|
+
self.step_size = step_size
|
91
|
+
if step_percent is not None:
|
92
|
+
self.step_percent = step_percent
|
79
93
|
|
80
94
|
@property
|
81
95
|
def switch_option(self):
|
@@ -209,6 +223,50 @@ class SearchAutoEnlargePolicyResponse(SdkResponse):
|
|
209
223
|
"""
|
210
224
|
self._percents = percents
|
211
225
|
|
226
|
+
@property
|
227
|
+
def step_size(self):
|
228
|
+
"""Gets the step_size of this SearchAutoEnlargePolicyResponse.
|
229
|
+
|
230
|
+
扩容步长,固定大小扩容方式。
|
231
|
+
|
232
|
+
:return: The step_size of this SearchAutoEnlargePolicyResponse.
|
233
|
+
:rtype: int
|
234
|
+
"""
|
235
|
+
return self._step_size
|
236
|
+
|
237
|
+
@step_size.setter
|
238
|
+
def step_size(self, step_size):
|
239
|
+
"""Sets the step_size of this SearchAutoEnlargePolicyResponse.
|
240
|
+
|
241
|
+
扩容步长,固定大小扩容方式。
|
242
|
+
|
243
|
+
:param step_size: The step_size of this SearchAutoEnlargePolicyResponse.
|
244
|
+
:type step_size: int
|
245
|
+
"""
|
246
|
+
self._step_size = step_size
|
247
|
+
|
248
|
+
@property
|
249
|
+
def step_percent(self):
|
250
|
+
"""Gets the step_percent of this SearchAutoEnlargePolicyResponse.
|
251
|
+
|
252
|
+
扩容步长,百分比扩容方式。
|
253
|
+
|
254
|
+
:return: The step_percent of this SearchAutoEnlargePolicyResponse.
|
255
|
+
:rtype: int
|
256
|
+
"""
|
257
|
+
return self._step_percent
|
258
|
+
|
259
|
+
@step_percent.setter
|
260
|
+
def step_percent(self, step_percent):
|
261
|
+
"""Sets the step_percent of this SearchAutoEnlargePolicyResponse.
|
262
|
+
|
263
|
+
扩容步长,百分比扩容方式。
|
264
|
+
|
265
|
+
:param step_percent: The step_percent of this SearchAutoEnlargePolicyResponse.
|
266
|
+
:type step_percent: int
|
267
|
+
"""
|
268
|
+
self._step_percent = step_percent
|
269
|
+
|
212
270
|
def to_dict(self):
|
213
271
|
"""Returns the model properties as a dict"""
|
214
272
|
result = {}
|
@@ -22,6 +22,8 @@ class TaskDetailResult:
|
|
22
22
|
'name': 'str',
|
23
23
|
'status': 'str',
|
24
24
|
'process': 'str',
|
25
|
+
'created_at': 'str',
|
26
|
+
'ended_at': 'str',
|
25
27
|
'fail_reason': 'str'
|
26
28
|
}
|
27
29
|
|
@@ -31,10 +33,12 @@ class TaskDetailResult:
|
|
31
33
|
'name': 'name',
|
32
34
|
'status': 'status',
|
33
35
|
'process': 'process',
|
36
|
+
'created_at': 'created_at',
|
37
|
+
'ended_at': 'ended_at',
|
34
38
|
'fail_reason': 'fail_reason'
|
35
39
|
}
|
36
40
|
|
37
|
-
def __init__(self, instance_info=None, job_id=None, name=None, status=None, process=None, fail_reason=None):
|
41
|
+
def __init__(self, instance_info=None, job_id=None, name=None, status=None, process=None, created_at=None, ended_at=None, fail_reason=None):
|
38
42
|
"""TaskDetailResult
|
39
43
|
|
40
44
|
The model defined in huaweicloud sdk
|
@@ -49,6 +53,10 @@ class TaskDetailResult:
|
|
49
53
|
:type status: str
|
50
54
|
:param process: 任务进度,单位:%。
|
51
55
|
:type process: str
|
56
|
+
:param created_at: 创建时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
57
|
+
:type created_at: str
|
58
|
+
:param ended_at: 结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
59
|
+
:type ended_at: str
|
52
60
|
:param fail_reason: 失败原因。
|
53
61
|
:type fail_reason: str
|
54
62
|
"""
|
@@ -60,6 +68,8 @@ class TaskDetailResult:
|
|
60
68
|
self._name = None
|
61
69
|
self._status = None
|
62
70
|
self._process = None
|
71
|
+
self._created_at = None
|
72
|
+
self._ended_at = None
|
63
73
|
self._fail_reason = None
|
64
74
|
self.discriminator = None
|
65
75
|
|
@@ -73,6 +83,10 @@ class TaskDetailResult:
|
|
73
83
|
self.status = status
|
74
84
|
if process is not None:
|
75
85
|
self.process = process
|
86
|
+
if created_at is not None:
|
87
|
+
self.created_at = created_at
|
88
|
+
if ended_at is not None:
|
89
|
+
self.ended_at = ended_at
|
76
90
|
if fail_reason is not None:
|
77
91
|
self.fail_reason = fail_reason
|
78
92
|
|
@@ -182,6 +196,50 @@ class TaskDetailResult:
|
|
182
196
|
"""
|
183
197
|
self._process = process
|
184
198
|
|
199
|
+
@property
|
200
|
+
def created_at(self):
|
201
|
+
"""Gets the created_at of this TaskDetailResult.
|
202
|
+
|
203
|
+
创建时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
204
|
+
|
205
|
+
:return: The created_at of this TaskDetailResult.
|
206
|
+
:rtype: str
|
207
|
+
"""
|
208
|
+
return self._created_at
|
209
|
+
|
210
|
+
@created_at.setter
|
211
|
+
def created_at(self, created_at):
|
212
|
+
"""Sets the created_at of this TaskDetailResult.
|
213
|
+
|
214
|
+
创建时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
215
|
+
|
216
|
+
:param created_at: The created_at of this TaskDetailResult.
|
217
|
+
:type created_at: str
|
218
|
+
"""
|
219
|
+
self._created_at = created_at
|
220
|
+
|
221
|
+
@property
|
222
|
+
def ended_at(self):
|
223
|
+
"""Gets the ended_at of this TaskDetailResult.
|
224
|
+
|
225
|
+
结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
226
|
+
|
227
|
+
:return: The ended_at of this TaskDetailResult.
|
228
|
+
:rtype: str
|
229
|
+
"""
|
230
|
+
return self._ended_at
|
231
|
+
|
232
|
+
@ended_at.setter
|
233
|
+
def ended_at(self, ended_at):
|
234
|
+
"""Sets the ended_at of this TaskDetailResult.
|
235
|
+
|
236
|
+
结束时间,格式为“yyyy-mm-ddThh:mm:ssZ”。其中,T指某个时间的开始;Z指时区偏移量,例如北京时间偏移显示为+0800。
|
237
|
+
|
238
|
+
:param ended_at: The ended_at of this TaskDetailResult.
|
239
|
+
:type ended_at: str
|
240
|
+
"""
|
241
|
+
self._ended_at = ended_at
|
242
|
+
|
185
243
|
@property
|
186
244
|
def fail_reason(self):
|
187
245
|
"""Gets the fail_reason of this TaskDetailResult.
|
@@ -18,29 +18,36 @@ class UpdateInstanceConfigurationResponse(SdkResponse):
|
|
18
18
|
sensitive_list = []
|
19
19
|
|
20
20
|
openapi_types = {
|
21
|
-
'restart_required': 'bool'
|
21
|
+
'restart_required': 'bool',
|
22
|
+
'job_id': 'str'
|
22
23
|
}
|
23
24
|
|
24
25
|
attribute_map = {
|
25
|
-
'restart_required': 'restart_required'
|
26
|
+
'restart_required': 'restart_required',
|
27
|
+
'job_id': 'job_id'
|
26
28
|
}
|
27
29
|
|
28
|
-
def __init__(self, restart_required=None):
|
30
|
+
def __init__(self, restart_required=None, job_id=None):
|
29
31
|
"""UpdateInstanceConfigurationResponse
|
30
32
|
|
31
33
|
The model defined in huaweicloud sdk
|
32
34
|
|
33
35
|
:param restart_required: 实例是否需要重启。 - “true”需要重启。 - “false”不需要重启。
|
34
36
|
:type restart_required: bool
|
37
|
+
:param job_id: 修改指定实例参数的任务ID。
|
38
|
+
:type job_id: str
|
35
39
|
"""
|
36
40
|
|
37
41
|
super(UpdateInstanceConfigurationResponse, self).__init__()
|
38
42
|
|
39
43
|
self._restart_required = None
|
44
|
+
self._job_id = None
|
40
45
|
self.discriminator = None
|
41
46
|
|
42
47
|
if restart_required is not None:
|
43
48
|
self.restart_required = restart_required
|
49
|
+
if job_id is not None:
|
50
|
+
self.job_id = job_id
|
44
51
|
|
45
52
|
@property
|
46
53
|
def restart_required(self):
|
@@ -64,6 +71,28 @@ class UpdateInstanceConfigurationResponse(SdkResponse):
|
|
64
71
|
"""
|
65
72
|
self._restart_required = restart_required
|
66
73
|
|
74
|
+
@property
|
75
|
+
def job_id(self):
|
76
|
+
"""Gets the job_id of this UpdateInstanceConfigurationResponse.
|
77
|
+
|
78
|
+
修改指定实例参数的任务ID。
|
79
|
+
|
80
|
+
:return: The job_id of this UpdateInstanceConfigurationResponse.
|
81
|
+
:rtype: str
|
82
|
+
"""
|
83
|
+
return self._job_id
|
84
|
+
|
85
|
+
@job_id.setter
|
86
|
+
def job_id(self, job_id):
|
87
|
+
"""Sets the job_id of this UpdateInstanceConfigurationResponse.
|
88
|
+
|
89
|
+
修改指定实例参数的任务ID。
|
90
|
+
|
91
|
+
:param job_id: The job_id of this UpdateInstanceConfigurationResponse.
|
92
|
+
:type job_id: str
|
93
|
+
"""
|
94
|
+
self._job_id = job_id
|
95
|
+
|
67
96
|
def to_dict(self):
|
68
97
|
"""Returns the model properties as a dict"""
|
69
98
|
result = {}
|
@@ -19,16 +19,18 @@ class UpgradeTypeInfo:
|
|
19
19
|
openapi_types = {
|
20
20
|
'upgrade_type': 'str',
|
21
21
|
'enable': 'bool',
|
22
|
-
'upgrade_action_list': 'list[UpgradeActionInfo]'
|
22
|
+
'upgrade_action_list': 'list[UpgradeActionInfo]',
|
23
|
+
'is_parallel_upgrade': 'bool'
|
23
24
|
}
|
24
25
|
|
25
26
|
attribute_map = {
|
26
27
|
'upgrade_type': 'upgrade_type',
|
27
28
|
'enable': 'enable',
|
28
|
-
'upgrade_action_list': 'upgrade_action_list'
|
29
|
+
'upgrade_action_list': 'upgrade_action_list',
|
30
|
+
'is_parallel_upgrade': 'is_parallel_upgrade'
|
29
31
|
}
|
30
32
|
|
31
|
-
def __init__(self, upgrade_type=None, enable=None, upgrade_action_list=None):
|
33
|
+
def __init__(self, upgrade_type=None, enable=None, upgrade_action_list=None, is_parallel_upgrade=None):
|
32
34
|
"""UpgradeTypeInfo
|
33
35
|
|
34
36
|
The model defined in huaweicloud sdk
|
@@ -39,6 +41,8 @@ class UpgradeTypeInfo:
|
|
39
41
|
:type enable: bool
|
40
42
|
:param upgrade_action_list: 升级操作列表
|
41
43
|
:type upgrade_action_list: list[:class:`huaweicloudsdkgaussdbforopengauss.v3.UpgradeActionInfo`]
|
44
|
+
:param is_parallel_upgrade: 是否正在进行AZ内并行升级。 -true:当前实例处于灰度升级的升级待观察升级方式中,已选择了AZ内并行升级方式,后续无法更改。 -false:当前实例处于升级流程中,未选择AZ内并行升级的方式,后续无法更改。null:当前实例尚未处于升级流程中。
|
45
|
+
:type is_parallel_upgrade: bool
|
42
46
|
"""
|
43
47
|
|
44
48
|
|
@@ -46,6 +50,7 @@ class UpgradeTypeInfo:
|
|
46
50
|
self._upgrade_type = None
|
47
51
|
self._enable = None
|
48
52
|
self._upgrade_action_list = None
|
53
|
+
self._is_parallel_upgrade = None
|
49
54
|
self.discriminator = None
|
50
55
|
|
51
56
|
if upgrade_type is not None:
|
@@ -54,6 +59,8 @@ class UpgradeTypeInfo:
|
|
54
59
|
self.enable = enable
|
55
60
|
if upgrade_action_list is not None:
|
56
61
|
self.upgrade_action_list = upgrade_action_list
|
62
|
+
if is_parallel_upgrade is not None:
|
63
|
+
self.is_parallel_upgrade = is_parallel_upgrade
|
57
64
|
|
58
65
|
@property
|
59
66
|
def upgrade_type(self):
|
@@ -121,6 +128,28 @@ class UpgradeTypeInfo:
|
|
121
128
|
"""
|
122
129
|
self._upgrade_action_list = upgrade_action_list
|
123
130
|
|
131
|
+
@property
|
132
|
+
def is_parallel_upgrade(self):
|
133
|
+
"""Gets the is_parallel_upgrade of this UpgradeTypeInfo.
|
134
|
+
|
135
|
+
是否正在进行AZ内并行升级。 -true:当前实例处于灰度升级的升级待观察升级方式中,已选择了AZ内并行升级方式,后续无法更改。 -false:当前实例处于升级流程中,未选择AZ内并行升级的方式,后续无法更改。null:当前实例尚未处于升级流程中。
|
136
|
+
|
137
|
+
:return: The is_parallel_upgrade of this UpgradeTypeInfo.
|
138
|
+
:rtype: bool
|
139
|
+
"""
|
140
|
+
return self._is_parallel_upgrade
|
141
|
+
|
142
|
+
@is_parallel_upgrade.setter
|
143
|
+
def is_parallel_upgrade(self, is_parallel_upgrade):
|
144
|
+
"""Sets the is_parallel_upgrade of this UpgradeTypeInfo.
|
145
|
+
|
146
|
+
是否正在进行AZ内并行升级。 -true:当前实例处于灰度升级的升级待观察升级方式中,已选择了AZ内并行升级方式,后续无法更改。 -false:当前实例处于升级流程中,未选择AZ内并行升级的方式,后续无法更改。null:当前实例尚未处于升级流程中。
|
147
|
+
|
148
|
+
:param is_parallel_upgrade: The is_parallel_upgrade of this UpgradeTypeInfo.
|
149
|
+
:type is_parallel_upgrade: bool
|
150
|
+
"""
|
151
|
+
self._is_parallel_upgrade = is_parallel_upgrade
|
152
|
+
|
124
153
|
def to_dict(self):
|
125
154
|
"""Returns the model properties as a dict"""
|
126
155
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdbforopengauss
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.98
|
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.98
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -21,14 +21,14 @@ huaweicloudsdkgaussdbforopengauss/v3/model/backups_result.py,sha256=9BErJjEfKTIo
|
|
21
21
|
huaweicloudsdkgaussdbforopengauss/v3/model/bind_eip_request_body.py,sha256=4Kh29WWmBrUUcYJQn0wDjO7UzJhQ0TYjbwehpKwQBgA,4835
|
22
22
|
huaweicloudsdkgaussdbforopengauss/v3/model/binded_eip_result.py,sha256=NhsG165uABIJc2XdO2uIbmDOc5wGQrJlfX8zoTVIc6Y,11173
|
23
23
|
huaweicloudsdkgaussdbforopengauss/v3/model/cn_info_before_reduce.py,sha256=eV7QMeDLpTBRYZOj88Jow4eH6C-MNvP1xiFLAf8pOJ8,6808
|
24
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/components.py,sha256=
|
24
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/components.py,sha256=epzC_8ZJpXJ_3zJL8rX_09N9IW2gy7peRefWpO61ga4,7919
|
25
25
|
huaweicloudsdkgaussdbforopengauss/v3/model/configuration_parameter.py,sha256=9w_xRWQRwvhWOnlDHessVinOrp8Xe_p_0BuA57s2QPI,7209
|
26
26
|
huaweicloudsdkgaussdbforopengauss/v3/model/configuration_result.py,sha256=GhfDYcZ5JA60z7rLOHuzrPnGAzl0850CPnEXByqPrYA,9744
|
27
27
|
huaweicloudsdkgaussdbforopengauss/v3/model/configuration_summary.py,sha256=ri5U7oj3hnGtYJ07BqcvNyZq236s5AIbim-b648vw98,9810
|
28
28
|
huaweicloudsdkgaussdbforopengauss/v3/model/copy_configuration_request.py,sha256=a-OhDc8Hpw34bc0Vepwtuindyo2Syu7W3emFP4igbsY,4854
|
29
29
|
huaweicloudsdkgaussdbforopengauss/v3/model/copy_configuration_response.py,sha256=Wudhg3AGj2JBQVokb5F9ItvEPMmW7EWo3UUdX2buiRU,3308
|
30
30
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_configuration_template_request.py,sha256=BTEJTTdz7NjMW4F23R6cz90_ndE9V_4BrhhXC7afnq4,4271
|
31
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/create_configuration_template_request_body.py,sha256=
|
31
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/create_configuration_template_request_body.py,sha256=2ndB-_z0wTRtPfEW33ldUEE1ZGl0LGoM1AGViq35cBQ,7215
|
32
32
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_configuration_template_response.py,sha256=Pz55Mjs8ow_KzoOt1dDxFWqRsxu3jZl6nWbtkdXwvc0,5244
|
33
33
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_database_request.py,sha256=bJMNFqSZ-hB4AEVWjyHzuPyRCKZ0irjCNJ86kmH8FL0,4819
|
34
34
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_database_response.py,sha256=gNDv89S2MWduXVZIPhgxSf_JIWxkSF8_bxc2bpcMBSk,2439
|
@@ -42,7 +42,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/create_instance_request.py,sha256=g2n
|
|
42
42
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_instance_resp_item.py,sha256=Hv6dFfU1vQ1pVHyAjXjSiBIwqEEmC0iv2d__ej5N6aE,17282
|
43
43
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_instance_response.py,sha256=hXRouRTJlPxudJRZL75WTjg1ZZ7wn2i55cxn2M2NcNM,5251
|
44
44
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_request.py,sha256=HmMSHCK28nC_BTXzHyiwJe6FkqfejNM8YXrcnVN3VrY,4058
|
45
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_request_body.py,sha256=
|
45
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_request_body.py,sha256=ozNRnz5FXtWNRkMy7tfSpC42aDxOyGJHrrWGtLTySDA,5456
|
46
46
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_response.py,sha256=4DkP4S6HAeJIa12Ma200eeKcLJaPfEn19XLLRPeOjXE,4044
|
47
47
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_restore_instance_request.py,sha256=9BX9WY50OIQoODxKL-8S64tyawEstHCKY8D4XuGc-ss,4102
|
48
48
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_restore_instance_response.py,sha256=gF6R_I2p6nM6P1DOom0ngr4s2xGnTJUtQikq6zZX_mI,4369
|
@@ -63,7 +63,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/delete_instance_tag_request.py,sha256
|
|
63
63
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_instance_tag_response.py,sha256=S4pLZqYBA2ZFQaZ8NhWKQreu1pCIOBnBbKkALrzLT6I,4926
|
64
64
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_job_request.py,sha256=xOi6nNlbM0ih0_ARefTyfxKHEDIY7RX6YopvhcDAM4g,3753
|
65
65
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_job_response.py,sha256=jmPzqZwj5kFhJPtsrLCscmv9OsuUMVcIXxbYuJWI_1A,2419
|
66
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_request.py,sha256=
|
66
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_request.py,sha256=7crFrPxewhpxru-Vo8B5teqnJFDy1dvasCjQPJPuxD8,3927
|
67
67
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_response.py,sha256=WEF2OblZLpPnsD04TwvJTZkDGLfiIGsyBJeIIy-T5Pg,2455
|
68
68
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_error_response.py,sha256=WjDtmzHeOnZYpkvHIMWQ8gvXY8nu0f9nmN3-kPcyE5w,3913
|
69
69
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_request.py,sha256=5GDDQM1HwIKHWn0plULYhXc3uqfDRn8iSgiSSqio5zM,3865
|
@@ -78,7 +78,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_create_schema
|
|
78
78
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_database_for_list_schema.py,sha256=kuKu9rJzdnPQGWlEjnDT0i0odv4JVh674y-VFjNP--c,4026
|
79
79
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_database_schema_req.py,sha256=TjEwl2-_PQZ_47xptTtIA1uJUgv3eLddf3zDDT3wer8,5217
|
80
80
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_grant_request.py,sha256=EV9M-6HcjqVV1CquyEhKFgdwlpPxcMusUdKgP6cDDPc,5108
|
81
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_list_database.py,sha256=
|
81
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_list_database.py,sha256=7ELMSDaiyDAFTgDCFjXfPvzwEIGkNOjzlyeybNxPGSg,8701
|
82
82
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_creation.py,sha256=lgjk-MZqHqlMgqgVQnNyAGTnm8WJHbgDM14qFJlYX3Q,7305
|
83
83
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_list.py,sha256=y96pMjZjRzn9s7yc29wk7YCnwr0pQx18rSJhw7YCOm8,4944
|
84
84
|
huaweicloudsdkgaussdbforopengauss/v3/model/gauss_d_bfor_open_gauss_user_for_list_attributes.py,sha256=7FF81ewIV2JX2_30k-jn-FNpITvZ-0FnqZraIj2jD0M,11289
|
@@ -202,14 +202,14 @@ huaweicloudsdkgaussdbforopengauss/v3/model/open_gauss_volume_result.py,sha256=Ao
|
|
202
202
|
huaweicloudsdkgaussdbforopengauss/v3/model/opengauss_restore_instance_request.py,sha256=MH-TyaSK594bWpAplvnyb5QbwwYuTfFprcAReEBrg5g,29939
|
203
203
|
huaweicloudsdkgaussdbforopengauss/v3/model/para_error_response.py,sha256=M1E0dhmRsRKWhbEprJM9Z9-4KRG7hoOxDqxNBAMwm1A,3812
|
204
204
|
huaweicloudsdkgaussdbforopengauss/v3/model/para_error_response_body.py,sha256=fAbYvDp-Dcj21AjB76H29tdrwOREkhqOS1G75H_1rUw,3856
|
205
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/para_group_parameter_result.py,sha256=
|
205
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/para_group_parameter_result.py,sha256=X9bK0DxoKqWRLfiIM1_DR4KlV_I2G81RjJLftXqWJYg,8463
|
206
206
|
huaweicloudsdkgaussdbforopengauss/v3/model/param_group_copy_request_body.py,sha256=jYu7owOlsAVFnUvi498PqV_xIPQZBhv9_fmMXTIiMVM,3933
|
207
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/param_group_diff_request_body.py,sha256=
|
207
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/param_group_diff_request_body.py,sha256=pr2Po4_yKHFkouDqEYInVJutvvcaTb1_ycbWaKVVtBI,4232
|
208
208
|
huaweicloudsdkgaussdbforopengauss/v3/model/project_quotas_result.py,sha256=pcmBBao6DJ3b7O4QEW7C4U9mBjql4F8PxYj_eA0U0hE,3283
|
209
209
|
huaweicloudsdkgaussdbforopengauss/v3/model/pwd_reset_request.py,sha256=8FK-aoSYKXZHgBP1NlfTbhMrmNFNZvmJe_CmwvyNTWY,3515
|
210
210
|
huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_source.py,sha256=adVOUHDsAmkm-lBxeH1woS05J9BM1xNI7S6Uxh0Wr5g,7498
|
211
211
|
huaweicloudsdkgaussdbforopengauss/v3/model/recovery_backup_target.py,sha256=OsJwrNgGuPIEQQRX9lgW-hK-q3gzznX2XOjvsH0MEdU,3098
|
212
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/recycle_instances_detail_result.py,sha256=
|
212
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/recycle_instances_detail_result.py,sha256=ZKPWEMTFO8-va81NLpER3NQy1GFbQxtockRdSQqLUlo,18522
|
213
213
|
huaweicloudsdkgaussdbforopengauss/v3/model/recycle_policy.py,sha256=zyCHXs3jM_MVNdoy27tnKz30zP6jeSCRWU_oU4IeHWc,3671
|
214
214
|
huaweicloudsdkgaussdbforopengauss/v3/model/recycle_policy_request_body.py,sha256=TudpuAvrKhO1fvV4l5cwLCYJMcAItIWoshNxj-ci5ZA,3326
|
215
215
|
huaweicloudsdkgaussdbforopengauss/v3/model/reset_configuration_request.py,sha256=OHh4ON97eG29YqjevRICodQUAR8OLuQl-_8Q3eepe4w,3972
|
@@ -231,7 +231,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/roll_upgrade_progress.py,sha256=p4n8m
|
|
231
231
|
huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_request.py,sha256=2TZYA5bNC8SRYUzi9lNNHneuBrJ2iUdjJLkxWqzVywg,4855
|
232
232
|
huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_response.py,sha256=rtm6WkL_L4uH9aMBbKMpevhZxSKaS3yvHkAetEX7pzM,4184
|
233
233
|
huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_request.py,sha256=-tQlE-VWp_ud-0TKRTGupqSfol5z-m8-TckgjIUkKs8,4008
|
234
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_response.py,sha256=
|
234
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_response.py,sha256=jwCYJgBdhHI7gwEzxDbjl1TWvGmyMz0FrtON_5BVbfA,10514
|
235
235
|
huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_request.py,sha256=EsOIMHERjGB-im4Ey2_BwOLtiB9nHKUTT23gEFbo7Bg,4951
|
236
236
|
huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_request_body.py,sha256=o0RLrDVDAQaxA6hnlZvgQDUY9DP7Tvmf9oLMpWVzUVM,3314
|
237
237
|
huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_response.py,sha256=1M45SVHNLxjVQ1fWrDmpzdex8zyDzHmmOB3raCuhwp4,2443
|
@@ -286,10 +286,10 @@ huaweicloudsdkgaussdbforopengauss/v3/model/switch_shard_response.py,sha256=e2ryN
|
|
286
286
|
huaweicloudsdkgaussdbforopengauss/v3/model/tag_result.py,sha256=rkwpM9vD5rh5y0xEpis-JS_tkWKKpcx64_B210Sn9xU,3473
|
287
287
|
huaweicloudsdkgaussdbforopengauss/v3/model/tags_option.py,sha256=lx82DBDPArCZNrno40rZOODKUKKaZOtigBIdEOkBcrE,4288
|
288
288
|
huaweicloudsdkgaussdbforopengauss/v3/model/tags_result.py,sha256=eBhCo1uswwrlVHkq2b5jijDNb-v4Nv0GC-zcl1o_VaY,4288
|
289
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/task_detail_result.py,sha256=
|
289
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/task_detail_result.py,sha256=H-Hb0e4RnQwhlQLg97E7m0-QJdklr0DePXk6Hu4bhcA,9365
|
290
290
|
huaweicloudsdkgaussdbforopengauss/v3/model/top_io_info.py,sha256=XpHf3dOlIl798Iot5YzrBcZwnWFAKZpTmlfjarYL_zI,11315
|
291
291
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_request.py,sha256=STQbHjsGWxhGAeVWtoQoYsXcZdi-8Ed1ckk1kwFKTpQ,5067
|
292
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_response.py,sha256=
|
292
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_configuration_response.py,sha256=d-3iUg1dZqZq9qHXVWw6nDi9gHWpuUeKmxqJLMQrkPw,4585
|
293
293
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_name_request.py,sha256=HP1Hlts8clORbJNTIg-J7284IyfoTd3Z_O2gXPyiwZs,4910
|
294
294
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_instance_name_response.py,sha256=rSJT03KI6Z7pf03wkdNlMbwT1yrUZAbWzqCZAzME3UM,3256
|
295
295
|
huaweicloudsdkgaussdbforopengauss/v3/model/update_name_request_body.py,sha256=JwCTPuFmUO4CF_sISwJ0oU-co2pN2n9Wp_nBmVKTW0w,3734
|
@@ -297,7 +297,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_action_info.py,sha256=9aBR1f4
|
|
297
297
|
huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_error_response_body.py,sha256=rsTtNwiQHFTg_Jagu6iY-c22sE5tw4eqvVO3UtxxHK0,3889
|
298
298
|
huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_instance_version_request.py,sha256=89LDZbynjDDQrE5n9vlkmVAnBi9Ne1Gg52qXXxial4o,4907
|
299
299
|
huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_instance_version_response.py,sha256=KIjJ2L66X49t8l9V39FpWKxcyM4HbR2Z7ljtd9OG1Nc,4244
|
300
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_type_info.py,sha256=
|
300
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/upgrade_type_info.py,sha256=iMaOLRuTRsjGjNqZ6b-XMPmZ3ll7KYU0Vzgl5olqj48,7232
|
301
301
|
huaweicloudsdkgaussdbforopengauss/v3/model/validate_para_group_name_request.py,sha256=y-dIsZsVAEgbDptNK-Ax0Rvn1LDyOZso0MnWy6DT7tU,3853
|
302
302
|
huaweicloudsdkgaussdbforopengauss/v3/model/validate_para_group_name_response.py,sha256=MVV8Ic89q-QvfjEkk7u8wHbCYnTMVrxh4hfRp9UaIBw,3327
|
303
303
|
huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_request.py,sha256=M-qWQXbPjTo95WdvRFTLRCRHOjnnINOhny5FvZGVZcw,4127
|
@@ -305,8 +305,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_response.py,sh
|
|
305
305
|
huaweicloudsdkgaussdbforopengauss/v3/model/weak_password_request_body.py,sha256=o6aHUH5vLvSBEf2BJZkKk4XCiwcJgVu7rHklOd476B0,3101
|
306
306
|
huaweicloudsdkgaussdbforopengauss/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
307
|
huaweicloudsdkgaussdbforopengauss/v3/region/gaussdbforopengauss_region.py,sha256=12tDcVvpGUM3dRQG38MK4JaveqrmzOwxPrDpJ9AVC84,2971
|
308
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
309
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
310
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
311
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
312
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
308
|
+
huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
309
|
+
huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info/METADATA,sha256=O04-0RkCRVYY7Im2uyC9Wb6odY-7ANJzGTMj422yq8Y,1182
|
310
|
+
huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
311
|
+
huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
|
312
|
+
huaweicloudsdkgaussdbforopengauss-3.1.98.dist-info/RECORD,,
|
File without changes
|
File without changes
|