huaweicloudsdkgaussdb 3.1.117__py2.py3-none-any.whl → 3.1.119__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.
- huaweicloudsdkgaussdb/v3/model/table_config_check_request_v3.py +61 -3
- {huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/METADATA +2 -2
- {huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/RECORD +6 -6
- {huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/LICENSE +0 -0
- {huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/WHEEL +0 -0
- {huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,9 @@ class TableConfigCheckRequestV3:
|
|
23
23
|
'task_name': 'str',
|
24
24
|
'db_configs': 'list[DbConfig]',
|
25
25
|
'tables_configs': 'list[TablesConfig]',
|
26
|
-
'table_repl_config': 'TableReplConfig'
|
26
|
+
'table_repl_config': 'TableReplConfig',
|
27
|
+
'target_database_name': 'str',
|
28
|
+
'is_create_task': 'str'
|
27
29
|
}
|
28
30
|
|
29
31
|
attribute_map = {
|
@@ -33,10 +35,12 @@ class TableConfigCheckRequestV3:
|
|
33
35
|
'task_name': 'task_name',
|
34
36
|
'db_configs': 'db_configs',
|
35
37
|
'tables_configs': 'tables_configs',
|
36
|
-
'table_repl_config': 'table_repl_config'
|
38
|
+
'table_repl_config': 'table_repl_config',
|
39
|
+
'target_database_name': 'target_database_name',
|
40
|
+
'is_create_task': 'is_create_task'
|
37
41
|
}
|
38
42
|
|
39
|
-
def __init__(self, source_instance_id=None, source_node_id=None, source_database_name=None, task_name=None, db_configs=None, tables_configs=None, table_repl_config=None):
|
43
|
+
def __init__(self, source_instance_id=None, source_node_id=None, source_database_name=None, task_name=None, db_configs=None, tables_configs=None, table_repl_config=None, target_database_name=None, is_create_task=None):
|
40
44
|
"""TableConfigCheckRequestV3
|
41
45
|
|
42
46
|
The model defined in huaweicloud sdk
|
@@ -55,6 +59,10 @@ class TableConfigCheckRequestV3:
|
|
55
59
|
:type tables_configs: list[:class:`huaweicloudsdkgaussdb.v3.TablesConfig`]
|
56
60
|
:param table_repl_config:
|
57
61
|
:type table_repl_config: :class:`huaweicloudsdkgaussdb.v3.TableReplConfig`
|
62
|
+
:param target_database_name: 目标数据库名。字符长度限制3~128位,仅支持英文大小写字母、数字以及下划线。
|
63
|
+
:type target_database_name: str
|
64
|
+
:param is_create_task: 是否创建同步任务
|
65
|
+
:type is_create_task: str
|
58
66
|
"""
|
59
67
|
|
60
68
|
|
@@ -66,6 +74,8 @@ class TableConfigCheckRequestV3:
|
|
66
74
|
self._db_configs = None
|
67
75
|
self._tables_configs = None
|
68
76
|
self._table_repl_config = None
|
77
|
+
self._target_database_name = None
|
78
|
+
self._is_create_task = None
|
69
79
|
self.discriminator = None
|
70
80
|
|
71
81
|
if source_instance_id is not None:
|
@@ -82,6 +92,10 @@ class TableConfigCheckRequestV3:
|
|
82
92
|
self.tables_configs = tables_configs
|
83
93
|
if table_repl_config is not None:
|
84
94
|
self.table_repl_config = table_repl_config
|
95
|
+
if target_database_name is not None:
|
96
|
+
self.target_database_name = target_database_name
|
97
|
+
if is_create_task is not None:
|
98
|
+
self.is_create_task = is_create_task
|
85
99
|
|
86
100
|
@property
|
87
101
|
def source_instance_id(self):
|
@@ -233,6 +247,50 @@ class TableConfigCheckRequestV3:
|
|
233
247
|
"""
|
234
248
|
self._table_repl_config = table_repl_config
|
235
249
|
|
250
|
+
@property
|
251
|
+
def target_database_name(self):
|
252
|
+
"""Gets the target_database_name of this TableConfigCheckRequestV3.
|
253
|
+
|
254
|
+
目标数据库名。字符长度限制3~128位,仅支持英文大小写字母、数字以及下划线。
|
255
|
+
|
256
|
+
:return: The target_database_name of this TableConfigCheckRequestV3.
|
257
|
+
:rtype: str
|
258
|
+
"""
|
259
|
+
return self._target_database_name
|
260
|
+
|
261
|
+
@target_database_name.setter
|
262
|
+
def target_database_name(self, target_database_name):
|
263
|
+
"""Sets the target_database_name of this TableConfigCheckRequestV3.
|
264
|
+
|
265
|
+
目标数据库名。字符长度限制3~128位,仅支持英文大小写字母、数字以及下划线。
|
266
|
+
|
267
|
+
:param target_database_name: The target_database_name of this TableConfigCheckRequestV3.
|
268
|
+
:type target_database_name: str
|
269
|
+
"""
|
270
|
+
self._target_database_name = target_database_name
|
271
|
+
|
272
|
+
@property
|
273
|
+
def is_create_task(self):
|
274
|
+
"""Gets the is_create_task of this TableConfigCheckRequestV3.
|
275
|
+
|
276
|
+
是否创建同步任务
|
277
|
+
|
278
|
+
:return: The is_create_task of this TableConfigCheckRequestV3.
|
279
|
+
:rtype: str
|
280
|
+
"""
|
281
|
+
return self._is_create_task
|
282
|
+
|
283
|
+
@is_create_task.setter
|
284
|
+
def is_create_task(self, is_create_task):
|
285
|
+
"""Sets the is_create_task of this TableConfigCheckRequestV3.
|
286
|
+
|
287
|
+
是否创建同步任务
|
288
|
+
|
289
|
+
:param is_create_task: The is_create_task of this TableConfigCheckRequestV3.
|
290
|
+
:type is_create_task: str
|
291
|
+
"""
|
292
|
+
self._is_create_task = is_create_task
|
293
|
+
|
236
294
|
def to_dict(self):
|
237
295
|
"""Returns the model properties as a dict"""
|
238
296
|
result = {}
|
{huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkgaussdb
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.119
|
4
4
|
Summary: GaussDB
|
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.119
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -598,7 +598,7 @@ huaweicloudsdkgaussdb/v3/model/switch_proxy_ssl_request.py,sha256=esyBecwJVs0pq_
|
|
598
598
|
huaweicloudsdkgaussdb/v3/model/switch_ssl_request.py,sha256=ky_M38WBeMVACVg8OMaAln_PJ-aZ1mw_sjxigsaeGCE,3322
|
599
599
|
huaweicloudsdkgaussdb/v3/model/sync_star_rocks_users_request.py,sha256=lAhxYmsXXlFlVh5EJMgIX3o5mr41Qu8nxA4nKxkempM,4969
|
600
600
|
huaweicloudsdkgaussdb/v3/model/sync_star_rocks_users_response.py,sha256=fRIGOnlB2d0_BzDgkYN9NpDg-jbfPiCe-EJmZhDROaI,3282
|
601
|
-
huaweicloudsdkgaussdb/v3/model/table_config_check_request_v3.py,sha256=
|
601
|
+
huaweicloudsdkgaussdb/v3/model/table_config_check_request_v3.py,sha256=ts9EcW3jFSP8PDnbuX90z5o1dxKaB04Dd-BHDG0nCH8,12223
|
602
602
|
huaweicloudsdkgaussdb/v3/model/table_config_check_result.py,sha256=n4XbW-MsRU_abTWmNEadh_HT7YHpmtfaaxq0r6sP1MQ,4876
|
603
603
|
huaweicloudsdkgaussdb/v3/model/table_repl_config.py,sha256=bmEIDLlTTQHhJokYHicNu3L8leaDOXtjHxHu-PTxG14,4960
|
604
604
|
huaweicloudsdkgaussdb/v3/model/tables_config.py,sha256=BBwpJSQ65Ms_iSrI1sSjciUTj34-teK1F9uqGsQK4pc,3894
|
@@ -705,8 +705,8 @@ huaweicloudsdkgaussdb/v3/model/upgrade_proxy_version_response.py,sha256=j-sLDpdK
|
|
705
705
|
huaweicloudsdkgaussdb/v3/model/user_sync_req.py,sha256=_jObFGs0zxCcpg4K4j2Yh6Vwx1cBu4lt5Lwr650ryVw,2991
|
706
706
|
huaweicloudsdkgaussdb/v3/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
707
707
|
huaweicloudsdkgaussdb/v3/region/gaussdb_region.py,sha256=0rDyLMMfLinl1jkIMxONjoC6ad0olH_QAWuzYDrCDlc,2994
|
708
|
-
huaweicloudsdkgaussdb-3.1.
|
709
|
-
huaweicloudsdkgaussdb-3.1.
|
710
|
-
huaweicloudsdkgaussdb-3.1.
|
711
|
-
huaweicloudsdkgaussdb-3.1.
|
712
|
-
huaweicloudsdkgaussdb-3.1.
|
708
|
+
huaweicloudsdkgaussdb-3.1.119.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
709
|
+
huaweicloudsdkgaussdb-3.1.119.dist-info/METADATA,sha256=j4ZQNDeOt7i3IcN7wYy9N2Buo6-h5jihQSvWSoYH1Qo,1147
|
710
|
+
huaweicloudsdkgaussdb-3.1.119.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
711
|
+
huaweicloudsdkgaussdb-3.1.119.dist-info/top_level.txt,sha256=_exDbngu-ivLzntD1UgfR3aRI7WoXQUaayhgYshbpyA,22
|
712
|
+
huaweicloudsdkgaussdb-3.1.119.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{huaweicloudsdkgaussdb-3.1.117.dist-info → huaweicloudsdkgaussdb-3.1.119.dist-info}/top_level.txt
RENAMED
File without changes
|