tencentcloud-sdk-dbbrain 3.0.749 → 3.0.750
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/v20210527/models.rb +17 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6373c56f662d29e03d4a3468502bef877cca3c4
|
4
|
+
data.tar.gz: edbc9570a9c5255655bbb7658b0bb85b1ad58d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3568b969773be0cb1f03d06850e5564e19ea0870d05ae57b24ab12cf03632177c7944b551bb8ef702d53e76978a8fbfe0183a56ca5a3c44de9d63c79b0a8ff5a
|
7
|
+
data.tar.gz: 766fd41ce6993f839ba151cf984aba04a6d835f08d8bf11c7e1220fe95b43aa6225ad6b061a5d5be7755cd38381955fce678f5ef068cb60e2a05997cb588ec03
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.750
|
data/lib/v20210527/models.rb
CHANGED
@@ -2561,16 +2561,22 @@ module TencentCloud
|
|
2561
2561
|
# @type KeyType: String
|
2562
2562
|
# @param Limit: 查询数目,默认为20,最大值为100。
|
2563
2563
|
# @type Limit: Integer
|
2564
|
+
# @param AsyncRequestId: 异步任务ID。当为空时,选择最近任务的ID。
|
2565
|
+
# @type AsyncRequestId: Integer
|
2566
|
+
# @param ShardIds: 分片节点序号列表。当列表为空时,选择所有分片节点。
|
2567
|
+
# @type ShardIds: Array
|
2564
2568
|
|
2565
|
-
attr_accessor :InstanceId, :Date, :Product, :SortBy, :KeyType, :Limit
|
2569
|
+
attr_accessor :InstanceId, :Date, :Product, :SortBy, :KeyType, :Limit, :AsyncRequestId, :ShardIds
|
2566
2570
|
|
2567
|
-
def initialize(instanceid=nil, date=nil, product=nil, sortby=nil, keytype=nil, limit=nil)
|
2571
|
+
def initialize(instanceid=nil, date=nil, product=nil, sortby=nil, keytype=nil, limit=nil, asyncrequestid=nil, shardids=nil)
|
2568
2572
|
@InstanceId = instanceid
|
2569
2573
|
@Date = date
|
2570
2574
|
@Product = product
|
2571
2575
|
@SortBy = sortby
|
2572
2576
|
@KeyType = keytype
|
2573
2577
|
@Limit = limit
|
2578
|
+
@AsyncRequestId = asyncrequestid
|
2579
|
+
@ShardIds = shardids
|
2574
2580
|
end
|
2575
2581
|
|
2576
2582
|
def deserialize(params)
|
@@ -2580,6 +2586,8 @@ module TencentCloud
|
|
2580
2586
|
@SortBy = params['SortBy']
|
2581
2587
|
@KeyType = params['KeyType']
|
2582
2588
|
@Limit = params['Limit']
|
2589
|
+
@AsyncRequestId = params['AsyncRequestId']
|
2590
|
+
@ShardIds = params['ShardIds']
|
2583
2591
|
end
|
2584
2592
|
end
|
2585
2593
|
|
@@ -3911,19 +3919,24 @@ module TencentCloud
|
|
3911
3919
|
# @param KeyDelimiters: redis大key分析的自定义分割符,仅redis使用
|
3912
3920
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3913
3921
|
# @type KeyDelimiters: Array
|
3922
|
+
# @param ShardNum: 分片节点数量。
|
3923
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3924
|
+
# @type ShardNum: String
|
3914
3925
|
|
3915
|
-
attr_accessor :DailyInspection, :OverviewDisplay, :KeyDelimiters
|
3926
|
+
attr_accessor :DailyInspection, :OverviewDisplay, :KeyDelimiters, :ShardNum
|
3916
3927
|
|
3917
|
-
def initialize(dailyinspection=nil, overviewdisplay=nil, keydelimiters=nil)
|
3928
|
+
def initialize(dailyinspection=nil, overviewdisplay=nil, keydelimiters=nil, shardnum=nil)
|
3918
3929
|
@DailyInspection = dailyinspection
|
3919
3930
|
@OverviewDisplay = overviewdisplay
|
3920
3931
|
@KeyDelimiters = keydelimiters
|
3932
|
+
@ShardNum = shardnum
|
3921
3933
|
end
|
3922
3934
|
|
3923
3935
|
def deserialize(params)
|
3924
3936
|
@DailyInspection = params['DailyInspection']
|
3925
3937
|
@OverviewDisplay = params['OverviewDisplay']
|
3926
3938
|
@KeyDelimiters = params['KeyDelimiters']
|
3939
|
+
@ShardNum = params['ShardNum']
|
3927
3940
|
end
|
3928
3941
|
end
|
3929
3942
|
|