huaweicloudsdkgaussdbforopengauss 3.1.137__py2.py3-none-any.whl → 3.1.139__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/__init__.py +15 -0
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py +350 -0
- huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py +350 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py +15 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/cancel_schedule_task_request.py +143 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/cancel_schedule_task_response.py +85 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_request.py +140 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_request_body.py +226 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_response.py +116 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/delete_schedule_task_request.py +143 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/delete_schedule_task_response.py +85 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/instance_detail.py +260 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/instance_engine_detail.py +144 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/instance_task_detail.py +173 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_engine_detail_request.py +173 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_engine_detail_response.py +145 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_schedule_task_request.py +318 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/list_schedule_task_response.py +145 -0
- huaweicloudsdkgaussdbforopengauss/v3/model/schedule_task_detail.py +318 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.137.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdbforopengauss-3.1.137.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info}/RECORD +24 -9
- {huaweicloudsdkgaussdbforopengauss-3.1.137.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.137.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdbforopengauss-3.1.137.dist-info → huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.sdk_response import SdkResponse
|
6
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
7
|
+
|
8
|
+
|
9
|
+
class ListScheduleTaskResponse(SdkResponse):
|
10
|
+
|
11
|
+
"""
|
12
|
+
Attributes:
|
13
|
+
openapi_types (dict): The key is attribute name
|
14
|
+
and the value is attribute type.
|
15
|
+
attribute_map (dict): The key is attribute name
|
16
|
+
and the value is json key in definition.
|
17
|
+
"""
|
18
|
+
sensitive_list = []
|
19
|
+
|
20
|
+
openapi_types = {
|
21
|
+
'tasks': 'list[ScheduleTaskDetail]',
|
22
|
+
'total_count': 'int'
|
23
|
+
}
|
24
|
+
|
25
|
+
attribute_map = {
|
26
|
+
'tasks': 'tasks',
|
27
|
+
'total_count': 'total_count'
|
28
|
+
}
|
29
|
+
|
30
|
+
def __init__(self, tasks=None, total_count=None):
|
31
|
+
"""ListScheduleTaskResponse
|
32
|
+
|
33
|
+
The model defined in huaweicloud sdk
|
34
|
+
|
35
|
+
:param tasks: 任务列表。
|
36
|
+
:type tasks: list[:class:`huaweicloudsdkgaussdbforopengauss.v3.ScheduleTaskDetail`]
|
37
|
+
:param total_count: 任务数量。
|
38
|
+
:type total_count: int
|
39
|
+
"""
|
40
|
+
|
41
|
+
super(ListScheduleTaskResponse, self).__init__()
|
42
|
+
|
43
|
+
self._tasks = None
|
44
|
+
self._total_count = None
|
45
|
+
self.discriminator = None
|
46
|
+
|
47
|
+
if tasks is not None:
|
48
|
+
self.tasks = tasks
|
49
|
+
if total_count is not None:
|
50
|
+
self.total_count = total_count
|
51
|
+
|
52
|
+
@property
|
53
|
+
def tasks(self):
|
54
|
+
"""Gets the tasks of this ListScheduleTaskResponse.
|
55
|
+
|
56
|
+
任务列表。
|
57
|
+
|
58
|
+
:return: The tasks of this ListScheduleTaskResponse.
|
59
|
+
:rtype: list[:class:`huaweicloudsdkgaussdbforopengauss.v3.ScheduleTaskDetail`]
|
60
|
+
"""
|
61
|
+
return self._tasks
|
62
|
+
|
63
|
+
@tasks.setter
|
64
|
+
def tasks(self, tasks):
|
65
|
+
"""Sets the tasks of this ListScheduleTaskResponse.
|
66
|
+
|
67
|
+
任务列表。
|
68
|
+
|
69
|
+
:param tasks: The tasks of this ListScheduleTaskResponse.
|
70
|
+
:type tasks: list[:class:`huaweicloudsdkgaussdbforopengauss.v3.ScheduleTaskDetail`]
|
71
|
+
"""
|
72
|
+
self._tasks = tasks
|
73
|
+
|
74
|
+
@property
|
75
|
+
def total_count(self):
|
76
|
+
"""Gets the total_count of this ListScheduleTaskResponse.
|
77
|
+
|
78
|
+
任务数量。
|
79
|
+
|
80
|
+
:return: The total_count of this ListScheduleTaskResponse.
|
81
|
+
:rtype: int
|
82
|
+
"""
|
83
|
+
return self._total_count
|
84
|
+
|
85
|
+
@total_count.setter
|
86
|
+
def total_count(self, total_count):
|
87
|
+
"""Sets the total_count of this ListScheduleTaskResponse.
|
88
|
+
|
89
|
+
任务数量。
|
90
|
+
|
91
|
+
:param total_count: The total_count of this ListScheduleTaskResponse.
|
92
|
+
:type total_count: int
|
93
|
+
"""
|
94
|
+
self._total_count = total_count
|
95
|
+
|
96
|
+
def to_dict(self):
|
97
|
+
"""Returns the model properties as a dict"""
|
98
|
+
result = {}
|
99
|
+
|
100
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
101
|
+
value = getattr(self, attr)
|
102
|
+
if isinstance(value, list):
|
103
|
+
result[attr] = list(map(
|
104
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
105
|
+
value
|
106
|
+
))
|
107
|
+
elif hasattr(value, "to_dict"):
|
108
|
+
result[attr] = value.to_dict()
|
109
|
+
elif isinstance(value, dict):
|
110
|
+
result[attr] = dict(map(
|
111
|
+
lambda item: (item[0], item[1].to_dict())
|
112
|
+
if hasattr(item[1], "to_dict") else item,
|
113
|
+
value.items()
|
114
|
+
))
|
115
|
+
else:
|
116
|
+
if attr in self.sensitive_list:
|
117
|
+
result[attr] = "****"
|
118
|
+
else:
|
119
|
+
result[attr] = value
|
120
|
+
|
121
|
+
return result
|
122
|
+
|
123
|
+
def to_str(self):
|
124
|
+
"""Returns the string representation of the model"""
|
125
|
+
import simplejson as json
|
126
|
+
if six.PY2:
|
127
|
+
import sys
|
128
|
+
reload(sys)
|
129
|
+
sys.setdefaultencoding("utf-8")
|
130
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
131
|
+
|
132
|
+
def __repr__(self):
|
133
|
+
"""For `print`"""
|
134
|
+
return self.to_str()
|
135
|
+
|
136
|
+
def __eq__(self, other):
|
137
|
+
"""Returns true if both objects are equal"""
|
138
|
+
if not isinstance(other, ListScheduleTaskResponse):
|
139
|
+
return False
|
140
|
+
|
141
|
+
return self.__dict__ == other.__dict__
|
142
|
+
|
143
|
+
def __ne__(self, other):
|
144
|
+
"""Returns true if both objects are not equal"""
|
145
|
+
return not self == other
|
@@ -0,0 +1,318 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class ScheduleTaskDetail:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'task_id': 'str',
|
21
|
+
'task_name': 'str',
|
22
|
+
'status': 'str',
|
23
|
+
'create_time': 'str',
|
24
|
+
'start_time': 'str',
|
25
|
+
'instance_id': 'str',
|
26
|
+
'instance_name': 'str',
|
27
|
+
'task_content': 'object'
|
28
|
+
}
|
29
|
+
|
30
|
+
attribute_map = {
|
31
|
+
'task_id': 'task_id',
|
32
|
+
'task_name': 'task_name',
|
33
|
+
'status': 'status',
|
34
|
+
'create_time': 'create_time',
|
35
|
+
'start_time': 'start_time',
|
36
|
+
'instance_id': 'instance_id',
|
37
|
+
'instance_name': 'instance_name',
|
38
|
+
'task_content': 'task_content'
|
39
|
+
}
|
40
|
+
|
41
|
+
def __init__(self, task_id=None, task_name=None, status=None, create_time=None, start_time=None, instance_id=None, instance_name=None, task_content=None):
|
42
|
+
"""ScheduleTaskDetail
|
43
|
+
|
44
|
+
The model defined in huaweicloud sdk
|
45
|
+
|
46
|
+
:param task_id: 任务ID。
|
47
|
+
:type task_id: str
|
48
|
+
:param task_name: 任务名称。
|
49
|
+
:type task_name: str
|
50
|
+
:param status: 任务状态。
|
51
|
+
:type status: str
|
52
|
+
:param create_time: 任务创建时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
53
|
+
:type create_time: str
|
54
|
+
:param start_time: 任务开始时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
55
|
+
:type start_time: str
|
56
|
+
:param instance_id: 实例ID。
|
57
|
+
:type instance_id: str
|
58
|
+
:param instance_name: 实例名称。
|
59
|
+
:type instance_name: str
|
60
|
+
:param task_content: 任务信息。
|
61
|
+
:type task_content: object
|
62
|
+
"""
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
self._task_id = None
|
67
|
+
self._task_name = None
|
68
|
+
self._status = None
|
69
|
+
self._create_time = None
|
70
|
+
self._start_time = None
|
71
|
+
self._instance_id = None
|
72
|
+
self._instance_name = None
|
73
|
+
self._task_content = None
|
74
|
+
self.discriminator = None
|
75
|
+
|
76
|
+
if task_id is not None:
|
77
|
+
self.task_id = task_id
|
78
|
+
if task_name is not None:
|
79
|
+
self.task_name = task_name
|
80
|
+
if status is not None:
|
81
|
+
self.status = status
|
82
|
+
if create_time is not None:
|
83
|
+
self.create_time = create_time
|
84
|
+
if start_time is not None:
|
85
|
+
self.start_time = start_time
|
86
|
+
if instance_id is not None:
|
87
|
+
self.instance_id = instance_id
|
88
|
+
if instance_name is not None:
|
89
|
+
self.instance_name = instance_name
|
90
|
+
if task_content is not None:
|
91
|
+
self.task_content = task_content
|
92
|
+
|
93
|
+
@property
|
94
|
+
def task_id(self):
|
95
|
+
"""Gets the task_id of this ScheduleTaskDetail.
|
96
|
+
|
97
|
+
任务ID。
|
98
|
+
|
99
|
+
:return: The task_id of this ScheduleTaskDetail.
|
100
|
+
:rtype: str
|
101
|
+
"""
|
102
|
+
return self._task_id
|
103
|
+
|
104
|
+
@task_id.setter
|
105
|
+
def task_id(self, task_id):
|
106
|
+
"""Sets the task_id of this ScheduleTaskDetail.
|
107
|
+
|
108
|
+
任务ID。
|
109
|
+
|
110
|
+
:param task_id: The task_id of this ScheduleTaskDetail.
|
111
|
+
:type task_id: str
|
112
|
+
"""
|
113
|
+
self._task_id = task_id
|
114
|
+
|
115
|
+
@property
|
116
|
+
def task_name(self):
|
117
|
+
"""Gets the task_name of this ScheduleTaskDetail.
|
118
|
+
|
119
|
+
任务名称。
|
120
|
+
|
121
|
+
:return: The task_name of this ScheduleTaskDetail.
|
122
|
+
:rtype: str
|
123
|
+
"""
|
124
|
+
return self._task_name
|
125
|
+
|
126
|
+
@task_name.setter
|
127
|
+
def task_name(self, task_name):
|
128
|
+
"""Sets the task_name of this ScheduleTaskDetail.
|
129
|
+
|
130
|
+
任务名称。
|
131
|
+
|
132
|
+
:param task_name: The task_name of this ScheduleTaskDetail.
|
133
|
+
:type task_name: str
|
134
|
+
"""
|
135
|
+
self._task_name = task_name
|
136
|
+
|
137
|
+
@property
|
138
|
+
def status(self):
|
139
|
+
"""Gets the status of this ScheduleTaskDetail.
|
140
|
+
|
141
|
+
任务状态。
|
142
|
+
|
143
|
+
:return: The status of this ScheduleTaskDetail.
|
144
|
+
:rtype: str
|
145
|
+
"""
|
146
|
+
return self._status
|
147
|
+
|
148
|
+
@status.setter
|
149
|
+
def status(self, status):
|
150
|
+
"""Sets the status of this ScheduleTaskDetail.
|
151
|
+
|
152
|
+
任务状态。
|
153
|
+
|
154
|
+
:param status: The status of this ScheduleTaskDetail.
|
155
|
+
:type status: str
|
156
|
+
"""
|
157
|
+
self._status = status
|
158
|
+
|
159
|
+
@property
|
160
|
+
def create_time(self):
|
161
|
+
"""Gets the create_time of this ScheduleTaskDetail.
|
162
|
+
|
163
|
+
任务创建时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
164
|
+
|
165
|
+
:return: The create_time of this ScheduleTaskDetail.
|
166
|
+
:rtype: str
|
167
|
+
"""
|
168
|
+
return self._create_time
|
169
|
+
|
170
|
+
@create_time.setter
|
171
|
+
def create_time(self, create_time):
|
172
|
+
"""Sets the create_time of this ScheduleTaskDetail.
|
173
|
+
|
174
|
+
任务创建时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
175
|
+
|
176
|
+
:param create_time: The create_time of this ScheduleTaskDetail.
|
177
|
+
:type create_time: str
|
178
|
+
"""
|
179
|
+
self._create_time = create_time
|
180
|
+
|
181
|
+
@property
|
182
|
+
def start_time(self):
|
183
|
+
"""Gets the start_time of this ScheduleTaskDetail.
|
184
|
+
|
185
|
+
任务开始时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
186
|
+
|
187
|
+
:return: The start_time of this ScheduleTaskDetail.
|
188
|
+
:rtype: str
|
189
|
+
"""
|
190
|
+
return self._start_time
|
191
|
+
|
192
|
+
@start_time.setter
|
193
|
+
def start_time(self, start_time):
|
194
|
+
"""Sets the start_time of this ScheduleTaskDetail.
|
195
|
+
|
196
|
+
任务开始时间,格式为yyyy-mm-ddThh:mm:ssZ。
|
197
|
+
|
198
|
+
:param start_time: The start_time of this ScheduleTaskDetail.
|
199
|
+
:type start_time: str
|
200
|
+
"""
|
201
|
+
self._start_time = start_time
|
202
|
+
|
203
|
+
@property
|
204
|
+
def instance_id(self):
|
205
|
+
"""Gets the instance_id of this ScheduleTaskDetail.
|
206
|
+
|
207
|
+
实例ID。
|
208
|
+
|
209
|
+
:return: The instance_id of this ScheduleTaskDetail.
|
210
|
+
:rtype: str
|
211
|
+
"""
|
212
|
+
return self._instance_id
|
213
|
+
|
214
|
+
@instance_id.setter
|
215
|
+
def instance_id(self, instance_id):
|
216
|
+
"""Sets the instance_id of this ScheduleTaskDetail.
|
217
|
+
|
218
|
+
实例ID。
|
219
|
+
|
220
|
+
:param instance_id: The instance_id of this ScheduleTaskDetail.
|
221
|
+
:type instance_id: str
|
222
|
+
"""
|
223
|
+
self._instance_id = instance_id
|
224
|
+
|
225
|
+
@property
|
226
|
+
def instance_name(self):
|
227
|
+
"""Gets the instance_name of this ScheduleTaskDetail.
|
228
|
+
|
229
|
+
实例名称。
|
230
|
+
|
231
|
+
:return: The instance_name of this ScheduleTaskDetail.
|
232
|
+
:rtype: str
|
233
|
+
"""
|
234
|
+
return self._instance_name
|
235
|
+
|
236
|
+
@instance_name.setter
|
237
|
+
def instance_name(self, instance_name):
|
238
|
+
"""Sets the instance_name of this ScheduleTaskDetail.
|
239
|
+
|
240
|
+
实例名称。
|
241
|
+
|
242
|
+
:param instance_name: The instance_name of this ScheduleTaskDetail.
|
243
|
+
:type instance_name: str
|
244
|
+
"""
|
245
|
+
self._instance_name = instance_name
|
246
|
+
|
247
|
+
@property
|
248
|
+
def task_content(self):
|
249
|
+
"""Gets the task_content of this ScheduleTaskDetail.
|
250
|
+
|
251
|
+
任务信息。
|
252
|
+
|
253
|
+
:return: The task_content of this ScheduleTaskDetail.
|
254
|
+
:rtype: object
|
255
|
+
"""
|
256
|
+
return self._task_content
|
257
|
+
|
258
|
+
@task_content.setter
|
259
|
+
def task_content(self, task_content):
|
260
|
+
"""Sets the task_content of this ScheduleTaskDetail.
|
261
|
+
|
262
|
+
任务信息。
|
263
|
+
|
264
|
+
:param task_content: The task_content of this ScheduleTaskDetail.
|
265
|
+
:type task_content: object
|
266
|
+
"""
|
267
|
+
self._task_content = task_content
|
268
|
+
|
269
|
+
def to_dict(self):
|
270
|
+
"""Returns the model properties as a dict"""
|
271
|
+
result = {}
|
272
|
+
|
273
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
274
|
+
value = getattr(self, attr)
|
275
|
+
if isinstance(value, list):
|
276
|
+
result[attr] = list(map(
|
277
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
278
|
+
value
|
279
|
+
))
|
280
|
+
elif hasattr(value, "to_dict"):
|
281
|
+
result[attr] = value.to_dict()
|
282
|
+
elif isinstance(value, dict):
|
283
|
+
result[attr] = dict(map(
|
284
|
+
lambda item: (item[0], item[1].to_dict())
|
285
|
+
if hasattr(item[1], "to_dict") else item,
|
286
|
+
value.items()
|
287
|
+
))
|
288
|
+
else:
|
289
|
+
if attr in self.sensitive_list:
|
290
|
+
result[attr] = "****"
|
291
|
+
else:
|
292
|
+
result[attr] = value
|
293
|
+
|
294
|
+
return result
|
295
|
+
|
296
|
+
def to_str(self):
|
297
|
+
"""Returns the string representation of the model"""
|
298
|
+
import simplejson as json
|
299
|
+
if six.PY2:
|
300
|
+
import sys
|
301
|
+
reload(sys)
|
302
|
+
sys.setdefaultencoding("utf-8")
|
303
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
304
|
+
|
305
|
+
def __repr__(self):
|
306
|
+
"""For `print`"""
|
307
|
+
return self.to_str()
|
308
|
+
|
309
|
+
def __eq__(self, other):
|
310
|
+
"""Returns true if both objects are equal"""
|
311
|
+
if not isinstance(other, ScheduleTaskDetail):
|
312
|
+
return False
|
313
|
+
|
314
|
+
return self.__dict__ == other.__dict__
|
315
|
+
|
316
|
+
def __ne__(self, other):
|
317
|
+
"""Returns true if both objects are not equal"""
|
318
|
+
return not self == other
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdbforopengauss
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.139
|
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.139
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -1,8 +1,8 @@
|
|
1
1
|
huaweicloudsdkgaussdbforopengauss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
huaweicloudsdkgaussdbforopengauss/v3/__init__.py,sha256=
|
3
|
-
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=
|
4
|
-
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=
|
5
|
-
huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=
|
2
|
+
huaweicloudsdkgaussdbforopengauss/v3/__init__.py,sha256=1kkCGBtt9bhWSDmhXqRONMAIQjyBbb9LOZaHDxJPTeQ,48307
|
3
|
+
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_async_client.py,sha256=SMsYU7HBQAzcioF7n7aR2OMIbnM2X7jDHdsOS-fEEAU,330056
|
4
|
+
huaweicloudsdkgaussdbforopengauss/v3/gaussdbforopengauss_client.py,sha256=uAVs7b3Jn5CMLtXNUiUPmZFhnOco_DirqYoHVvORmjs,330217
|
5
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/__init__.py,sha256=2pP0tnPNMAPr8EGDF1nQYYz1WLCCNktaUTICeizT4Io,48125
|
6
6
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_instance_tags_request.py,sha256=wWayfcbJ4P3MA7CINc1L_BEj_RNLWXExO8YR_m1US58,4784
|
7
7
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_instance_tags_response.py,sha256=Z3MBz9wjgIqiNE3XJlcgsYJYKfIPvYYhoJIUsQ2uuiQ,4273
|
8
8
|
huaweicloudsdkgaussdbforopengauss/v3/model/add_tags_request_body.py,sha256=fV7_rS3Q-6vMRmostu9KLEwy4BPMnw7oqTmArLTosUE,3076
|
@@ -28,6 +28,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/bind_eip_request_body.py,sha256=4Kh29
|
|
28
28
|
huaweicloudsdkgaussdbforopengauss/v3/model/binded_eip_result.py,sha256=NhsG165uABIJc2XdO2uIbmDOc5wGQrJlfX8zoTVIc6Y,11173
|
29
29
|
huaweicloudsdkgaussdbforopengauss/v3/model/can_be_rollbacked_hotfix_detail.py,sha256=lLD8-VHDwnXolFsftHorU0MFu7_AMS0YffrhoQt_-mU,6241
|
30
30
|
huaweicloudsdkgaussdbforopengauss/v3/model/can_be_upgraded_hotfix_detail.py,sha256=wu9VA5ugTA7NBCeL8CVLKBS_fPqDqdpR-rW8rjK8Uok,6203
|
31
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/cancel_schedule_task_request.py,sha256=7UWnNcpWzFuqYIgmcH1oVV_CXEAikSGtJTnr1Rl12aM,3874
|
32
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/cancel_schedule_task_response.py,sha256=NH9G0sN4ktlSiYCqsHRBKPrHe1jFPRuuhr_CC1OEJvI,2455
|
31
33
|
huaweicloudsdkgaussdbforopengauss/v3/model/cn_info_before_reduce.py,sha256=eV7QMeDLpTBRYZOj88Jow4eH6C-MNvP1xiFLAf8pOJ8,6808
|
32
34
|
huaweicloudsdkgaussdbforopengauss/v3/model/components.py,sha256=epzC_8ZJpXJ_3zJL8rX_09N9IW2gy7peRefWpO61ga4,7919
|
33
35
|
huaweicloudsdkgaussdbforopengauss/v3/model/configuration_parameter.py,sha256=9w_xRWQRwvhWOnlDHessVinOrp8Xe_p_0BuA57s2QPI,7209
|
@@ -72,6 +74,9 @@ huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_request_body.py,
|
|
72
74
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_manual_backup_response.py,sha256=4DkP4S6HAeJIa12Ma200eeKcLJaPfEn19XLLRPeOjXE,4044
|
73
75
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_restore_instance_request.py,sha256=9BX9WY50OIQoODxKL-8S64tyawEstHCKY8D4XuGc-ss,4102
|
74
76
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_restore_instance_response.py,sha256=gF6R_I2p6nM6P1DOom0ngr4s2xGnTJUtQikq6zZX_mI,4369
|
77
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_request.py,sha256=kNuOpO_ng8ZimUNseGqMhNZf0yUQop42QfChRg173wI,4067
|
78
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_request_body.py,sha256=E35k1yw_5aU7YpU61Ir5UM6RY1uPAXILAT9939r_reA,6804
|
79
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/create_schedule_task_response.py,sha256=a1xoYUQpr0dZq4F2iKdIdxM_HKFXzt4RiiIlTFpHGL8,3599
|
75
80
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_slow_log_download_request.py,sha256=zDwxIjbRjYpMKDoXa9mcZxLV8tCjUtZg2dCs4HDglQE,4061
|
76
81
|
huaweicloudsdkgaussdbforopengauss/v3/model/create_slow_log_download_response.py,sha256=qK_WizCqXy9bvyiEgBkdkrUc1-4wwxx4BiK_EatJKaQ,3445
|
77
82
|
huaweicloudsdkgaussdbforopengauss/v3/model/data_stroe_error_response.py,sha256=jV7RoKKTSVZMpPHaPEP9J8Q0_r4cfN9ut75OzX4J5S4,3867
|
@@ -97,6 +102,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/delete_limit_task_request.py,sha256=G
|
|
97
102
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_limit_task_response.py,sha256=cSR32CLl4FbYFx9R_lRYcPBX8m7L78V2X4g0pwZC_90,2443
|
98
103
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_request.py,sha256=7crFrPxewhpxru-Vo8B5teqnJFDy1dvasCjQPJPuxD8,3927
|
99
104
|
huaweicloudsdkgaussdbforopengauss/v3/model/delete_manual_backup_response.py,sha256=pUGWeqE3QPQ7cWSBO7H_4O5BM0hdQPK9gkTn3vLBVVw,4127
|
105
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/delete_schedule_task_request.py,sha256=ORycUZDMGZ7XmBBebMSpk8JwNJ4Z99fwC9hXMTDf3_s,3874
|
106
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/delete_schedule_task_response.py,sha256=WX1PAVr3nxIRrxyS5adBXCW6MLveacFXhHnaW2EAhEA,2455
|
100
107
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_error_response.py,sha256=4FeT7N8Wt4kMlhaLjXDaRvCJfKYKz-mO0hci9JyMs8E,3922
|
101
108
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_request.py,sha256=5GDDQM1HwIKHWn0plULYhXc3uqfDRn8iSgiSSqio5zM,3865
|
102
109
|
huaweicloudsdkgaussdbforopengauss/v3/model/download_backup_response.py,sha256=lPPJ5CPt1Hb-7EASuB989UzqmvaBEFXTtYy2kdfWJjI,4090
|
@@ -131,8 +138,11 @@ huaweicloudsdkgaussdbforopengauss/v3/model/hotfix_version_info.py,sha256=o1eBmsy
|
|
131
138
|
huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request.py,sha256=jPomY_GzXqUOYbf-SvpE-zQPA9ZiGx4zc6A9qAPs6Zo,4950
|
132
139
|
huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_request_body.py,sha256=Jm1viE2rfViJY_syTjikVjUar6NkmFdY597UcgcQy1Y,4652
|
133
140
|
huaweicloudsdkgaussdbforopengauss/v3/model/install_kernel_plugin_response.py,sha256=f-E9hqmT4YpbPc9sPWTeXVClx6cjypbMN8iq8Qoh-Jo,3237
|
141
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/instance_detail.py,sha256=FW6uaHGGepE47yqvL-UA6zPOilkpviN3dvoMxYcbqm8,7037
|
142
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/instance_engine_detail.py,sha256=2UPf5qd0-56ImpXTt8_5QFtizZv4CYssI5bnuCUqoh4,4238
|
134
143
|
huaweicloudsdkgaussdbforopengauss/v3/model/instance_info_result.py,sha256=F-IRdC5BnXejA0JizSF3-X3-EuBBtJcFCjp9GjOJABk,4937
|
135
144
|
huaweicloudsdkgaussdbforopengauss/v3/model/instance_log_file.py,sha256=-CNIDxPTfQqtnEipdnPv37YkVcZxnaAqFNKytIXPmWo,7043
|
145
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/instance_task_detail.py,sha256=kDNhr24GusDD8jbn7o6HwMz-3dVGxY20ZYYb9mO27rg,4649
|
136
146
|
huaweicloudsdkgaussdbforopengauss/v3/model/instances_list_result.py,sha256=JAn3VuBgrccL0xwSewKj3srcsda4m_DdcDmPUUhE6lA,4023
|
137
147
|
huaweicloudsdkgaussdbforopengauss/v3/model/instances_result.py,sha256=a2584ySWWIVWPfCd_uTqv8hCUPjUccb1LpjOlKdoiSY,8168
|
138
148
|
huaweicloudsdkgaussdbforopengauss/v3/model/job_detail.py,sha256=DxWwDqx3hIZs_0XP4jaz4SGqQa5oPLFb0D239qI01m4,7963
|
@@ -198,6 +208,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_history_operations_result.py,sha
|
|
198
208
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_datastore.py,sha256=sJLo6puI88rmIHEqD_LIpZlKNKtNqAqdk_hOc_lWK4w,8107
|
199
209
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_details_request.py,sha256=IKtqYyn8zavcrdSztAHvda6ny1J-ZXiJ_CF_kCNuUZc,17007
|
200
210
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_details_response.py,sha256=k7SuJBSgmpJ01KUkh55FSD4oEit8hPiFVrGCkdu051k,4377
|
211
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_engine_detail_request.py,sha256=IRUdDeh8AEiZvA2RzFuvbgwoz6tYmmruvV3mDafdMuc,5450
|
212
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_engine_detail_response.py,sha256=CuYhF4xDvICGJV2kRKr-SplG7BoTFMcb-FzS_sjYF4g,4853
|
201
213
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_error_logs_request.py,sha256=1bWr7ujXiBwhJ92YBrAIBSyMZHs0KJS5_hjG0fkUDRk,9241
|
202
214
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_error_logs_response.py,sha256=3lP4e7DEGyAwtfNrjQBvTn3nnAtaL3kjAxI067hXLwg,4238
|
203
215
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_instance_response.py,sha256=3HeKPyGx0pIRPx5z9p9esi2ZU9hSAeA0m-U7iK1xW-w,33629
|
@@ -239,6 +251,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/list_restorable_instances_request.py,
|
|
239
251
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_restorable_instances_response.py,sha256=oimPw_G4NoqjGUYwSVW3c0iEr-Kl67oTjwSd3E0h4Es,4544
|
240
252
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_restore_times_request.py,sha256=49HcV-kvvuMnxziaOZ8XNcytLvKu7V8KNYgYebZDDGo,4755
|
241
253
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_restore_times_response.py,sha256=9l5TmsI-I6GvpNAFX0wOcQP1k_nN0QZGxMY4F59L9U0,3645
|
254
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_schedule_task_request.py,sha256=_wSEKLi8gfUGJbxlCcpGvr-bWYpX2Te0cAj4khEnNVw,9407
|
255
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/list_schedule_task_response.py,sha256=uSU4cvYOUDiN3KL2vpL1pmk_HUKCPgA48qNVkIZo_ts,4245
|
242
256
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_storage_types_request.py,sha256=lTpiDu0acDLoqJQIcdyk9FcPicMgcfjAwSuVUGS-OjM,4886
|
243
257
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_storage_types_response.py,sha256=r_otq0Wo1l1xH6mUU_8uk3qcukyXBYaSfloliznymnY,3541
|
244
258
|
huaweicloudsdkgaussdbforopengauss/v3/model/list_support_kernel_plugins_request.py,sha256=mWzQLZnDZ--NQGRbpAqYKTejHGUGKrHPCGsHV7BwPI0,3195
|
@@ -319,6 +333,7 @@ huaweicloudsdkgaussdbforopengauss/v3/model/resume_plugin_extensions_response.py,
|
|
319
333
|
huaweicloudsdkgaussdbforopengauss/v3/model/roll_upgrade_progress.py,sha256=5qDozDuisUPJ1k8XvUqUZwGljdrPLD9LVa6rqv3AHks,8240
|
320
334
|
huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_request.py,sha256=2TZYA5bNC8SRYUzi9lNNHneuBrJ2iUdjJLkxWqzVywg,4855
|
321
335
|
huaweicloudsdkgaussdbforopengauss/v3/model/run_instance_action_response.py,sha256=rtm6WkL_L4uH9aMBbKMpevhZxSKaS3yvHkAetEX7pzM,4184
|
336
|
+
huaweicloudsdkgaussdbforopengauss/v3/model/schedule_task_detail.py,sha256=tAstIdPQXX_E53AkIlDx5Jw3PLnv1knaIZU0-xJQlj4,8973
|
322
337
|
huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_request.py,sha256=-tQlE-VWp_ud-0TKRTGupqSfol5z-m8-TckgjIUkKs8,4008
|
323
338
|
huaweicloudsdkgaussdbforopengauss/v3/model/search_auto_enlarge_policy_response.py,sha256=jwCYJgBdhHI7gwEzxDbjl1TWvGmyMz0FrtON_5BVbfA,10514
|
324
339
|
huaweicloudsdkgaussdbforopengauss/v3/model/set_backup_policy_request.py,sha256=EsOIMHERjGB-im4Ey2_BwOLtiB9nHKUTT23gEFbo7Bg,4951
|
@@ -433,8 +448,8 @@ huaweicloudsdkgaussdbforopengauss/v3/model/validate_weak_password_response.py,sh
|
|
433
448
|
huaweicloudsdkgaussdbforopengauss/v3/model/weak_password_request_body.py,sha256=o6aHUH5vLvSBEf2BJZkKk4XCiwcJgVu7rHklOd476B0,3101
|
434
449
|
huaweicloudsdkgaussdbforopengauss/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
450
|
huaweicloudsdkgaussdbforopengauss/v3/region/gaussdbforopengauss_region.py,sha256=kjNxya2QAw33C5zMJES9Yj1z83HF7ezACprg_DPDYzg,4456
|
436
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
437
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
438
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
439
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
440
|
-
huaweicloudsdkgaussdbforopengauss-3.1.
|
451
|
+
huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
452
|
+
huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info/METADATA,sha256=VbUunbwpIk6h--14AIZuA5OJej4XhhzwcH5Li72nK6Q,1183
|
453
|
+
huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info/WHEEL,sha256=Kh9pAotZVRFj97E15yTA4iADqXdQfIVTHcNaZTjxeGM,110
|
454
|
+
huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info/top_level.txt,sha256=Eu0Q0tFHFbnL_PjFOY4Uagc9Xd6tEIZWVieOKIvJ5-A,34
|
455
|
+
huaweicloudsdkgaussdbforopengauss-3.1.139.dist-info/RECORD,,
|
File without changes
|
File without changes
|