tencentcloud-sdk-dts 3.0.1158 → 3.0.1161
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 +140 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d403658fb1176ee134f9b64b0a9d7bb445e6bcb
|
|
4
|
+
data.tar.gz: 2a0983b4291993b2a680618e0f8fbb1b9e07b06e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd1b82b651989624bcd3464b77e0dcd23424d7d0cfd2bdfb6d0e651483e10036fbedf545ffe30da4fdd3f51f2cf0ff1f27ce256165cd357b03625b1bcc25a43a
|
|
7
|
+
data.tar.gz: 192b3b9ea15a965aa45ea499ee0937b160f92d14917f9119afe04e1cfb185868c684fdb86288e5e82a28369005bbb2cff7c63200c395cf408b19f56dee55fe6a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20211206/models.rb
CHANGED
|
@@ -245,15 +245,21 @@ module TencentCloud
|
|
|
245
245
|
# @type DifferenceData: :class:`Tencentcloud::Dts.v20211206.models.DifferenceDataDetail`
|
|
246
246
|
# @param DifferenceRow: 数据行不一致的详情,mongodb业务用到
|
|
247
247
|
# @type DifferenceRow: :class:`Tencentcloud::Dts.v20211206.models.DifferenceRowDetail`
|
|
248
|
+
# @param DifferenceSchema: 表结构不一致详情,pg用
|
|
249
|
+
# @type DifferenceSchema: :class:`Tencentcloud::Dts.v20211206.models.DifferenceSchemaDetail`
|
|
250
|
+
# @param DifferenceOwner: 对象owner不一致详情,pg用
|
|
251
|
+
# @type DifferenceOwner: :class:`Tencentcloud::Dts.v20211206.models.DifferenceOwnerDetail`
|
|
248
252
|
|
|
249
|
-
attr_accessor :Difference, :Skipped, :DifferenceAdvancedObjects, :DifferenceData, :DifferenceRow
|
|
253
|
+
attr_accessor :Difference, :Skipped, :DifferenceAdvancedObjects, :DifferenceData, :DifferenceRow, :DifferenceSchema, :DifferenceOwner
|
|
250
254
|
|
|
251
|
-
def initialize(difference=nil, skipped=nil, differenceadvancedobjects=nil, differencedata=nil, differencerow=nil)
|
|
255
|
+
def initialize(difference=nil, skipped=nil, differenceadvancedobjects=nil, differencedata=nil, differencerow=nil, differenceschema=nil, differenceowner=nil)
|
|
252
256
|
@Difference = difference
|
|
253
257
|
@Skipped = skipped
|
|
254
258
|
@DifferenceAdvancedObjects = differenceadvancedobjects
|
|
255
259
|
@DifferenceData = differencedata
|
|
256
260
|
@DifferenceRow = differencerow
|
|
261
|
+
@DifferenceSchema = differenceschema
|
|
262
|
+
@DifferenceOwner = differenceowner
|
|
257
263
|
end
|
|
258
264
|
|
|
259
265
|
def deserialize(params)
|
|
@@ -277,6 +283,14 @@ module TencentCloud
|
|
|
277
283
|
@DifferenceRow = DifferenceRowDetail.new
|
|
278
284
|
@DifferenceRow.deserialize(params['DifferenceRow'])
|
|
279
285
|
end
|
|
286
|
+
unless params['DifferenceSchema'].nil?
|
|
287
|
+
@DifferenceSchema = DifferenceSchemaDetail.new
|
|
288
|
+
@DifferenceSchema.deserialize(params['DifferenceSchema'])
|
|
289
|
+
end
|
|
290
|
+
unless params['DifferenceOwner'].nil?
|
|
291
|
+
@DifferenceOwner = DifferenceOwnerDetail.new
|
|
292
|
+
@DifferenceOwner.deserialize(params['DifferenceOwner'])
|
|
293
|
+
end
|
|
280
294
|
end
|
|
281
295
|
end
|
|
282
296
|
|
|
@@ -3546,6 +3560,34 @@ module TencentCloud
|
|
|
3546
3560
|
end
|
|
3547
3561
|
end
|
|
3548
3562
|
|
|
3563
|
+
# pg owner不一致性详情
|
|
3564
|
+
class DifferenceOwnerDetail < TencentCloud::Common::AbstractModel
|
|
3565
|
+
# @param TotalCount: owner不一致总数
|
|
3566
|
+
# @type TotalCount: Integer
|
|
3567
|
+
# @param Items: owner不一致详情
|
|
3568
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3569
|
+
# @type Items: Array
|
|
3570
|
+
|
|
3571
|
+
attr_accessor :TotalCount, :Items
|
|
3572
|
+
|
|
3573
|
+
def initialize(totalcount=nil, items=nil)
|
|
3574
|
+
@TotalCount = totalcount
|
|
3575
|
+
@Items = items
|
|
3576
|
+
end
|
|
3577
|
+
|
|
3578
|
+
def deserialize(params)
|
|
3579
|
+
@TotalCount = params['TotalCount']
|
|
3580
|
+
unless params['Items'].nil?
|
|
3581
|
+
@Items = []
|
|
3582
|
+
params['Items'].each do |i|
|
|
3583
|
+
ownerdifference_tmp = OwnerDifference.new
|
|
3584
|
+
ownerdifference_tmp.deserialize(i)
|
|
3585
|
+
@Items << ownerdifference_tmp
|
|
3586
|
+
end
|
|
3587
|
+
end
|
|
3588
|
+
end
|
|
3589
|
+
end
|
|
3590
|
+
|
|
3549
3591
|
# mongodb行数校验不一致性详情结果
|
|
3550
3592
|
class DifferenceRowDetail < TencentCloud::Common::AbstractModel
|
|
3551
3593
|
# @param TotalCount: 不一致总数
|
|
@@ -3574,6 +3616,34 @@ module TencentCloud
|
|
|
3574
3616
|
end
|
|
3575
3617
|
end
|
|
3576
3618
|
|
|
3619
|
+
# 表结构不一致信息
|
|
3620
|
+
class DifferenceSchemaDetail < TencentCloud::Common::AbstractModel
|
|
3621
|
+
# @param TotalCount: 表结构不一致的数量
|
|
3622
|
+
# @type TotalCount: Integer
|
|
3623
|
+
# @param Items: 表结构不一致信息
|
|
3624
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3625
|
+
# @type Items: Array
|
|
3626
|
+
|
|
3627
|
+
attr_accessor :TotalCount, :Items
|
|
3628
|
+
|
|
3629
|
+
def initialize(totalcount=nil, items=nil)
|
|
3630
|
+
@TotalCount = totalcount
|
|
3631
|
+
@Items = items
|
|
3632
|
+
end
|
|
3633
|
+
|
|
3634
|
+
def deserialize(params)
|
|
3635
|
+
@TotalCount = params['TotalCount']
|
|
3636
|
+
unless params['Items'].nil?
|
|
3637
|
+
@Items = []
|
|
3638
|
+
params['Items'].each do |i|
|
|
3639
|
+
schemadifference_tmp = SchemaDifference.new
|
|
3640
|
+
schemadifference_tmp.deserialize(i)
|
|
3641
|
+
@Items << schemadifference_tmp
|
|
3642
|
+
end
|
|
3643
|
+
end
|
|
3644
|
+
end
|
|
3645
|
+
end
|
|
3646
|
+
|
|
3577
3647
|
# 订阅任务的kafka分区规则。符合库名和表名正则表达式的数据将按照RuleType计算该条数据将被投递的kafka分区。如果配置了多个规则,将按照配置的顺序,第一条命中的规则生效。
|
|
3578
3648
|
class DistributeRule < TencentCloud::Common::AbstractModel
|
|
3579
3649
|
# @param RuleType: 规则类型。非mongo产品的枚举值为: table-按表名分区,pk-按表名+主键分区,cols-按列名分区。mongo的枚举值为:collection-按集合名分区、collectionAndObjectId-按集合+主键分区。
|
|
@@ -5321,6 +5391,42 @@ module TencentCloud
|
|
|
5321
5391
|
end
|
|
5322
5392
|
end
|
|
5323
5393
|
|
|
5394
|
+
# pg对象owner不一致信息
|
|
5395
|
+
class OwnerDifference < TencentCloud::Common::AbstractModel
|
|
5396
|
+
# @param Db: owner不一致的pg对象所在库
|
|
5397
|
+
# @type Db: String
|
|
5398
|
+
# @param Schema: owner不一致的pg对象所在schema
|
|
5399
|
+
# @type Schema: String
|
|
5400
|
+
# @param ObjectName: owner不一致的pg对象名
|
|
5401
|
+
# @type ObjectName: String
|
|
5402
|
+
# @param ObjectType: owner不一致的pg对象类型
|
|
5403
|
+
# @type ObjectType: String
|
|
5404
|
+
# @param SrcOwner: 源库对象owner
|
|
5405
|
+
# @type SrcOwner: String
|
|
5406
|
+
# @param DstOwner: 目标库对象owner
|
|
5407
|
+
# @type DstOwner: String
|
|
5408
|
+
|
|
5409
|
+
attr_accessor :Db, :Schema, :ObjectName, :ObjectType, :SrcOwner, :DstOwner
|
|
5410
|
+
|
|
5411
|
+
def initialize(db=nil, schema=nil, objectname=nil, objecttype=nil, srcowner=nil, dstowner=nil)
|
|
5412
|
+
@Db = db
|
|
5413
|
+
@Schema = schema
|
|
5414
|
+
@ObjectName = objectname
|
|
5415
|
+
@ObjectType = objecttype
|
|
5416
|
+
@SrcOwner = srcowner
|
|
5417
|
+
@DstOwner = dstowner
|
|
5418
|
+
end
|
|
5419
|
+
|
|
5420
|
+
def deserialize(params)
|
|
5421
|
+
@Db = params['Db']
|
|
5422
|
+
@Schema = params['Schema']
|
|
5423
|
+
@ObjectName = params['ObjectName']
|
|
5424
|
+
@ObjectType = params['ObjectType']
|
|
5425
|
+
@SrcOwner = params['SrcOwner']
|
|
5426
|
+
@DstOwner = params['DstOwner']
|
|
5427
|
+
end
|
|
5428
|
+
end
|
|
5429
|
+
|
|
5324
5430
|
# 数据订阅中kafka消费者组的分区分配情况。该数据是实时查询的,如果需要最新数据,需重新掉接口查询。
|
|
5325
5431
|
class PartitionAssignment < TencentCloud::Common::AbstractModel
|
|
5326
5432
|
# @param ClientId: 消费者的clientId
|
|
@@ -5913,6 +6019,38 @@ module TencentCloud
|
|
|
5913
6019
|
end
|
|
5914
6020
|
end
|
|
5915
6021
|
|
|
6022
|
+
# 结构不一致详情
|
|
6023
|
+
class SchemaDifference < TencentCloud::Common::AbstractModel
|
|
6024
|
+
# @param Db: 结构不一致的表所在库
|
|
6025
|
+
# @type Db: String
|
|
6026
|
+
# @param Schema: 结构不一致的表所在schema
|
|
6027
|
+
# @type Schema: String
|
|
6028
|
+
# @param Table: 结构不一致的表
|
|
6029
|
+
# @type Table: String
|
|
6030
|
+
# @param SrcSchema: 源库表结构
|
|
6031
|
+
# @type SrcSchema: String
|
|
6032
|
+
# @param DstSchema: 目标库表结构
|
|
6033
|
+
# @type DstSchema: String
|
|
6034
|
+
|
|
6035
|
+
attr_accessor :Db, :Schema, :Table, :SrcSchema, :DstSchema
|
|
6036
|
+
|
|
6037
|
+
def initialize(db=nil, schema=nil, table=nil, srcschema=nil, dstschema=nil)
|
|
6038
|
+
@Db = db
|
|
6039
|
+
@Schema = schema
|
|
6040
|
+
@Table = table
|
|
6041
|
+
@SrcSchema = srcschema
|
|
6042
|
+
@DstSchema = dstschema
|
|
6043
|
+
end
|
|
6044
|
+
|
|
6045
|
+
def deserialize(params)
|
|
6046
|
+
@Db = params['Db']
|
|
6047
|
+
@Schema = params['Schema']
|
|
6048
|
+
@Table = params['Table']
|
|
6049
|
+
@SrcSchema = params['SrcSchema']
|
|
6050
|
+
@DstSchema = params['DstSchema']
|
|
6051
|
+
end
|
|
6052
|
+
end
|
|
6053
|
+
|
|
5916
6054
|
# SkipCheckItem请求参数结构体
|
|
5917
6055
|
class SkipCheckItemRequest < TencentCloud::Common::AbstractModel
|
|
5918
6056
|
# @param JobId: 数据迁移任务ID,可通过[DescribeMigrationJobs](https://cloud.tencent.com/document/product/571/82084)接口获取。
|
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.1161
|
|
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-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,11 +33,11 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20211206/models.rb
|
|
37
36
|
- lib/v20211206/client.rb
|
|
37
|
+
- lib/v20211206/models.rb
|
|
38
38
|
- lib/tencentcloud-sdk-dts.rb
|
|
39
|
-
- lib/v20180330/models.rb
|
|
40
39
|
- lib/v20180330/client.rb
|
|
40
|
+
- lib/v20180330/models.rb
|
|
41
41
|
- lib/VERSION
|
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
43
43
|
licenses:
|