tencentcloud-sdk-python-dts 3.0.1460__tar.gz → 3.0.1477__tar.gz
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.
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/setup.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20180330/dts_client.py +1 -1
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20180330/models.py +8 -4
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20211206/dts_client.py +7 -6
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20211206/models.py +169 -104
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud_sdk_python_dts.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-dts-3.0.1477/tencentcloud_sdk_python_dts.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-dts-3.0.1460/tencentcloud_sdk_python_dts.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/README.rst +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/setup.cfg +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20180330/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20180330/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20211206/__init__.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud/dts/v20211206/errorcodes.py +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud_sdk_python_dts.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud_sdk_python_dts.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-dts-3.0.1460 → tencentcloud-sdk-python-dts-3.0.1477}/tencentcloud_sdk_python_dts.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-dts',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1477,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Dts SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -501,7 +501,7 @@ class DtsClient(AbstractClient):
|
|
|
501
501
|
|
|
502
502
|
|
|
503
503
|
def StartMigrateJob(self, request):
|
|
504
|
-
r"""本接口(
|
|
504
|
+
r"""本接口(StartMigrateJob)用于启动迁移任务。非定时迁移任务会在调用后立即开始迁移,定时任务则会开始倒计时。
|
|
505
505
|
调用此接口前,请务必先使用CreateMigrateCheckJob校验数据迁移任务,并通过DescribeMigrateJobs接口查询到任务状态为校验通过(status=4)时,才能启动数据迁移任务。
|
|
506
506
|
|
|
507
507
|
:param request: Request instance for StartMigrateJob.
|
|
@@ -181,7 +181,8 @@ class CompleteMigrateJobRequest(AbstractModel):
|
|
|
181
181
|
|
|
182
182
|
def __init__(self):
|
|
183
183
|
r"""
|
|
184
|
-
:param _JobId: 数据迁移任务ID
|
|
184
|
+
:param _JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
185
|
+
|
|
185
186
|
:type JobId: str
|
|
186
187
|
:param _CompleteMode: 完成任务的方式,仅支持旧版MySQL迁移任务。waitForSync-等待主从差距为0才停止,immediately-立即完成,不会等待主从差距一致。默认为waitForSync
|
|
187
188
|
:type CompleteMode: str
|
|
@@ -191,7 +192,8 @@ class CompleteMigrateJobRequest(AbstractModel):
|
|
|
191
192
|
|
|
192
193
|
@property
|
|
193
194
|
def JobId(self):
|
|
194
|
-
r"""数据迁移任务ID
|
|
195
|
+
r"""数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
196
|
+
|
|
195
197
|
:rtype: str
|
|
196
198
|
"""
|
|
197
199
|
return self._JobId
|
|
@@ -4146,14 +4148,16 @@ class StartMigrateJobRequest(AbstractModel):
|
|
|
4146
4148
|
|
|
4147
4149
|
def __init__(self):
|
|
4148
4150
|
r"""
|
|
4149
|
-
:param _JobId: 数据迁移任务ID
|
|
4151
|
+
:param _JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
4152
|
+
|
|
4150
4153
|
:type JobId: str
|
|
4151
4154
|
"""
|
|
4152
4155
|
self._JobId = None
|
|
4153
4156
|
|
|
4154
4157
|
@property
|
|
4155
4158
|
def JobId(self):
|
|
4156
|
-
r"""数据迁移任务ID
|
|
4159
|
+
r"""数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
4160
|
+
|
|
4157
4161
|
:rtype: str
|
|
4158
4162
|
"""
|
|
4159
4163
|
return self._JobId
|
|
@@ -190,7 +190,8 @@ class DtsClient(AbstractClient):
|
|
|
190
190
|
|
|
191
191
|
|
|
192
192
|
def CreateConsumerGroup(self, request):
|
|
193
|
-
r"""
|
|
193
|
+
r"""为订阅实例创建消费者组。
|
|
194
|
+
只有状态为运行中的实例支持创建消费组。
|
|
194
195
|
|
|
195
196
|
:param request: Request instance for CreateConsumerGroup.
|
|
196
197
|
:type request: :class:`tencentcloud.dts.v20211206.models.CreateConsumerGroupRequest`
|
|
@@ -213,7 +214,7 @@ class DtsClient(AbstractClient):
|
|
|
213
214
|
|
|
214
215
|
|
|
215
216
|
def CreateMigrateCheckJob(self, request):
|
|
216
|
-
r"""
|
|
217
|
+
r"""创建校验迁移任务,
|
|
217
218
|
在开始迁移前, 必须调用本接口创建校验迁移任务, 且校验成功后才能开始迁移. 校验的结果可以通过DescribeMigrationCheckJob查看,
|
|
218
219
|
校验成功后,迁移任务若有修改, 则必须重新校验并通过后, 才能开始迁移
|
|
219
220
|
|
|
@@ -865,7 +866,7 @@ class DtsClient(AbstractClient):
|
|
|
865
866
|
|
|
866
867
|
|
|
867
868
|
def IsolateSyncJob(self, request):
|
|
868
|
-
r"""隔离同步任务,隔离后可通过查询同步任务信息接口DescribeSyncJobs获取隔离后状态。在任务隔离后可进行解除隔离(RecoverSyncJob)
|
|
869
|
+
r"""隔离同步任务,隔离后可通过查询同步任务信息接口DescribeSyncJobs获取隔离后状态。在任务隔离后可进行解除隔离(RecoverSyncJob)操作或直接进行下线(DestroySyncJob)操作。对于不计费任务,调用此接口后会直接删除任务,无法进行恢复操作。
|
|
869
870
|
|
|
870
871
|
:param request: Request instance for IsolateSyncJob.
|
|
871
872
|
:type request: :class:`tencentcloud.dts.v20211206.models.IsolateSyncJobRequest`
|
|
@@ -1280,7 +1281,7 @@ class DtsClient(AbstractClient):
|
|
|
1280
1281
|
|
|
1281
1282
|
|
|
1282
1283
|
def RecoverSyncJob(self, request):
|
|
1283
|
-
r"""解除隔离同步任务,任务在已隔离状态下可调用该接口解除隔离状态任务,同时可通过查询同步任务信息接口DescribeSyncJobs
|
|
1284
|
+
r"""解除隔离同步任务,任务在已隔离状态下可调用该接口解除隔离状态任务,同时可通过查询同步任务信息接口DescribeSyncJobs,获取操作后状态。注意,此接口只支持按量计费实例。
|
|
1284
1285
|
|
|
1285
1286
|
:param request: Request instance for RecoverSyncJob.
|
|
1286
1287
|
:type request: :class:`tencentcloud.dts.v20211206.models.RecoverSyncJobRequest`
|
|
@@ -1327,7 +1328,7 @@ class DtsClient(AbstractClient):
|
|
|
1327
1328
|
|
|
1328
1329
|
def ResetSubscribe(self, request):
|
|
1329
1330
|
r"""本接口(ResetSubscribe)用于重置订阅实例,重置后,可以重新配置订阅任务。
|
|
1330
|
-
可以调用 DescribeSubscribeDetail 查询订阅信息判断是否置成功。当SubsStatus变为notStarted时,表示重置成功。
|
|
1331
|
+
可以调用 [DescribeSubscribeDetail](https://cloud.tencent.com/document/product/571/102944) 查询订阅信息判断是否置成功。当SubsStatus变为notStarted时,表示重置成功。
|
|
1331
1332
|
|
|
1332
1333
|
:param request: Request instance for ResetSubscribe.
|
|
1333
1334
|
:type request: :class:`tencentcloud.dts.v20211206.models.ResetSubscribeRequest`
|
|
@@ -1511,7 +1512,7 @@ class DtsClient(AbstractClient):
|
|
|
1511
1512
|
|
|
1512
1513
|
|
|
1513
1514
|
def StartCompare(self, request):
|
|
1514
|
-
r"""
|
|
1515
|
+
r"""启动一致性校验任务,启动之前需要先通过接口 [CreateCompareTask](https://cloud.tencent.com/document/product/571/82093) 创建一致性校验任务,启动后可通过接口 [DescribeCompareTasks](https://cloud.tencent.com/document/product/571/82088) 查询一致性校验任务列表来获得启动后的状态
|
|
1515
1516
|
|
|
1516
1517
|
:param request: Request instance for StartCompare.
|
|
1517
1518
|
:type request: :class:`tencentcloud.dts.v20211206.models.StartCompareRequest`
|
|
@@ -1743,11 +1743,12 @@ class ConfigureSyncJobRequest(AbstractModel):
|
|
|
1743
1743
|
|
|
1744
1744
|
def __init__(self):
|
|
1745
1745
|
r"""
|
|
1746
|
-
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
1746
|
+
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
1747
|
+
|
|
1747
1748
|
:type JobId: str
|
|
1748
|
-
:param _SrcAccessType: 源端接入类型,cdb(云数据库)、cvm(
|
|
1749
|
+
:param _SrcAccessType: 源端接入类型,cdb(云数据库)、cvm(云服务器自建)、vpc(私有网络)、extranet(外网)、vpncloud(vpn接入)、dcg(专线接入)、ccn(云联网)、intranet(自研上云),注意具体可选值依赖当前链路
|
|
1749
1750
|
:type SrcAccessType: str
|
|
1750
|
-
:param _DstAccessType: 目标端接入类型,cdb(云数据库)、cvm(
|
|
1751
|
+
:param _DstAccessType: 目标端接入类型,cdb(云数据库)、cvm(云服务器自建)、vpc(私有网络)、extranet(外网)、vpncloud(vpn接入)、dcg(专线接入)、ccn(云联网)、intranet(自研上云)、ckafka(CKafka实例),注意具体可选值依赖当前链路
|
|
1751
1752
|
:type DstAccessType: str
|
|
1752
1753
|
:param _Objects: 同步库表对象信息
|
|
1753
1754
|
:type Objects: :class:`tencentcloud.dts.v20211206.models.Objects`
|
|
@@ -1798,7 +1799,8 @@ class ConfigureSyncJobRequest(AbstractModel):
|
|
|
1798
1799
|
|
|
1799
1800
|
@property
|
|
1800
1801
|
def JobId(self):
|
|
1801
|
-
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
1802
|
+
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
1803
|
+
|
|
1802
1804
|
:rtype: str
|
|
1803
1805
|
"""
|
|
1804
1806
|
return self._JobId
|
|
@@ -1809,7 +1811,7 @@ class ConfigureSyncJobRequest(AbstractModel):
|
|
|
1809
1811
|
|
|
1810
1812
|
@property
|
|
1811
1813
|
def SrcAccessType(self):
|
|
1812
|
-
r"""源端接入类型,cdb(云数据库)、cvm(
|
|
1814
|
+
r"""源端接入类型,cdb(云数据库)、cvm(云服务器自建)、vpc(私有网络)、extranet(外网)、vpncloud(vpn接入)、dcg(专线接入)、ccn(云联网)、intranet(自研上云),注意具体可选值依赖当前链路
|
|
1813
1815
|
:rtype: str
|
|
1814
1816
|
"""
|
|
1815
1817
|
return self._SrcAccessType
|
|
@@ -1820,7 +1822,7 @@ class ConfigureSyncJobRequest(AbstractModel):
|
|
|
1820
1822
|
|
|
1821
1823
|
@property
|
|
1822
1824
|
def DstAccessType(self):
|
|
1823
|
-
r"""目标端接入类型,cdb(云数据库)、cvm(
|
|
1825
|
+
r"""目标端接入类型,cdb(云数据库)、cvm(云服务器自建)、vpc(私有网络)、extranet(外网)、vpncloud(vpn接入)、dcg(专线接入)、ccn(云联网)、intranet(自研上云)、ckafka(CKafka实例),注意具体可选值依赖当前链路
|
|
1824
1826
|
:rtype: str
|
|
1825
1827
|
"""
|
|
1826
1828
|
return self._DstAccessType
|
|
@@ -2161,14 +2163,16 @@ class ContinueMigrateJobRequest(AbstractModel):
|
|
|
2161
2163
|
|
|
2162
2164
|
def __init__(self):
|
|
2163
2165
|
r"""
|
|
2164
|
-
:param _JobId: 数据迁移任务ID
|
|
2166
|
+
:param _JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
2167
|
+
|
|
2165
2168
|
:type JobId: str
|
|
2166
2169
|
"""
|
|
2167
2170
|
self._JobId = None
|
|
2168
2171
|
|
|
2169
2172
|
@property
|
|
2170
2173
|
def JobId(self):
|
|
2171
|
-
r"""数据迁移任务ID
|
|
2174
|
+
r"""数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
2175
|
+
|
|
2172
2176
|
:rtype: str
|
|
2173
2177
|
"""
|
|
2174
2178
|
return self._JobId
|
|
@@ -2225,14 +2229,16 @@ class ContinueSyncJobRequest(AbstractModel):
|
|
|
2225
2229
|
|
|
2226
2230
|
def __init__(self):
|
|
2227
2231
|
r"""
|
|
2228
|
-
:param _JobId: 同步任务id
|
|
2232
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2233
|
+
|
|
2229
2234
|
:type JobId: str
|
|
2230
2235
|
"""
|
|
2231
2236
|
self._JobId = None
|
|
2232
2237
|
|
|
2233
2238
|
@property
|
|
2234
2239
|
def JobId(self):
|
|
2235
|
-
r"""同步任务id
|
|
2240
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2241
|
+
|
|
2236
2242
|
:rtype: str
|
|
2237
2243
|
"""
|
|
2238
2244
|
return self._JobId
|
|
@@ -2289,14 +2295,16 @@ class CreateCheckSyncJobRequest(AbstractModel):
|
|
|
2289
2295
|
|
|
2290
2296
|
def __init__(self):
|
|
2291
2297
|
r"""
|
|
2292
|
-
:param _JobId: 同步任务id
|
|
2298
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2299
|
+
|
|
2293
2300
|
:type JobId: str
|
|
2294
2301
|
"""
|
|
2295
2302
|
self._JobId = None
|
|
2296
2303
|
|
|
2297
2304
|
@property
|
|
2298
2305
|
def JobId(self):
|
|
2299
|
-
r"""同步任务id
|
|
2306
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2307
|
+
|
|
2300
2308
|
:rtype: str
|
|
2301
2309
|
"""
|
|
2302
2310
|
return self._JobId
|
|
@@ -2496,7 +2504,8 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
|
2496
2504
|
|
|
2497
2505
|
def __init__(self):
|
|
2498
2506
|
r"""
|
|
2499
|
-
:param _SubscribeId: 订阅实例id
|
|
2507
|
+
:param _SubscribeId: 订阅实例id,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
2508
|
+
|
|
2500
2509
|
:type SubscribeId: str
|
|
2501
2510
|
:param _ConsumerGroupName: 消费组名称,以数字、字母(大小写)或者_ - .开头,以数字、字母(大小写)结尾。实际生成的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}
|
|
2502
2511
|
:type ConsumerGroupName: str
|
|
@@ -2515,7 +2524,8 @@ class CreateConsumerGroupRequest(AbstractModel):
|
|
|
2515
2524
|
|
|
2516
2525
|
@property
|
|
2517
2526
|
def SubscribeId(self):
|
|
2518
|
-
r"""订阅实例id
|
|
2527
|
+
r"""订阅实例id,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
2528
|
+
|
|
2519
2529
|
:rtype: str
|
|
2520
2530
|
"""
|
|
2521
2531
|
return self._SubscribeId
|
|
@@ -2620,14 +2630,16 @@ class CreateMigrateCheckJobRequest(AbstractModel):
|
|
|
2620
2630
|
|
|
2621
2631
|
def __init__(self):
|
|
2622
2632
|
r"""
|
|
2623
|
-
:param _JobId: 数据迁移任务ID
|
|
2633
|
+
:param _JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
2634
|
+
|
|
2624
2635
|
:type JobId: str
|
|
2625
2636
|
"""
|
|
2626
2637
|
self._JobId = None
|
|
2627
2638
|
|
|
2628
2639
|
@property
|
|
2629
2640
|
def JobId(self):
|
|
2630
|
-
r"""数据迁移任务ID
|
|
2641
|
+
r"""数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
2642
|
+
|
|
2631
2643
|
:rtype: str
|
|
2632
2644
|
"""
|
|
2633
2645
|
return self._JobId
|
|
@@ -2875,14 +2887,14 @@ class CreateModifyCheckSyncJobRequest(AbstractModel):
|
|
|
2875
2887
|
|
|
2876
2888
|
def __init__(self):
|
|
2877
2889
|
r"""
|
|
2878
|
-
:param _JobId: 同步任务id
|
|
2890
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2879
2891
|
:type JobId: str
|
|
2880
2892
|
"""
|
|
2881
2893
|
self._JobId = None
|
|
2882
2894
|
|
|
2883
2895
|
@property
|
|
2884
2896
|
def JobId(self):
|
|
2885
|
-
r"""同步任务id
|
|
2897
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
2886
2898
|
:rtype: str
|
|
2887
2899
|
"""
|
|
2888
2900
|
return self._JobId
|
|
@@ -2939,14 +2951,14 @@ class CreateSubscribeCheckJobRequest(AbstractModel):
|
|
|
2939
2951
|
|
|
2940
2952
|
def __init__(self):
|
|
2941
2953
|
r"""
|
|
2942
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
2954
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
2943
2955
|
:type SubscribeId: str
|
|
2944
2956
|
"""
|
|
2945
2957
|
self._SubscribeId = None
|
|
2946
2958
|
|
|
2947
2959
|
@property
|
|
2948
2960
|
def SubscribeId(self):
|
|
2949
|
-
r"""数据订阅实例的 ID
|
|
2961
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
2950
2962
|
:rtype: str
|
|
2951
2963
|
"""
|
|
2952
2964
|
return self._SubscribeId
|
|
@@ -4835,13 +4847,14 @@ class DeleteConsumerGroupRequest(AbstractModel):
|
|
|
4835
4847
|
|
|
4836
4848
|
def __init__(self):
|
|
4837
4849
|
r"""
|
|
4838
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
4850
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
4851
|
+
|
|
4839
4852
|
:type SubscribeId: str
|
|
4840
4853
|
:param _ConsumerGroupName: 消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。
|
|
4841
|
-
|
|
4854
|
+
请务必保证消费组名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
4842
4855
|
:type ConsumerGroupName: str
|
|
4843
4856
|
:param _AccountName: 账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。
|
|
4844
|
-
|
|
4857
|
+
请务必保证账户名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
4845
4858
|
:type AccountName: str
|
|
4846
4859
|
"""
|
|
4847
4860
|
self._SubscribeId = None
|
|
@@ -4850,7 +4863,8 @@ class DeleteConsumerGroupRequest(AbstractModel):
|
|
|
4850
4863
|
|
|
4851
4864
|
@property
|
|
4852
4865
|
def SubscribeId(self):
|
|
4853
|
-
r"""数据订阅实例的 ID
|
|
4866
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
4867
|
+
|
|
4854
4868
|
:rtype: str
|
|
4855
4869
|
"""
|
|
4856
4870
|
return self._SubscribeId
|
|
@@ -4862,7 +4876,7 @@ class DeleteConsumerGroupRequest(AbstractModel):
|
|
|
4862
4876
|
@property
|
|
4863
4877
|
def ConsumerGroupName(self):
|
|
4864
4878
|
r"""消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。
|
|
4865
|
-
|
|
4879
|
+
请务必保证消费组名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
4866
4880
|
:rtype: str
|
|
4867
4881
|
"""
|
|
4868
4882
|
return self._ConsumerGroupName
|
|
@@ -4874,7 +4888,7 @@ class DeleteConsumerGroupRequest(AbstractModel):
|
|
|
4874
4888
|
@property
|
|
4875
4889
|
def AccountName(self):
|
|
4876
4890
|
r"""账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。
|
|
4877
|
-
|
|
4891
|
+
请务必保证账户名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
4878
4892
|
:rtype: str
|
|
4879
4893
|
"""
|
|
4880
4894
|
return self._AccountName
|
|
@@ -4933,14 +4947,16 @@ class DescribeCheckSyncJobResultRequest(AbstractModel):
|
|
|
4933
4947
|
|
|
4934
4948
|
def __init__(self):
|
|
4935
4949
|
r"""
|
|
4936
|
-
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
4950
|
+
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23,此值必填,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
4951
|
+
|
|
4937
4952
|
:type JobId: str
|
|
4938
4953
|
"""
|
|
4939
4954
|
self._JobId = None
|
|
4940
4955
|
|
|
4941
4956
|
@property
|
|
4942
4957
|
def JobId(self):
|
|
4943
|
-
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
4958
|
+
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23,此值必填,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
4959
|
+
|
|
4944
4960
|
:rtype: str
|
|
4945
4961
|
"""
|
|
4946
4962
|
return self._JobId
|
|
@@ -5079,9 +5095,9 @@ class DescribeCompareReportRequest(AbstractModel):
|
|
|
5079
5095
|
|
|
5080
5096
|
def __init__(self):
|
|
5081
5097
|
r"""
|
|
5082
|
-
:param _JobId: 迁移任务 Id
|
|
5098
|
+
:param _JobId: 迁移任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5083
5099
|
:type JobId: str
|
|
5084
|
-
:param _CompareTaskId: 校验任务 Id
|
|
5100
|
+
:param _CompareTaskId: 校验任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5085
5101
|
:type CompareTaskId: str
|
|
5086
5102
|
:param _DifferenceLimit: 校验不一致结果的 limit
|
|
5087
5103
|
:type DifferenceLimit: int
|
|
@@ -5113,7 +5129,7 @@ class DescribeCompareReportRequest(AbstractModel):
|
|
|
5113
5129
|
|
|
5114
5130
|
@property
|
|
5115
5131
|
def JobId(self):
|
|
5116
|
-
r"""迁移任务 Id
|
|
5132
|
+
r"""迁移任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5117
5133
|
:rtype: str
|
|
5118
5134
|
"""
|
|
5119
5135
|
return self._JobId
|
|
@@ -5124,7 +5140,7 @@ class DescribeCompareReportRequest(AbstractModel):
|
|
|
5124
5140
|
|
|
5125
5141
|
@property
|
|
5126
5142
|
def CompareTaskId(self):
|
|
5127
|
-
r"""校验任务 Id
|
|
5143
|
+
r"""校验任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5128
5144
|
:rtype: str
|
|
5129
5145
|
"""
|
|
5130
5146
|
return self._CompareTaskId
|
|
@@ -5471,7 +5487,7 @@ class DescribeConsumerGroupsRequest(AbstractModel):
|
|
|
5471
5487
|
|
|
5472
5488
|
def __init__(self):
|
|
5473
5489
|
r"""
|
|
5474
|
-
:param _SubscribeId: 订阅实例id
|
|
5490
|
+
:param _SubscribeId: 订阅实例id,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
5475
5491
|
:type SubscribeId: str
|
|
5476
5492
|
:param _Offset: 返回记录的起始偏移量。默认0
|
|
5477
5493
|
:type Offset: int
|
|
@@ -5484,7 +5500,7 @@ class DescribeConsumerGroupsRequest(AbstractModel):
|
|
|
5484
5500
|
|
|
5485
5501
|
@property
|
|
5486
5502
|
def SubscribeId(self):
|
|
5487
|
-
r"""订阅实例id
|
|
5503
|
+
r"""订阅实例id,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
5488
5504
|
:rtype: str
|
|
5489
5505
|
"""
|
|
5490
5506
|
return self._SubscribeId
|
|
@@ -5834,14 +5850,16 @@ class DescribeMigrationCheckJobRequest(AbstractModel):
|
|
|
5834
5850
|
|
|
5835
5851
|
def __init__(self):
|
|
5836
5852
|
r"""
|
|
5837
|
-
:param _JobId: 任务id
|
|
5853
|
+
:param _JobId: 任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5854
|
+
|
|
5838
5855
|
:type JobId: str
|
|
5839
5856
|
"""
|
|
5840
5857
|
self._JobId = None
|
|
5841
5858
|
|
|
5842
5859
|
@property
|
|
5843
5860
|
def JobId(self):
|
|
5844
|
-
r"""任务id
|
|
5861
|
+
r"""任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
5862
|
+
|
|
5845
5863
|
:rtype: str
|
|
5846
5864
|
"""
|
|
5847
5865
|
return self._JobId
|
|
@@ -6718,14 +6736,16 @@ class DescribeModifyCheckSyncJobResultRequest(AbstractModel):
|
|
|
6718
6736
|
|
|
6719
6737
|
def __init__(self):
|
|
6720
6738
|
r"""
|
|
6721
|
-
:param _JobId: 同步任务id
|
|
6739
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
6740
|
+
|
|
6722
6741
|
:type JobId: str
|
|
6723
6742
|
"""
|
|
6724
6743
|
self._JobId = None
|
|
6725
6744
|
|
|
6726
6745
|
@property
|
|
6727
6746
|
def JobId(self):
|
|
6728
|
-
r"""同步任务id
|
|
6747
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
6748
|
+
|
|
6729
6749
|
:rtype: str
|
|
6730
6750
|
"""
|
|
6731
6751
|
return self._JobId
|
|
@@ -6864,7 +6884,7 @@ class DescribeOffsetByTimeRequest(AbstractModel):
|
|
|
6864
6884
|
|
|
6865
6885
|
def __init__(self):
|
|
6866
6886
|
r"""
|
|
6867
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
6887
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
6868
6888
|
:type SubscribeId: str
|
|
6869
6889
|
:param _Time: 时间点,格式为:Y-m-d h:m:s。如果输入时间比当前时间晚的多,相当于查询最新offset;如果输入时间比当前时间早的多,相当于查询最老offset;如果输入空,默认0时间,等价于查询最老offset。
|
|
6870
6890
|
:type Time: str
|
|
@@ -6874,7 +6894,7 @@ class DescribeOffsetByTimeRequest(AbstractModel):
|
|
|
6874
6894
|
|
|
6875
6895
|
@property
|
|
6876
6896
|
def SubscribeId(self):
|
|
6877
|
-
r"""数据订阅实例的 ID
|
|
6897
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
6878
6898
|
:rtype: str
|
|
6879
6899
|
"""
|
|
6880
6900
|
return self._SubscribeId
|
|
@@ -7137,14 +7157,14 @@ class DescribeSubscribeDetailRequest(AbstractModel):
|
|
|
7137
7157
|
|
|
7138
7158
|
def __init__(self):
|
|
7139
7159
|
r"""
|
|
7140
|
-
:param _SubscribeId: 订阅实例ID
|
|
7160
|
+
:param _SubscribeId: 订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
7141
7161
|
:type SubscribeId: str
|
|
7142
7162
|
"""
|
|
7143
7163
|
self._SubscribeId = None
|
|
7144
7164
|
|
|
7145
7165
|
@property
|
|
7146
7166
|
def SubscribeId(self):
|
|
7147
|
-
r"""订阅实例ID
|
|
7167
|
+
r"""订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
7148
7168
|
:rtype: str
|
|
7149
7169
|
"""
|
|
7150
7170
|
return self._SubscribeId
|
|
@@ -8003,14 +8023,14 @@ class DescribeSubscribeReturnableRequest(AbstractModel):
|
|
|
8003
8023
|
|
|
8004
8024
|
def __init__(self):
|
|
8005
8025
|
r"""
|
|
8006
|
-
:param _SubscribeId: 数据订阅实例的ID
|
|
8026
|
+
:param _SubscribeId: 数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
8007
8027
|
:type SubscribeId: str
|
|
8008
8028
|
"""
|
|
8009
8029
|
self._SubscribeId = None
|
|
8010
8030
|
|
|
8011
8031
|
@property
|
|
8012
8032
|
def SubscribeId(self):
|
|
8013
|
-
r"""数据订阅实例的ID
|
|
8033
|
+
r"""数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
8014
8034
|
:rtype: str
|
|
8015
8035
|
"""
|
|
8016
8036
|
return self._SubscribeId
|
|
@@ -8396,14 +8416,14 @@ class DestroyIsolatedSubscribeRequest(AbstractModel):
|
|
|
8396
8416
|
|
|
8397
8417
|
def __init__(self):
|
|
8398
8418
|
r"""
|
|
8399
|
-
:param _SubscribeId: 数据订阅实例的ID
|
|
8419
|
+
:param _SubscribeId: 数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
8400
8420
|
:type SubscribeId: str
|
|
8401
8421
|
"""
|
|
8402
8422
|
self._SubscribeId = None
|
|
8403
8423
|
|
|
8404
8424
|
@property
|
|
8405
8425
|
def SubscribeId(self):
|
|
8406
|
-
r"""数据订阅实例的ID
|
|
8426
|
+
r"""数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
8407
8427
|
:rtype: str
|
|
8408
8428
|
"""
|
|
8409
8429
|
return self._SubscribeId
|
|
@@ -8460,14 +8480,16 @@ class DestroyMigrateJobRequest(AbstractModel):
|
|
|
8460
8480
|
|
|
8461
8481
|
def __init__(self):
|
|
8462
8482
|
r"""
|
|
8463
|
-
:param _JobId: 任务id
|
|
8483
|
+
:param _JobId: 任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
8484
|
+
|
|
8464
8485
|
:type JobId: str
|
|
8465
8486
|
"""
|
|
8466
8487
|
self._JobId = None
|
|
8467
8488
|
|
|
8468
8489
|
@property
|
|
8469
8490
|
def JobId(self):
|
|
8470
|
-
r"""任务id
|
|
8491
|
+
r"""任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
8492
|
+
|
|
8471
8493
|
:rtype: str
|
|
8472
8494
|
"""
|
|
8473
8495
|
return self._JobId
|
|
@@ -8524,14 +8546,16 @@ class DestroySyncJobRequest(AbstractModel):
|
|
|
8524
8546
|
|
|
8525
8547
|
def __init__(self):
|
|
8526
8548
|
r"""
|
|
8527
|
-
:param _JobId: 同步任务id
|
|
8549
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
8550
|
+
|
|
8528
8551
|
:type JobId: str
|
|
8529
8552
|
"""
|
|
8530
8553
|
self._JobId = None
|
|
8531
8554
|
|
|
8532
8555
|
@property
|
|
8533
8556
|
def JobId(self):
|
|
8534
|
-
r"""同步任务id
|
|
8557
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
8558
|
+
|
|
8535
8559
|
:rtype: str
|
|
8536
8560
|
"""
|
|
8537
8561
|
return self._JobId
|
|
@@ -8799,6 +8823,8 @@ class DifferenceData(AbstractModel):
|
|
|
8799
8823
|
:type SrcItem: str
|
|
8800
8824
|
:param _DstItem: 目标端值
|
|
8801
8825
|
:type DstItem: str
|
|
8826
|
+
:param _CreatedAt: 创建时间
|
|
8827
|
+
:type CreatedAt: str
|
|
8802
8828
|
:param _UpdatedAt: 更新时间
|
|
8803
8829
|
:type UpdatedAt: str
|
|
8804
8830
|
"""
|
|
@@ -8808,6 +8834,7 @@ class DifferenceData(AbstractModel):
|
|
|
8808
8834
|
self._DstChunk = None
|
|
8809
8835
|
self._SrcItem = None
|
|
8810
8836
|
self._DstItem = None
|
|
8837
|
+
self._CreatedAt = None
|
|
8811
8838
|
self._UpdatedAt = None
|
|
8812
8839
|
|
|
8813
8840
|
@property
|
|
@@ -8876,6 +8903,17 @@ class DifferenceData(AbstractModel):
|
|
|
8876
8903
|
def DstItem(self, DstItem):
|
|
8877
8904
|
self._DstItem = DstItem
|
|
8878
8905
|
|
|
8906
|
+
@property
|
|
8907
|
+
def CreatedAt(self):
|
|
8908
|
+
r"""创建时间
|
|
8909
|
+
:rtype: str
|
|
8910
|
+
"""
|
|
8911
|
+
return self._CreatedAt
|
|
8912
|
+
|
|
8913
|
+
@CreatedAt.setter
|
|
8914
|
+
def CreatedAt(self, CreatedAt):
|
|
8915
|
+
self._CreatedAt = CreatedAt
|
|
8916
|
+
|
|
8879
8917
|
@property
|
|
8880
8918
|
def UpdatedAt(self):
|
|
8881
8919
|
r"""更新时间
|
|
@@ -8895,6 +8933,7 @@ class DifferenceData(AbstractModel):
|
|
|
8895
8933
|
self._DstChunk = params.get("DstChunk")
|
|
8896
8934
|
self._SrcItem = params.get("SrcItem")
|
|
8897
8935
|
self._DstItem = params.get("DstItem")
|
|
8936
|
+
self._CreatedAt = params.get("CreatedAt")
|
|
8898
8937
|
self._UpdatedAt = params.get("UpdatedAt")
|
|
8899
8938
|
memeber_set = set(params.keys())
|
|
8900
8939
|
for name, value in vars(self).items():
|
|
@@ -10699,14 +10738,14 @@ class IsolateSubscribeRequest(AbstractModel):
|
|
|
10699
10738
|
|
|
10700
10739
|
def __init__(self):
|
|
10701
10740
|
r"""
|
|
10702
|
-
:param _SubscribeId: 订阅实例ID
|
|
10741
|
+
:param _SubscribeId: 订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
10703
10742
|
:type SubscribeId: str
|
|
10704
10743
|
"""
|
|
10705
10744
|
self._SubscribeId = None
|
|
10706
10745
|
|
|
10707
10746
|
@property
|
|
10708
10747
|
def SubscribeId(self):
|
|
10709
|
-
r"""订阅实例ID
|
|
10748
|
+
r"""订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
10710
10749
|
:rtype: str
|
|
10711
10750
|
"""
|
|
10712
10751
|
return self._SubscribeId
|
|
@@ -10763,14 +10802,14 @@ class IsolateSyncJobRequest(AbstractModel):
|
|
|
10763
10802
|
|
|
10764
10803
|
def __init__(self):
|
|
10765
10804
|
r"""
|
|
10766
|
-
:param _JobId: 同步任务id
|
|
10805
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
10767
10806
|
:type JobId: str
|
|
10768
10807
|
"""
|
|
10769
10808
|
self._JobId = None
|
|
10770
10809
|
|
|
10771
10810
|
@property
|
|
10772
10811
|
def JobId(self):
|
|
10773
|
-
r"""同步任务id
|
|
10812
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
10774
10813
|
:rtype: str
|
|
10775
10814
|
"""
|
|
10776
10815
|
return self._JobId
|
|
@@ -12013,13 +12052,13 @@ class ModifyConsumerGroupDescriptionRequest(AbstractModel):
|
|
|
12013
12052
|
|
|
12014
12053
|
def __init__(self):
|
|
12015
12054
|
r"""
|
|
12016
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
12055
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12017
12056
|
:type SubscribeId: str
|
|
12018
12057
|
:param _ConsumerGroupName: 消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。
|
|
12019
|
-
|
|
12058
|
+
请务必保证消费组名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12020
12059
|
:type ConsumerGroupName: str
|
|
12021
12060
|
:param _AccountName: 账户名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。
|
|
12022
|
-
|
|
12061
|
+
请务必保证账户名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12023
12062
|
:type AccountName: str
|
|
12024
12063
|
:param _Description: 修改之后的消费组描述
|
|
12025
12064
|
:type Description: str
|
|
@@ -12031,7 +12070,7 @@ class ModifyConsumerGroupDescriptionRequest(AbstractModel):
|
|
|
12031
12070
|
|
|
12032
12071
|
@property
|
|
12033
12072
|
def SubscribeId(self):
|
|
12034
|
-
r"""数据订阅实例的 ID
|
|
12073
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12035
12074
|
:rtype: str
|
|
12036
12075
|
"""
|
|
12037
12076
|
return self._SubscribeId
|
|
@@ -12043,7 +12082,7 @@ class ModifyConsumerGroupDescriptionRequest(AbstractModel):
|
|
|
12043
12082
|
@property
|
|
12044
12083
|
def ConsumerGroupName(self):
|
|
12045
12084
|
r"""消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。
|
|
12046
|
-
|
|
12085
|
+
请务必保证消费组名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12047
12086
|
:rtype: str
|
|
12048
12087
|
"""
|
|
12049
12088
|
return self._ConsumerGroupName
|
|
@@ -12055,7 +12094,7 @@ class ModifyConsumerGroupDescriptionRequest(AbstractModel):
|
|
|
12055
12094
|
@property
|
|
12056
12095
|
def AccountName(self):
|
|
12057
12096
|
r"""账户名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。
|
|
12058
|
-
|
|
12097
|
+
请务必保证账户名称正确。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12059
12098
|
:rtype: str
|
|
12060
12099
|
"""
|
|
12061
12100
|
return self._AccountName
|
|
@@ -12126,11 +12165,12 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
12126
12165
|
|
|
12127
12166
|
def __init__(self):
|
|
12128
12167
|
r"""
|
|
12129
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
12168
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12169
|
+
|
|
12130
12170
|
:type SubscribeId: str
|
|
12131
|
-
:param _AccountName: 账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}
|
|
12171
|
+
:param _AccountName: 账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12132
12172
|
:type AccountName: str
|
|
12133
|
-
:param _ConsumerGroupName: 消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}
|
|
12173
|
+
:param _ConsumerGroupName: 消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12134
12174
|
:type ConsumerGroupName: str
|
|
12135
12175
|
:param _NewPassword: 新密码。字符长度不小于3,不大于32
|
|
12136
12176
|
:type NewPassword: str
|
|
@@ -12142,7 +12182,8 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
12142
12182
|
|
|
12143
12183
|
@property
|
|
12144
12184
|
def SubscribeId(self):
|
|
12145
|
-
r"""数据订阅实例的 ID
|
|
12185
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12186
|
+
|
|
12146
12187
|
:rtype: str
|
|
12147
12188
|
"""
|
|
12148
12189
|
return self._SubscribeId
|
|
@@ -12153,7 +12194,7 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
12153
12194
|
|
|
12154
12195
|
@property
|
|
12155
12196
|
def AccountName(self):
|
|
12156
|
-
r"""账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}
|
|
12197
|
+
r"""账号名称。实际的账户全称形如:account-#{SubscribeId}-#{AccountName}。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12157
12198
|
:rtype: str
|
|
12158
12199
|
"""
|
|
12159
12200
|
return self._AccountName
|
|
@@ -12164,7 +12205,7 @@ class ModifyConsumerGroupPasswordRequest(AbstractModel):
|
|
|
12164
12205
|
|
|
12165
12206
|
@property
|
|
12166
12207
|
def ConsumerGroupName(self):
|
|
12167
|
-
r"""消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}
|
|
12208
|
+
r"""消费组名称。实际的消费组全称形如:consumer-grp-#{SubscribeId}-#{ConsumerGroupName}。可通过[DescribeConsumerGroups](https://cloud.tencent.com/document/product/571/102947)接口获取。
|
|
12168
12209
|
:rtype: str
|
|
12169
12210
|
"""
|
|
12170
12211
|
return self._ConsumerGroupName
|
|
@@ -12811,7 +12852,7 @@ class ModifySubscribeAutoRenewFlagRequest(AbstractModel):
|
|
|
12811
12852
|
|
|
12812
12853
|
def __init__(self):
|
|
12813
12854
|
r"""
|
|
12814
|
-
:param _SubscribeId: 订阅实例ID
|
|
12855
|
+
:param _SubscribeId: 订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12815
12856
|
:type SubscribeId: str
|
|
12816
12857
|
:param _AutoRenewFlag: 自动续费标识。1-自动续费,0-不自动续费
|
|
12817
12858
|
:type AutoRenewFlag: int
|
|
@@ -12821,7 +12862,7 @@ class ModifySubscribeAutoRenewFlagRequest(AbstractModel):
|
|
|
12821
12862
|
|
|
12822
12863
|
@property
|
|
12823
12864
|
def SubscribeId(self):
|
|
12824
|
-
r"""订阅实例ID
|
|
12865
|
+
r"""订阅实例ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12825
12866
|
:rtype: str
|
|
12826
12867
|
"""
|
|
12827
12868
|
return self._SubscribeId
|
|
@@ -12890,7 +12931,7 @@ class ModifySubscribeNameRequest(AbstractModel):
|
|
|
12890
12931
|
|
|
12891
12932
|
def __init__(self):
|
|
12892
12933
|
r"""
|
|
12893
|
-
:param _SubscribeId: 数据订阅实例的ID
|
|
12934
|
+
:param _SubscribeId: 数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12894
12935
|
:type SubscribeId: str
|
|
12895
12936
|
:param _SubscribeName: 修改后的数据订阅实例的名称,长度限制为[1,60]
|
|
12896
12937
|
:type SubscribeName: str
|
|
@@ -12900,7 +12941,7 @@ class ModifySubscribeNameRequest(AbstractModel):
|
|
|
12900
12941
|
|
|
12901
12942
|
@property
|
|
12902
12943
|
def SubscribeId(self):
|
|
12903
|
-
r"""数据订阅实例的ID
|
|
12944
|
+
r"""数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12904
12945
|
:rtype: str
|
|
12905
12946
|
"""
|
|
12906
12947
|
return self._SubscribeId
|
|
@@ -12969,11 +13010,11 @@ class ModifySubscribeObjectsRequest(AbstractModel):
|
|
|
12969
13010
|
|
|
12970
13011
|
def __init__(self):
|
|
12971
13012
|
r"""
|
|
12972
|
-
:param _SubscribeId: 数据订阅实例的ID
|
|
13013
|
+
:param _SubscribeId: 数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12973
13014
|
:type SubscribeId: str
|
|
12974
13015
|
:param _SubscribeObjectType: 数据订阅的类型,非mongo任务的枚举值:0-全实例更新;1-数据更新;2-结构更新;3-数据更新+结构更新。mongo任务的枚举值:0-全实例更新;4-订阅单库;5-订阅单集合
|
|
12975
13016
|
:type SubscribeObjectType: int
|
|
12976
|
-
:param _Objects: 修改后的订阅数据库表信息。会覆盖原来的订阅对象,所以除非 SubscribeObjectType = 0或2
|
|
13017
|
+
:param _Objects: 修改后的订阅数据库表信息。会覆盖原来的订阅对象,所以除非 SubscribeObjectType = 0或2,否则该字段必填。
|
|
12977
13018
|
:type Objects: list of ModifiedSubscribeObject
|
|
12978
13019
|
:param _DistributeRules: kafka分区策略。如果不填,默认不修改。如果填了,会覆盖原来的策略。
|
|
12979
13020
|
:type DistributeRules: list of DistributeRule
|
|
@@ -12993,7 +13034,7 @@ class ModifySubscribeObjectsRequest(AbstractModel):
|
|
|
12993
13034
|
|
|
12994
13035
|
@property
|
|
12995
13036
|
def SubscribeId(self):
|
|
12996
|
-
r"""数据订阅实例的ID
|
|
13037
|
+
r"""数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
12997
13038
|
:rtype: str
|
|
12998
13039
|
"""
|
|
12999
13040
|
return self._SubscribeId
|
|
@@ -13015,7 +13056,7 @@ class ModifySubscribeObjectsRequest(AbstractModel):
|
|
|
13015
13056
|
|
|
13016
13057
|
@property
|
|
13017
13058
|
def Objects(self):
|
|
13018
|
-
r"""修改后的订阅数据库表信息。会覆盖原来的订阅对象,所以除非 SubscribeObjectType = 0或2
|
|
13059
|
+
r"""修改后的订阅数据库表信息。会覆盖原来的订阅对象,所以除非 SubscribeObjectType = 0或2,否则该字段必填。
|
|
13019
13060
|
:rtype: list of ModifiedSubscribeObject
|
|
13020
13061
|
"""
|
|
13021
13062
|
return self._Objects
|
|
@@ -13906,14 +13947,16 @@ class PauseMigrateJobRequest(AbstractModel):
|
|
|
13906
13947
|
|
|
13907
13948
|
def __init__(self):
|
|
13908
13949
|
r"""
|
|
13909
|
-
:param _JobId: 数据迁移任务ID
|
|
13950
|
+
:param _JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
13951
|
+
|
|
13910
13952
|
:type JobId: str
|
|
13911
13953
|
"""
|
|
13912
13954
|
self._JobId = None
|
|
13913
13955
|
|
|
13914
13956
|
@property
|
|
13915
13957
|
def JobId(self):
|
|
13916
|
-
r"""数据迁移任务ID
|
|
13958
|
+
r"""数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
13959
|
+
|
|
13917
13960
|
:rtype: str
|
|
13918
13961
|
"""
|
|
13919
13962
|
return self._JobId
|
|
@@ -13970,14 +14013,16 @@ class PauseSyncJobRequest(AbstractModel):
|
|
|
13970
14013
|
|
|
13971
14014
|
def __init__(self):
|
|
13972
14015
|
r"""
|
|
13973
|
-
:param _JobId: 同步任务id
|
|
14016
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
14017
|
+
|
|
13974
14018
|
:type JobId: str
|
|
13975
14019
|
"""
|
|
13976
14020
|
self._JobId = None
|
|
13977
14021
|
|
|
13978
14022
|
@property
|
|
13979
14023
|
def JobId(self):
|
|
13980
|
-
r"""同步任务id
|
|
14024
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
14025
|
+
|
|
13981
14026
|
:rtype: str
|
|
13982
14027
|
"""
|
|
13983
14028
|
return self._JobId
|
|
@@ -14453,14 +14498,16 @@ class RecoverMigrateJobRequest(AbstractModel):
|
|
|
14453
14498
|
|
|
14454
14499
|
def __init__(self):
|
|
14455
14500
|
r"""
|
|
14456
|
-
:param _JobId: 任务id
|
|
14501
|
+
:param _JobId: 任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
14502
|
+
|
|
14457
14503
|
:type JobId: str
|
|
14458
14504
|
"""
|
|
14459
14505
|
self._JobId = None
|
|
14460
14506
|
|
|
14461
14507
|
@property
|
|
14462
14508
|
def JobId(self):
|
|
14463
|
-
r"""任务id
|
|
14509
|
+
r"""任务id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
14510
|
+
|
|
14464
14511
|
:rtype: str
|
|
14465
14512
|
"""
|
|
14466
14513
|
return self._JobId
|
|
@@ -14517,14 +14564,16 @@ class RecoverSyncJobRequest(AbstractModel):
|
|
|
14517
14564
|
|
|
14518
14565
|
def __init__(self):
|
|
14519
14566
|
r"""
|
|
14520
|
-
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
14567
|
+
:param _JobId: 同步实例id(即标识一个同步作业),形如sync-werwfs23,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
14568
|
+
|
|
14521
14569
|
:type JobId: str
|
|
14522
14570
|
"""
|
|
14523
14571
|
self._JobId = None
|
|
14524
14572
|
|
|
14525
14573
|
@property
|
|
14526
14574
|
def JobId(self):
|
|
14527
|
-
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23
|
|
14575
|
+
r"""同步实例id(即标识一个同步作业),形如sync-werwfs23,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
14576
|
+
|
|
14528
14577
|
:rtype: str
|
|
14529
14578
|
"""
|
|
14530
14579
|
return self._JobId
|
|
@@ -14720,14 +14769,16 @@ class ResetSubscribeRequest(AbstractModel):
|
|
|
14720
14769
|
|
|
14721
14770
|
def __init__(self):
|
|
14722
14771
|
r"""
|
|
14723
|
-
:param _SubscribeId: 数据订阅实例的ID
|
|
14772
|
+
:param _SubscribeId: 数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
14773
|
+
|
|
14724
14774
|
:type SubscribeId: str
|
|
14725
14775
|
"""
|
|
14726
14776
|
self._SubscribeId = None
|
|
14727
14777
|
|
|
14728
14778
|
@property
|
|
14729
14779
|
def SubscribeId(self):
|
|
14730
|
-
r"""数据订阅实例的ID
|
|
14780
|
+
r"""数据订阅实例的ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
14781
|
+
|
|
14731
14782
|
:rtype: str
|
|
14732
14783
|
"""
|
|
14733
14784
|
return self._SubscribeId
|
|
@@ -15006,14 +15057,14 @@ class ResumeSubscribeRequest(AbstractModel):
|
|
|
15006
15057
|
|
|
15007
15058
|
def __init__(self):
|
|
15008
15059
|
r"""
|
|
15009
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
15060
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
15010
15061
|
:type SubscribeId: str
|
|
15011
15062
|
"""
|
|
15012
15063
|
self._SubscribeId = None
|
|
15013
15064
|
|
|
15014
15065
|
@property
|
|
15015
15066
|
def SubscribeId(self):
|
|
15016
|
-
r"""数据订阅实例的 ID
|
|
15067
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
15017
15068
|
:rtype: str
|
|
15018
15069
|
"""
|
|
15019
15070
|
return self._SubscribeId
|
|
@@ -15070,14 +15121,16 @@ class ResumeSyncJobRequest(AbstractModel):
|
|
|
15070
15121
|
|
|
15071
15122
|
def __init__(self):
|
|
15072
15123
|
r"""
|
|
15073
|
-
:param _JobId: 同步任务id
|
|
15124
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
15125
|
+
|
|
15074
15126
|
:type JobId: str
|
|
15075
15127
|
"""
|
|
15076
15128
|
self._JobId = None
|
|
15077
15129
|
|
|
15078
15130
|
@property
|
|
15079
15131
|
def JobId(self):
|
|
15080
|
-
r"""同步任务id
|
|
15132
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
15133
|
+
|
|
15081
15134
|
:rtype: str
|
|
15082
15135
|
"""
|
|
15083
15136
|
return self._JobId
|
|
@@ -15591,9 +15644,11 @@ class StartCompareRequest(AbstractModel):
|
|
|
15591
15644
|
|
|
15592
15645
|
def __init__(self):
|
|
15593
15646
|
r"""
|
|
15594
|
-
:param _JobId: 迁移任务
|
|
15647
|
+
:param _JobId: 迁移任务 ID,可通过 [DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084) 接口获取。
|
|
15648
|
+
|
|
15595
15649
|
:type JobId: str
|
|
15596
|
-
:param _CompareTaskId: 对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
|
|
15650
|
+
:param _CompareTaskId: 对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9,可通过 [DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084) 接口获取。
|
|
15651
|
+
|
|
15597
15652
|
:type CompareTaskId: str
|
|
15598
15653
|
"""
|
|
15599
15654
|
self._JobId = None
|
|
@@ -15601,7 +15656,8 @@ class StartCompareRequest(AbstractModel):
|
|
|
15601
15656
|
|
|
15602
15657
|
@property
|
|
15603
15658
|
def JobId(self):
|
|
15604
|
-
r"""迁移任务
|
|
15659
|
+
r"""迁移任务 ID,可通过 [DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084) 接口获取。
|
|
15660
|
+
|
|
15605
15661
|
:rtype: str
|
|
15606
15662
|
"""
|
|
15607
15663
|
return self._JobId
|
|
@@ -15612,7 +15668,8 @@ class StartCompareRequest(AbstractModel):
|
|
|
15612
15668
|
|
|
15613
15669
|
@property
|
|
15614
15670
|
def CompareTaskId(self):
|
|
15615
|
-
r"""对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
|
|
15671
|
+
r"""对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9,可通过 [DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084) 接口获取。
|
|
15672
|
+
|
|
15616
15673
|
:rtype: str
|
|
15617
15674
|
"""
|
|
15618
15675
|
return self._CompareTaskId
|
|
@@ -15734,14 +15791,16 @@ class StartModifySyncJobRequest(AbstractModel):
|
|
|
15734
15791
|
|
|
15735
15792
|
def __init__(self):
|
|
15736
15793
|
r"""
|
|
15737
|
-
:param _JobId: 同步任务id
|
|
15794
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
15795
|
+
|
|
15738
15796
|
:type JobId: str
|
|
15739
15797
|
"""
|
|
15740
15798
|
self._JobId = None
|
|
15741
15799
|
|
|
15742
15800
|
@property
|
|
15743
15801
|
def JobId(self):
|
|
15744
|
-
r"""同步任务id
|
|
15802
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
15803
|
+
|
|
15745
15804
|
:rtype: str
|
|
15746
15805
|
"""
|
|
15747
15806
|
return self._JobId
|
|
@@ -15798,14 +15857,14 @@ class StartSubscribeRequest(AbstractModel):
|
|
|
15798
15857
|
|
|
15799
15858
|
def __init__(self):
|
|
15800
15859
|
r"""
|
|
15801
|
-
:param _SubscribeId: 数据订阅实例的 ID
|
|
15860
|
+
:param _SubscribeId: 数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
15802
15861
|
:type SubscribeId: str
|
|
15803
15862
|
"""
|
|
15804
15863
|
self._SubscribeId = None
|
|
15805
15864
|
|
|
15806
15865
|
@property
|
|
15807
15866
|
def SubscribeId(self):
|
|
15808
|
-
r"""数据订阅实例的 ID
|
|
15867
|
+
r"""数据订阅实例的 ID,可通过[DescribeSubscribeJobs](https://cloud.tencent.com/document/product/571/102943)接口获取。
|
|
15809
15868
|
:rtype: str
|
|
15810
15869
|
"""
|
|
15811
15870
|
return self._SubscribeId
|
|
@@ -16343,11 +16402,13 @@ class StopCompareRequest(AbstractModel):
|
|
|
16343
16402
|
|
|
16344
16403
|
def __init__(self):
|
|
16345
16404
|
r"""
|
|
16346
|
-
:param _JobId: 迁移任务 Id
|
|
16405
|
+
:param _JobId: 迁移任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
16406
|
+
|
|
16347
16407
|
:type JobId: str
|
|
16348
|
-
:param _CompareTaskId: 对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
|
|
16408
|
+
:param _CompareTaskId: 对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
16409
|
+
|
|
16349
16410
|
:type CompareTaskId: str
|
|
16350
|
-
:param _ForceStop:
|
|
16411
|
+
:param _ForceStop: 是否强制停止。默认值为false,表示不强制停止;如果填true,同步任务增量阶段会跳过一致性校验产生的binlog,达到快速恢复任务的效果
|
|
16351
16412
|
:type ForceStop: bool
|
|
16352
16413
|
"""
|
|
16353
16414
|
self._JobId = None
|
|
@@ -16356,7 +16417,8 @@ class StopCompareRequest(AbstractModel):
|
|
|
16356
16417
|
|
|
16357
16418
|
@property
|
|
16358
16419
|
def JobId(self):
|
|
16359
|
-
r"""迁移任务 Id
|
|
16420
|
+
r"""迁移任务 Id,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
16421
|
+
|
|
16360
16422
|
:rtype: str
|
|
16361
16423
|
"""
|
|
16362
16424
|
return self._JobId
|
|
@@ -16367,7 +16429,8 @@ class StopCompareRequest(AbstractModel):
|
|
|
16367
16429
|
|
|
16368
16430
|
@property
|
|
16369
16431
|
def CompareTaskId(self):
|
|
16370
|
-
r"""对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9
|
|
16432
|
+
r"""对比任务 ID,形如:dts-8yv4w2i1-cmp-37skmii9,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
|
16433
|
+
|
|
16371
16434
|
:rtype: str
|
|
16372
16435
|
"""
|
|
16373
16436
|
return self._CompareTaskId
|
|
@@ -16378,7 +16441,7 @@ class StopCompareRequest(AbstractModel):
|
|
|
16378
16441
|
|
|
16379
16442
|
@property
|
|
16380
16443
|
def ForceStop(self):
|
|
16381
|
-
r"""
|
|
16444
|
+
r"""是否强制停止。默认值为false,表示不强制停止;如果填true,同步任务增量阶段会跳过一致性校验产生的binlog,达到快速恢复任务的效果
|
|
16382
16445
|
:rtype: bool
|
|
16383
16446
|
"""
|
|
16384
16447
|
return self._ForceStop
|
|
@@ -16501,14 +16564,16 @@ class StopSyncJobRequest(AbstractModel):
|
|
|
16501
16564
|
|
|
16502
16565
|
def __init__(self):
|
|
16503
16566
|
r"""
|
|
16504
|
-
:param _JobId: 同步任务id
|
|
16567
|
+
:param _JobId: 同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
16568
|
+
|
|
16505
16569
|
:type JobId: str
|
|
16506
16570
|
"""
|
|
16507
16571
|
self._JobId = None
|
|
16508
16572
|
|
|
16509
16573
|
@property
|
|
16510
16574
|
def JobId(self):
|
|
16511
|
-
r"""同步任务id
|
|
16575
|
+
r"""同步任务id,可通过[DescribeSyncJobs](https://cloud.tencent.com/document/product/571/82103)接口获取。
|
|
16576
|
+
|
|
16512
16577
|
:rtype: str
|
|
16513
16578
|
"""
|
|
16514
16579
|
return self._JobId
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1477
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1460
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|