tencentcloud-sdk-dts 3.0.1074 → 3.0.1087
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211206/models.rb +9 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71c6b11aadba3dcd921961e174653ccf89cea00d
|
4
|
+
data.tar.gz: a5ca315e7483fab7986721ceafc650ff332d6bd4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3e483e2045e8bd6afd7657eae984b8d158f891173061b90a5856dea1e86be61605e26852395ce269102d2c27b53ca60638a009e0b9f3d46163c66f18135a21a
|
7
|
+
data.tar.gz: 645dec438856ed37b1e7f81f47b2e5f16babfa4f842a5776cd2db95140b9f09f75003d29a4bfdc54f23aed173244e44c470c03e3d8609c12a6971afdd9fcaa85
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1087
|
data/lib/v20211206/models.rb
CHANGED
@@ -373,7 +373,7 @@ module TencentCloud
|
|
373
373
|
# @type Method: String
|
374
374
|
# @param SampleRate: 抽样比例;范围0,100。默认为100
|
375
375
|
# @type SampleRate: Integer
|
376
|
-
# @param ThreadCount: 线程数,取值1-
|
376
|
+
# @param ThreadCount: 线程数,取值1-8,默认为1
|
377
377
|
# @type ThreadCount: Integer
|
378
378
|
|
379
379
|
attr_accessor :Method, :SampleRate, :ThreadCount
|
@@ -1384,10 +1384,12 @@ module TencentCloud
|
|
1384
1384
|
# @type DatabaseNetEnv: String
|
1385
1385
|
# @param ConnectType: tdsql连接方式:proxy-通过tdsql proxy主机访问各个set节点,注意只有在自研上云的网络环境下才能通过这种方式连接,Info中只需要提供proxy主机信息。set-直连set节点,如选择直连set方式,Info中需要正确填写proxy主机信息及所有set节点信息。源端是tdsqlmysql类型必填。
|
1386
1386
|
# @type ConnectType: String
|
1387
|
+
# @param CcnOwnerUin: 云联网网关所属账号,如果云联网网关为其他账号资源需要填写
|
1388
|
+
# @type CcnOwnerUin: String
|
1387
1389
|
|
1388
|
-
attr_accessor :Region, :AccessType, :DatabaseType, :NodeType, :Info, :Supplier, :ExtraAttr, :DatabaseNetEnv, :ConnectType
|
1390
|
+
attr_accessor :Region, :AccessType, :DatabaseType, :NodeType, :Info, :Supplier, :ExtraAttr, :DatabaseNetEnv, :ConnectType, :CcnOwnerUin
|
1389
1391
|
|
1390
|
-
def initialize(region=nil, accesstype=nil, databasetype=nil, nodetype=nil, info=nil, supplier=nil, extraattr=nil, databasenetenv=nil, connecttype=nil)
|
1392
|
+
def initialize(region=nil, accesstype=nil, databasetype=nil, nodetype=nil, info=nil, supplier=nil, extraattr=nil, databasenetenv=nil, connecttype=nil, ccnowneruin=nil)
|
1391
1393
|
@Region = region
|
1392
1394
|
@AccessType = accesstype
|
1393
1395
|
@DatabaseType = databasetype
|
@@ -1397,6 +1399,7 @@ module TencentCloud
|
|
1397
1399
|
@ExtraAttr = extraattr
|
1398
1400
|
@DatabaseNetEnv = databasenetenv
|
1399
1401
|
@ConnectType = connecttype
|
1402
|
+
@CcnOwnerUin = ccnowneruin
|
1400
1403
|
end
|
1401
1404
|
|
1402
1405
|
def deserialize(params)
|
@@ -1423,6 +1426,7 @@ module TencentCloud
|
|
1423
1426
|
end
|
1424
1427
|
@DatabaseNetEnv = params['DatabaseNetEnv']
|
1425
1428
|
@ConnectType = params['ConnectType']
|
1429
|
+
@CcnOwnerUin = params['CcnOwnerUin']
|
1426
1430
|
end
|
1427
1431
|
end
|
1428
1432
|
|
@@ -3529,7 +3533,7 @@ module TencentCloud
|
|
3529
3533
|
class DynamicOptions < TencentCloud::Common::AbstractModel
|
3530
3534
|
# @param OpTypes: 所要同步的DML和DDL的选项,Insert(插入操作)、Update(更新操作)、Delete(删除操作)、DDL(结构同步),PartialDDL(自定义,和DdlOptions一起起作用 );必填、dts会用该值覆盖原有的值
|
3531
3535
|
# @type OpTypes: Array
|
3532
|
-
# @param DdlOptions: DDL
|
3536
|
+
# @param DdlOptions: DDL同步选项,具体描述要同步哪些DDL; 当OpTypes取值PartialDDL时、字段不能为空;必填、dts会用该值覆盖原有的值
|
3533
3537
|
# @type DdlOptions: Array
|
3534
3538
|
# @param ConflictHandleType: 冲突处理选项,ReportError(报错)、Ignore(忽略)、Cover(覆盖)、ConditionCover(条件覆盖); 目前目标端为kafka的链路不支持修改该配置
|
3535
3539
|
# @type ConflictHandleType: String
|
@@ -5176,7 +5180,7 @@ module TencentCloud
|
|
5176
5180
|
# @type OpTypes: Array
|
5177
5181
|
# @param ConflictHandleOption: 冲突处理的详细选项,如条件覆盖中的条件行和条件操作
|
5178
5182
|
# @type ConflictHandleOption: :class:`Tencentcloud::Dts.v20211206.models.ConflictHandleOption`
|
5179
|
-
# @param DdlOptions: DDL
|
5183
|
+
# @param DdlOptions: DDL同步选项,具体描述要同步哪些DDL
|
5180
5184
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5181
5185
|
# @type DdlOptions: Array
|
5182
5186
|
# @param KafkaOption: kafka同步选项
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1087
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|