tencentcloud-sdk-cynosdb 3.0.466 → 3.0.468
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/v20190107/models.rb +40 -8
- 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: ee82f65ac2e0c7e5a9011a68d8d17e520c842d1a
|
4
|
+
data.tar.gz: 45d87c5153b7e8abd447b4312bba617f4047ea3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d32bb17fead53354c02a6e09c805a1b5d6978208a960b47e66cc5dd703650a71544cc9e6197bec2bc9aee2d180123b27987ba16e9f76f7ada1472f60c1b2e41
|
7
|
+
data.tar.gz: 78448cf475d4074105db4d77735b5859950321b4dfffb18ed47c9ea8feec8f4948f1abaea5534019805c61c52a38ec2c90318f39d682d0d7bb43a82528c567e3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.468
|
data/lib/v20190107/models.rb
CHANGED
@@ -448,10 +448,14 @@ module TencentCloud
|
|
448
448
|
# @type SqlTypes: Array
|
449
449
|
# @param Sqls: SQL 语句。支持传递多个sql语句。
|
450
450
|
# @type Sqls: Array
|
451
|
+
# @param SentRows: 返回行数。
|
452
|
+
# @type SentRows: Integer
|
453
|
+
# @param ThreadId: 线程ID。
|
454
|
+
# @type ThreadId: Array
|
451
455
|
|
452
|
-
attr_accessor :Host, :User, :DBName, :TableName, :PolicyName, :Sql, :SqlType, :ExecTime, :AffectRows, :SqlTypes, :Sqls
|
456
|
+
attr_accessor :Host, :User, :DBName, :TableName, :PolicyName, :Sql, :SqlType, :ExecTime, :AffectRows, :SqlTypes, :Sqls, :SentRows, :ThreadId
|
453
457
|
|
454
|
-
def initialize(host=nil, user=nil, dbname=nil, tablename=nil, policyname=nil, sql=nil, sqltype=nil, exectime=nil, affectrows=nil, sqltypes=nil, sqls=nil)
|
458
|
+
def initialize(host=nil, user=nil, dbname=nil, tablename=nil, policyname=nil, sql=nil, sqltype=nil, exectime=nil, affectrows=nil, sqltypes=nil, sqls=nil, sentrows=nil, threadid=nil)
|
455
459
|
@Host = host
|
456
460
|
@User = user
|
457
461
|
@DBName = dbname
|
@@ -463,6 +467,8 @@ module TencentCloud
|
|
463
467
|
@AffectRows = affectrows
|
464
468
|
@SqlTypes = sqltypes
|
465
469
|
@Sqls = sqls
|
470
|
+
@SentRows = sentrows
|
471
|
+
@ThreadId = threadid
|
466
472
|
end
|
467
473
|
|
468
474
|
def deserialize(params)
|
@@ -477,6 +483,8 @@ module TencentCloud
|
|
477
483
|
@AffectRows = params['AffectRows']
|
478
484
|
@SqlTypes = params['SqlTypes']
|
479
485
|
@Sqls = params['Sqls']
|
486
|
+
@SentRows = params['SentRows']
|
487
|
+
@ThreadId = params['ThreadId']
|
480
488
|
end
|
481
489
|
end
|
482
490
|
|
@@ -657,16 +665,22 @@ module TencentCloud
|
|
657
665
|
# @type CreateTime: String
|
658
666
|
# @param UpdateTime: 更新时间
|
659
667
|
# @type UpdateTime: String
|
668
|
+
# @param ClusterId: 集群ID
|
669
|
+
# @type ClusterId: String
|
670
|
+
# @param InstanceId: 实例ID
|
671
|
+
# @type InstanceId: String
|
660
672
|
|
661
|
-
attr_accessor :ParamName, :CurrentValue, :UpdateValue, :Status, :CreateTime, :UpdateTime
|
673
|
+
attr_accessor :ParamName, :CurrentValue, :UpdateValue, :Status, :CreateTime, :UpdateTime, :ClusterId, :InstanceId
|
662
674
|
|
663
|
-
def initialize(paramname=nil, currentvalue=nil, updatevalue=nil, status=nil, createtime=nil, updatetime=nil)
|
675
|
+
def initialize(paramname=nil, currentvalue=nil, updatevalue=nil, status=nil, createtime=nil, updatetime=nil, clusterid=nil, instanceid=nil)
|
664
676
|
@ParamName = paramname
|
665
677
|
@CurrentValue = currentvalue
|
666
678
|
@UpdateValue = updatevalue
|
667
679
|
@Status = status
|
668
680
|
@CreateTime = createtime
|
669
681
|
@UpdateTime = updatetime
|
682
|
+
@ClusterId = clusterid
|
683
|
+
@InstanceId = instanceid
|
670
684
|
end
|
671
685
|
|
672
686
|
def deserialize(params)
|
@@ -676,6 +690,8 @@ module TencentCloud
|
|
676
690
|
@Status = params['Status']
|
677
691
|
@CreateTime = params['CreateTime']
|
678
692
|
@UpdateTime = params['UpdateTime']
|
693
|
+
@ClusterId = params['ClusterId']
|
694
|
+
@InstanceId = params['InstanceId']
|
679
695
|
end
|
680
696
|
end
|
681
697
|
|
@@ -2670,21 +2686,33 @@ module TencentCloud
|
|
2670
2686
|
class DescribeClusterParamLogsRequest < TencentCloud::Common::AbstractModel
|
2671
2687
|
# @param ClusterId: 集群ID
|
2672
2688
|
# @type ClusterId: String
|
2689
|
+
# @param InstanceIds: 实例ID列表,用来记录具体操作哪些实例
|
2690
|
+
# @type InstanceIds: Array
|
2691
|
+
# @param OrderBy: 排序字段,定义在回返结果的基于哪个字段进行排序
|
2692
|
+
# @type OrderBy: String
|
2693
|
+
# @param OrderByType: 定义具体的排序规则,限定为desc,asc,DESC,ASC其中之一
|
2694
|
+
# @type OrderByType: String
|
2673
2695
|
# @param Limit: 返回数量,默认为 20,取值范围为(0,100]
|
2674
2696
|
# @type Limit: Integer
|
2675
2697
|
# @param Offset: 记录偏移量,默认值为0,取值范围为[0,INF)
|
2676
2698
|
# @type Offset: Integer
|
2677
2699
|
|
2678
|
-
attr_accessor :ClusterId, :Limit, :Offset
|
2700
|
+
attr_accessor :ClusterId, :InstanceIds, :OrderBy, :OrderByType, :Limit, :Offset
|
2679
2701
|
|
2680
|
-
def initialize(clusterid=nil, limit=nil, offset=nil)
|
2702
|
+
def initialize(clusterid=nil, instanceids=nil, orderby=nil, orderbytype=nil, limit=nil, offset=nil)
|
2681
2703
|
@ClusterId = clusterid
|
2704
|
+
@InstanceIds = instanceids
|
2705
|
+
@OrderBy = orderby
|
2706
|
+
@OrderByType = orderbytype
|
2682
2707
|
@Limit = limit
|
2683
2708
|
@Offset = offset
|
2684
2709
|
end
|
2685
2710
|
|
2686
2711
|
def deserialize(params)
|
2687
2712
|
@ClusterId = params['ClusterId']
|
2713
|
+
@InstanceIds = params['InstanceIds']
|
2714
|
+
@OrderBy = params['OrderBy']
|
2715
|
+
@OrderByType = params['OrderByType']
|
2688
2716
|
@Limit = params['Limit']
|
2689
2717
|
@Offset = params['Offset']
|
2690
2718
|
end
|
@@ -5727,10 +5755,12 @@ module TencentCloud
|
|
5727
5755
|
# @type DbType: String
|
5728
5756
|
# @param DealMode: 交易模式 0-下单并支付 1-下单
|
5729
5757
|
# @type DealMode: Integer
|
5758
|
+
# @param UpgradeMode: NormalUpgrade:普通变配,FastUpgrade:极速变配,若变配过程判断会造成闪断,变配流程会终止。
|
5759
|
+
# @type UpgradeMode: String
|
5730
5760
|
|
5731
|
-
attr_accessor :InstanceId, :Cpu, :Memory, :UpgradeType, :StorageLimit, :AutoVoucher, :DbType, :DealMode
|
5761
|
+
attr_accessor :InstanceId, :Cpu, :Memory, :UpgradeType, :StorageLimit, :AutoVoucher, :DbType, :DealMode, :UpgradeMode
|
5732
5762
|
|
5733
|
-
def initialize(instanceid=nil, cpu=nil, memory=nil, upgradetype=nil, storagelimit=nil, autovoucher=nil, dbtype=nil, dealmode=nil)
|
5763
|
+
def initialize(instanceid=nil, cpu=nil, memory=nil, upgradetype=nil, storagelimit=nil, autovoucher=nil, dbtype=nil, dealmode=nil, upgrademode=nil)
|
5734
5764
|
@InstanceId = instanceid
|
5735
5765
|
@Cpu = cpu
|
5736
5766
|
@Memory = memory
|
@@ -5739,6 +5769,7 @@ module TencentCloud
|
|
5739
5769
|
@AutoVoucher = autovoucher
|
5740
5770
|
@DbType = dbtype
|
5741
5771
|
@DealMode = dealmode
|
5772
|
+
@UpgradeMode = upgrademode
|
5742
5773
|
end
|
5743
5774
|
|
5744
5775
|
def deserialize(params)
|
@@ -5750,6 +5781,7 @@ module TencentCloud
|
|
5750
5781
|
@AutoVoucher = params['AutoVoucher']
|
5751
5782
|
@DbType = params['DbType']
|
5752
5783
|
@DealMode = params['DealMode']
|
5784
|
+
@UpgradeMode = params['UpgradeMode']
|
5753
5785
|
end
|
5754
5786
|
end
|
5755
5787
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cynosdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.468
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|