tencentcloud-sdk-sqlserver 3.0.968 → 3.0.969
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/v20180328/client.rb +2 -2
- data/lib/v20180328/models.rb +98 -32
- 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: 82542473354f0234a192c31ae50fcf639237c8a8
|
|
4
|
+
data.tar.gz: 35cf2e4926f0f69bcbc2efcbb3e64056844f05bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d5529c8a2854cf985e8d69487b9e3dd1a036e37a1040ad08f0b1d88fe653d3c9c4cb6ff9c01c157abeaa3d600f3d8b11a7eb4eb5aaed1ef1efd9bbd9443f576
|
|
7
|
+
data.tar.gz: c00e5463164be9045641425ee6d58372829010ac2755b53ba786cdaa3ea16136387247c6d67c5cdb5bc95a91f56525be285456e2612fc39716838b9297f60812
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.969
|
data/lib/v20180328/client.rb
CHANGED
|
@@ -509,7 +509,7 @@ module TencentCloud
|
|
|
509
509
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
510
510
|
end
|
|
511
511
|
|
|
512
|
-
#
|
|
512
|
+
# 本接口(CutXEvents)用于手动切割阻塞日志和死锁日志。
|
|
513
513
|
|
|
514
514
|
# @param request: Request instance for CutXEvents.
|
|
515
515
|
# @type request: :class:`Tencentcloud::sqlserver::V20180328::CutXEventsRequest`
|
|
@@ -845,7 +845,7 @@ module TencentCloud
|
|
|
845
845
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
846
846
|
end
|
|
847
847
|
|
|
848
|
-
#
|
|
848
|
+
# 本接口(DescribeBackupFiles)用于查询单库备份明细。
|
|
849
849
|
|
|
850
850
|
# @param request: Request instance for DescribeBackupFiles.
|
|
851
851
|
# @type request: :class:`Tencentcloud::sqlserver::V20180328::DescribeBackupFilesRequest`
|
data/lib/v20180328/models.rb
CHANGED
|
@@ -1236,10 +1236,14 @@ module TencentCloud
|
|
|
1236
1236
|
# @type Collation: String
|
|
1237
1237
|
# @param TimeZone: 系统时区,默认:China Standard Time
|
|
1238
1238
|
# @type TimeZone: String
|
|
1239
|
+
# @param MultiNodes: 是否多节点架构实例,默认值为false。当MultiNodes = true时,参数MultiZones必须取值为true。
|
|
1240
|
+
# @type MultiNodes: Boolean
|
|
1241
|
+
# @param DrZones: 备节点可用区,默认为空。当MultiNodes = true时,主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
|
|
1242
|
+
# @type DrZones: Array
|
|
1239
1243
|
|
|
1240
|
-
attr_accessor :Zone, :Memory, :Storage, :Cpu, :MachineType, :InstanceChargeType, :ProjectId, :GoodsNum, :SubnetId, :VpcId, :Period, :AutoVoucher, :VoucherIds, :DBVersion, :AutoRenewFlag, :SecurityGroupList, :Weekly, :StartTime, :Span, :MultiZones, :ResourceTags, :Collation, :TimeZone
|
|
1244
|
+
attr_accessor :Zone, :Memory, :Storage, :Cpu, :MachineType, :InstanceChargeType, :ProjectId, :GoodsNum, :SubnetId, :VpcId, :Period, :AutoVoucher, :VoucherIds, :DBVersion, :AutoRenewFlag, :SecurityGroupList, :Weekly, :StartTime, :Span, :MultiZones, :ResourceTags, :Collation, :TimeZone, :MultiNodes, :DrZones
|
|
1241
1245
|
|
|
1242
|
-
def initialize(zone=nil, memory=nil, storage=nil, cpu=nil, machinetype=nil, instancechargetype=nil, projectid=nil, goodsnum=nil, subnetid=nil, vpcid=nil, period=nil, autovoucher=nil, voucherids=nil, dbversion=nil, autorenewflag=nil, securitygrouplist=nil, weekly=nil, starttime=nil, span=nil, multizones=nil, resourcetags=nil, collation=nil, timezone=nil)
|
|
1246
|
+
def initialize(zone=nil, memory=nil, storage=nil, cpu=nil, machinetype=nil, instancechargetype=nil, projectid=nil, goodsnum=nil, subnetid=nil, vpcid=nil, period=nil, autovoucher=nil, voucherids=nil, dbversion=nil, autorenewflag=nil, securitygrouplist=nil, weekly=nil, starttime=nil, span=nil, multizones=nil, resourcetags=nil, collation=nil, timezone=nil, multinodes=nil, drzones=nil)
|
|
1243
1247
|
@Zone = zone
|
|
1244
1248
|
@Memory = memory
|
|
1245
1249
|
@Storage = storage
|
|
@@ -1263,6 +1267,8 @@ module TencentCloud
|
|
|
1263
1267
|
@ResourceTags = resourcetags
|
|
1264
1268
|
@Collation = collation
|
|
1265
1269
|
@TimeZone = timezone
|
|
1270
|
+
@MultiNodes = multinodes
|
|
1271
|
+
@DrZones = drzones
|
|
1266
1272
|
end
|
|
1267
1273
|
|
|
1268
1274
|
def deserialize(params)
|
|
@@ -1296,6 +1302,8 @@ module TencentCloud
|
|
|
1296
1302
|
end
|
|
1297
1303
|
@Collation = params['Collation']
|
|
1298
1304
|
@TimeZone = params['TimeZone']
|
|
1305
|
+
@MultiNodes = params['MultiNodes']
|
|
1306
|
+
@DrZones = params['DrZones']
|
|
1299
1307
|
end
|
|
1300
1308
|
end
|
|
1301
1309
|
|
|
@@ -1500,10 +1508,14 @@ module TencentCloud
|
|
|
1500
1508
|
# @type Collation: String
|
|
1501
1509
|
# @param TimeZone: 系统时区,默认:China Standard Time
|
|
1502
1510
|
# @type TimeZone: String
|
|
1511
|
+
# @param MultiNodes: 是否多节点架构实例,默认值为false。当MultiNodes = true时,参数MultiZones必须取值为true。
|
|
1512
|
+
# @type MultiNodes: Boolean
|
|
1513
|
+
# @param DrZones: 备节点可用区,默认为空。当MultiNodes = true时,主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
|
|
1514
|
+
# @type DrZones: Array
|
|
1503
1515
|
|
|
1504
|
-
attr_accessor :Zone, :Memory, :Storage, :InstanceChargeType, :ProjectId, :GoodsNum, :SubnetId, :VpcId, :Period, :AutoVoucher, :VoucherIds, :DBVersion, :AutoRenewFlag, :SecurityGroupList, :Weekly, :StartTime, :Span, :HAType, :MultiZones, :ResourceTags, :Collation, :TimeZone
|
|
1516
|
+
attr_accessor :Zone, :Memory, :Storage, :InstanceChargeType, :ProjectId, :GoodsNum, :SubnetId, :VpcId, :Period, :AutoVoucher, :VoucherIds, :DBVersion, :AutoRenewFlag, :SecurityGroupList, :Weekly, :StartTime, :Span, :HAType, :MultiZones, :ResourceTags, :Collation, :TimeZone, :MultiNodes, :DrZones
|
|
1505
1517
|
|
|
1506
|
-
def initialize(zone=nil, memory=nil, storage=nil, instancechargetype=nil, projectid=nil, goodsnum=nil, subnetid=nil, vpcid=nil, period=nil, autovoucher=nil, voucherids=nil, dbversion=nil, autorenewflag=nil, securitygrouplist=nil, weekly=nil, starttime=nil, span=nil, hatype=nil, multizones=nil, resourcetags=nil, collation=nil, timezone=nil)
|
|
1518
|
+
def initialize(zone=nil, memory=nil, storage=nil, instancechargetype=nil, projectid=nil, goodsnum=nil, subnetid=nil, vpcid=nil, period=nil, autovoucher=nil, voucherids=nil, dbversion=nil, autorenewflag=nil, securitygrouplist=nil, weekly=nil, starttime=nil, span=nil, hatype=nil, multizones=nil, resourcetags=nil, collation=nil, timezone=nil, multinodes=nil, drzones=nil)
|
|
1507
1519
|
@Zone = zone
|
|
1508
1520
|
@Memory = memory
|
|
1509
1521
|
@Storage = storage
|
|
@@ -1526,6 +1538,8 @@ module TencentCloud
|
|
|
1526
1538
|
@ResourceTags = resourcetags
|
|
1527
1539
|
@Collation = collation
|
|
1528
1540
|
@TimeZone = timezone
|
|
1541
|
+
@MultiNodes = multinodes
|
|
1542
|
+
@DrZones = drzones
|
|
1529
1543
|
end
|
|
1530
1544
|
|
|
1531
1545
|
def deserialize(params)
|
|
@@ -1558,6 +1572,8 @@ module TencentCloud
|
|
|
1558
1572
|
end
|
|
1559
1573
|
@Collation = params['Collation']
|
|
1560
1574
|
@TimeZone = params['TimeZone']
|
|
1575
|
+
@MultiNodes = params['MultiNodes']
|
|
1576
|
+
@DrZones = params['DrZones']
|
|
1561
1577
|
end
|
|
1562
1578
|
end
|
|
1563
1579
|
|
|
@@ -2641,8 +2657,8 @@ module TencentCloud
|
|
|
2641
2657
|
|
|
2642
2658
|
attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
|
|
2643
2659
|
extend Gem::Deprecate
|
|
2644
|
-
deprecate :IsFulltextEnabled, :none, 2024,
|
|
2645
|
-
deprecate :IsFulltextEnabled=, :none, 2024,
|
|
2660
|
+
deprecate :IsFulltextEnabled, :none, 2024, 12
|
|
2661
|
+
deprecate :IsFulltextEnabled=, :none, 2024, 12
|
|
2646
2662
|
|
|
2647
2663
|
def initialize(issubscribed=nil, collationname=nil, isautocleanupon=nil, isbrokerenabled=nil, iscdcenabled=nil, isdbchainingon=nil, isencrypted=nil, ismirroring=nil, ispublished=nil, isreadcommittedsnapshoton=nil, istrustworthyon=nil, mirroringstate=nil, name=nil, recoverymodeldesc=nil, retentionperiod=nil, statedesc=nil, useraccessdesc=nil, createtime=nil, isfulltextenabled=nil)
|
|
2648
2664
|
@IsSubscribed = issubscribed
|
|
@@ -5148,7 +5164,7 @@ module TencentCloud
|
|
|
5148
5164
|
# @type Memory: Integer
|
|
5149
5165
|
# @param Storage: 实例容量大小,单位:GB。
|
|
5150
5166
|
# @type Storage: Integer
|
|
5151
|
-
# @param InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-新版高可用,cvmRO
|
|
5167
|
+
# @param InstanceType: 购买实例的类型 HA-高可用型(包括双机高可用,alwaysOn集群),RO-只读副本型,SI-单节点型,cvmHA-新版高可用,cvmRO-新版只读,MultiHA-多节点,cvmMultiHA-云盘多节点
|
|
5152
5168
|
# @type InstanceType: String
|
|
5153
5169
|
# @param InstanceChargeType: 计费类型,取值支持 PREPAID,POSTPAID。
|
|
5154
5170
|
# @type InstanceChargeType: String
|
|
@@ -5163,10 +5179,12 @@ module TencentCloud
|
|
|
5163
5179
|
# @param MachineType: 购买实例的宿主机类型,PM-物理机, CLOUD_PREMIUM-云服务器高性能云盘,CLOUD_SSD-云服务器SSD云盘,
|
|
5164
5180
|
# CLOUD_HSSD-云服务器加强型SSD云盘,CLOUD_TSSD-云服务器极速型SSD云盘,CLOUD_BSSD-云服务器通用型SSD云盘
|
|
5165
5181
|
# @type MachineType: String
|
|
5182
|
+
# @param DrZones: 备节点可用区,默认为空。如果是多节点架构时必传,并且备机可用区集合最小为2个,最大不超过5个。
|
|
5183
|
+
# @type DrZones: Array
|
|
5166
5184
|
|
|
5167
|
-
attr_accessor :Zone, :Memory, :Storage, :InstanceType, :InstanceChargeType, :Cpu, :Period, :GoodsNum, :DBVersion, :MachineType
|
|
5185
|
+
attr_accessor :Zone, :Memory, :Storage, :InstanceType, :InstanceChargeType, :Cpu, :Period, :GoodsNum, :DBVersion, :MachineType, :DrZones
|
|
5168
5186
|
|
|
5169
|
-
def initialize(zone=nil, memory=nil, storage=nil, instancetype=nil, instancechargetype=nil, cpu=nil, period=nil, goodsnum=nil, dbversion=nil, machinetype=nil)
|
|
5187
|
+
def initialize(zone=nil, memory=nil, storage=nil, instancetype=nil, instancechargetype=nil, cpu=nil, period=nil, goodsnum=nil, dbversion=nil, machinetype=nil, drzones=nil)
|
|
5170
5188
|
@Zone = zone
|
|
5171
5189
|
@Memory = memory
|
|
5172
5190
|
@Storage = storage
|
|
@@ -5177,6 +5195,7 @@ module TencentCloud
|
|
|
5177
5195
|
@GoodsNum = goodsnum
|
|
5178
5196
|
@DBVersion = dbversion
|
|
5179
5197
|
@MachineType = machinetype
|
|
5198
|
+
@DrZones = drzones
|
|
5180
5199
|
end
|
|
5181
5200
|
|
|
5182
5201
|
def deserialize(params)
|
|
@@ -5190,6 +5209,7 @@ module TencentCloud
|
|
|
5190
5209
|
@GoodsNum = params['GoodsNum']
|
|
5191
5210
|
@DBVersion = params['DBVersion']
|
|
5192
5211
|
@MachineType = params['MachineType']
|
|
5212
|
+
@DrZones = params['DrZones']
|
|
5193
5213
|
end
|
|
5194
5214
|
end
|
|
5195
5215
|
|
|
@@ -6723,8 +6743,8 @@ module TencentCloud
|
|
|
6723
6743
|
|
|
6724
6744
|
attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
|
|
6725
6745
|
extend Gem::Deprecate
|
|
6726
|
-
deprecate :Slowlogs, :none, 2024,
|
|
6727
|
-
deprecate :Slowlogs=, :none, 2024,
|
|
6746
|
+
deprecate :Slowlogs, :none, 2024, 12
|
|
6747
|
+
deprecate :Slowlogs=, :none, 2024, 12
|
|
6728
6748
|
|
|
6729
6749
|
def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
|
|
6730
6750
|
@TotalCount = totalcount
|
|
@@ -6933,8 +6953,8 @@ module TencentCloud
|
|
|
6933
6953
|
|
|
6934
6954
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
|
6935
6955
|
extend Gem::Deprecate
|
|
6936
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
|
6937
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
|
6956
|
+
deprecate :XCosSecurityToken, :none, 2024, 12
|
|
6957
|
+
deprecate :XCosSecurityToken=, :none, 2024, 12
|
|
6938
6958
|
|
|
6939
6959
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
|
6940
6960
|
@BucketName = bucketname
|
|
@@ -7012,8 +7032,8 @@ module TencentCloud
|
|
|
7012
7032
|
|
|
7013
7033
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
|
7014
7034
|
extend Gem::Deprecate
|
|
7015
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
|
7016
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
|
7035
|
+
deprecate :XCosSecurityToken, :none, 2024, 12
|
|
7036
|
+
deprecate :XCosSecurityToken=, :none, 2024, 12
|
|
7017
7037
|
|
|
7018
7038
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
|
7019
7039
|
@BucketName = bucketname
|
|
@@ -8301,8 +8321,8 @@ module TencentCloud
|
|
|
8301
8321
|
|
|
8302
8322
|
attr_accessor :Errno, :Msg, :Code, :RequestId
|
|
8303
8323
|
extend Gem::Deprecate
|
|
8304
|
-
deprecate :Errno, :none, 2024,
|
|
8305
|
-
deprecate :Errno=, :none, 2024,
|
|
8324
|
+
deprecate :Errno, :none, 2024, 12
|
|
8325
|
+
deprecate :Errno=, :none, 2024, 12
|
|
8306
8326
|
|
|
8307
8327
|
def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
|
|
8308
8328
|
@Errno = errno
|
|
@@ -8677,19 +8697,31 @@ module TencentCloud
|
|
|
8677
8697
|
# @type Type: String
|
|
8678
8698
|
# @param WaitSwitch: 操作设置。0-立即执行,1- 维护时间内执行,默认取值0。
|
|
8679
8699
|
# @type WaitSwitch: Integer
|
|
8700
|
+
# @param IsKMS: 是否被KMS加密保护,0-表示否,1表示被KMS保护,默认取值0
|
|
8701
|
+
# @type IsKMS: Integer
|
|
8702
|
+
# @param KeyId: IsKMS为1时必填
|
|
8703
|
+
# @type KeyId: String
|
|
8704
|
+
# @param KeyRegion: IsKMS为1时必填
|
|
8705
|
+
# @type KeyRegion: String
|
|
8680
8706
|
|
|
8681
|
-
attr_accessor :InstanceId, :Type, :WaitSwitch
|
|
8707
|
+
attr_accessor :InstanceId, :Type, :WaitSwitch, :IsKMS, :KeyId, :KeyRegion
|
|
8682
8708
|
|
|
8683
|
-
def initialize(instanceid=nil, type=nil, waitswitch=nil)
|
|
8709
|
+
def initialize(instanceid=nil, type=nil, waitswitch=nil, iskms=nil, keyid=nil, keyregion=nil)
|
|
8684
8710
|
@InstanceId = instanceid
|
|
8685
8711
|
@Type = type
|
|
8686
8712
|
@WaitSwitch = waitswitch
|
|
8713
|
+
@IsKMS = iskms
|
|
8714
|
+
@KeyId = keyid
|
|
8715
|
+
@KeyRegion = keyregion
|
|
8687
8716
|
end
|
|
8688
8717
|
|
|
8689
8718
|
def deserialize(params)
|
|
8690
8719
|
@InstanceId = params['InstanceId']
|
|
8691
8720
|
@Type = params['Type']
|
|
8692
8721
|
@WaitSwitch = params['WaitSwitch']
|
|
8722
|
+
@IsKMS = params['IsKMS']
|
|
8723
|
+
@KeyId = params['KeyId']
|
|
8724
|
+
@KeyRegion = params['KeyRegion']
|
|
8693
8725
|
end
|
|
8694
8726
|
end
|
|
8695
8727
|
|
|
@@ -8846,17 +8878,20 @@ module TencentCloud
|
|
|
8846
8878
|
# @type VpcId: String
|
|
8847
8879
|
# @param SubnetId: 备机网络子网ID,不填默认和主实例保持一致
|
|
8848
8880
|
# @type SubnetId: String
|
|
8849
|
-
# @param Vip: 指定的备机只读vip
|
|
8881
|
+
# @param Vip: 指定的备机只读vip,不填自动分配。多节点SingleReadOnly模式不支持指定vip。
|
|
8850
8882
|
# @type Vip: String
|
|
8883
|
+
# @param ReadMode: 备机只读模式,多节点架构默认取值BalancedReadOnly。SingleReadOnly-每个备机各对应一个只读地址(多节点架构),BalancedReadOnly-所有备机共用一个只读地址。当实例是双节点架构时,固定取值SingleReadOnly。
|
|
8884
|
+
# @type ReadMode: String
|
|
8851
8885
|
|
|
8852
|
-
attr_accessor :InstanceId, :Type, :VpcId, :SubnetId, :Vip
|
|
8886
|
+
attr_accessor :InstanceId, :Type, :VpcId, :SubnetId, :Vip, :ReadMode
|
|
8853
8887
|
|
|
8854
|
-
def initialize(instanceid=nil, type=nil, vpcid=nil, subnetid=nil, vip=nil)
|
|
8888
|
+
def initialize(instanceid=nil, type=nil, vpcid=nil, subnetid=nil, vip=nil, readmode=nil)
|
|
8855
8889
|
@InstanceId = instanceid
|
|
8856
8890
|
@Type = type
|
|
8857
8891
|
@VpcId = vpcid
|
|
8858
8892
|
@SubnetId = subnetid
|
|
8859
8893
|
@Vip = vip
|
|
8894
|
+
@ReadMode = readmode
|
|
8860
8895
|
end
|
|
8861
8896
|
|
|
8862
8897
|
def deserialize(params)
|
|
@@ -8865,6 +8900,7 @@ module TencentCloud
|
|
|
8865
8900
|
@VpcId = params['VpcId']
|
|
8866
8901
|
@SubnetId = params['SubnetId']
|
|
8867
8902
|
@Vip = params['Vip']
|
|
8903
|
+
@ReadMode = params['ReadMode']
|
|
8868
8904
|
end
|
|
8869
8905
|
end
|
|
8870
8906
|
|
|
@@ -9193,23 +9229,31 @@ module TencentCloud
|
|
|
9193
9229
|
class ModifyInstanceEncryptAttributesRequest < TencentCloud::Common::AbstractModel
|
|
9194
9230
|
# @param InstanceId: 实例ID
|
|
9195
9231
|
# @type InstanceId: String
|
|
9196
|
-
# @param CertificateAttribution: 证书归属。self-表示使用该账号自身的证书,others
|
|
9232
|
+
# @param CertificateAttribution: 证书归属。self-表示使用该账号自身的证书,others-表示引用其他账号的证书,kms-表示使用kms的CMK证书,默认取值self。
|
|
9197
9233
|
# @type CertificateAttribution: String
|
|
9198
9234
|
# @param QuoteUin: 引用的其他主账号ID,当CertificateAttribution 为others时必填。
|
|
9199
9235
|
# @type QuoteUin: String
|
|
9236
|
+
# @param KeyId: CertificateAttribution为kms时必填
|
|
9237
|
+
# @type KeyId: String
|
|
9238
|
+
# @param KeyRegion: CertificateAttribution为kms时必填
|
|
9239
|
+
# @type KeyRegion: String
|
|
9200
9240
|
|
|
9201
|
-
attr_accessor :InstanceId, :CertificateAttribution, :QuoteUin
|
|
9241
|
+
attr_accessor :InstanceId, :CertificateAttribution, :QuoteUin, :KeyId, :KeyRegion
|
|
9202
9242
|
|
|
9203
|
-
def initialize(instanceid=nil, certificateattribution=nil, quoteuin=nil)
|
|
9243
|
+
def initialize(instanceid=nil, certificateattribution=nil, quoteuin=nil, keyid=nil, keyregion=nil)
|
|
9204
9244
|
@InstanceId = instanceid
|
|
9205
9245
|
@CertificateAttribution = certificateattribution
|
|
9206
9246
|
@QuoteUin = quoteuin
|
|
9247
|
+
@KeyId = keyid
|
|
9248
|
+
@KeyRegion = keyregion
|
|
9207
9249
|
end
|
|
9208
9250
|
|
|
9209
9251
|
def deserialize(params)
|
|
9210
9252
|
@InstanceId = params['InstanceId']
|
|
9211
9253
|
@CertificateAttribution = params['CertificateAttribution']
|
|
9212
9254
|
@QuoteUin = params['QuoteUin']
|
|
9255
|
+
@KeyId = params['KeyId']
|
|
9256
|
+
@KeyRegion = params['KeyRegion']
|
|
9213
9257
|
end
|
|
9214
9258
|
end
|
|
9215
9259
|
|
|
@@ -10776,19 +10820,31 @@ module TencentCloud
|
|
|
10776
10820
|
# @param SSLValidity: SSL证书有效性,0-无效,1-有效
|
|
10777
10821
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10778
10822
|
# @type SSLValidity: Integer
|
|
10823
|
+
# @param IsKMS: 是否是KMS的CMK证书
|
|
10824
|
+
# @type IsKMS: Integer
|
|
10825
|
+
# @param CMKId: KMS中购买的用户主密钥ID(CMK)
|
|
10826
|
+
# @type CMKId: String
|
|
10827
|
+
# @param CMKRegion: CMK所属的地域,不同地域的CMK数据不互通
|
|
10828
|
+
# @type CMKRegion: String
|
|
10779
10829
|
|
|
10780
|
-
attr_accessor :Encryption, :SSLValidityPeriod, :SSLValidity
|
|
10830
|
+
attr_accessor :Encryption, :SSLValidityPeriod, :SSLValidity, :IsKMS, :CMKId, :CMKRegion
|
|
10781
10831
|
|
|
10782
|
-
def initialize(encryption=nil, sslvalidityperiod=nil, sslvalidity=nil)
|
|
10832
|
+
def initialize(encryption=nil, sslvalidityperiod=nil, sslvalidity=nil, iskms=nil, cmkid=nil, cmkregion=nil)
|
|
10783
10833
|
@Encryption = encryption
|
|
10784
10834
|
@SSLValidityPeriod = sslvalidityperiod
|
|
10785
10835
|
@SSLValidity = sslvalidity
|
|
10836
|
+
@IsKMS = iskms
|
|
10837
|
+
@CMKId = cmkid
|
|
10838
|
+
@CMKRegion = cmkregion
|
|
10786
10839
|
end
|
|
10787
10840
|
|
|
10788
10841
|
def deserialize(params)
|
|
10789
10842
|
@Encryption = params['Encryption']
|
|
10790
10843
|
@SSLValidityPeriod = params['SSLValidityPeriod']
|
|
10791
10844
|
@SSLValidity = params['SSLValidity']
|
|
10845
|
+
@IsKMS = params['IsKMS']
|
|
10846
|
+
@CMKId = params['CMKId']
|
|
10847
|
+
@CMKRegion = params['CMKRegion']
|
|
10792
10848
|
end
|
|
10793
10849
|
end
|
|
10794
10850
|
|
|
@@ -11035,7 +11091,8 @@ module TencentCloud
|
|
|
11035
11091
|
# @type PostPid: Array
|
|
11036
11092
|
# @param PayModeStatus: 此规格下支持的付费模式,POST-仅支持按量计费 PRE-仅支持包年包月 ALL-支持所有
|
|
11037
11093
|
# @type PayModeStatus: String
|
|
11038
|
-
# @param InstanceType:
|
|
11094
|
+
# @param InstanceType: 购买实例的类型 HA-本地盘高可用(包括双机高可用,alwaysOn集群),RO-本地盘只读副本,SI-云盘版单节点,BI-商业智能服务,cvmHA-云盘版高可用,cvmRO-云盘版只读副本,MultiHA-多节点,cvmMultiHA-云盘多节点
|
|
11095
|
+
# 示例值:HA
|
|
11039
11096
|
# @type InstanceType: String
|
|
11040
11097
|
# @param MultiZonesStatus: 跨可用区类型,MultiZones-只支持跨可用区,SameZones-只支持同可用区,ALL-支持所有
|
|
11041
11098
|
# @type MultiZonesStatus: String
|
|
@@ -11089,11 +11146,12 @@ module TencentCloud
|
|
|
11089
11146
|
# @type SpecId: Integer
|
|
11090
11147
|
# @param PayModeStatus: 此规格下支持的付费模式,POST-仅支持按量计费 PRE-仅支持包年包月 ALL-支持所有
|
|
11091
11148
|
# @type PayModeStatus: String
|
|
11092
|
-
# @param InstanceType:
|
|
11149
|
+
# @param InstanceType: 产品类型,购买实例的类型 HA-本地盘高可用(包括双机高可用,alwaysOn集群),RO-本地盘只读副本,SI-云盘版单节点,BI-商业智能服务,cvmHA-云盘版高可用,cvmRO-云盘版只读副本,MultiHA-多节点,cvmMultiHA-云盘多节点
|
|
11093
11150
|
# @type InstanceType: String
|
|
11094
11151
|
# @param MultiZonesStatus: 该规格支持的是否跨可用去,MultiZones-只支持跨可用区,SameZones-只支持同可用区,ALL-支持所有
|
|
11095
11152
|
# @type MultiZonesStatus: String
|
|
11096
|
-
# @param Architecture: 架构标识,SINGLE-单节点 DOUBLE-双节点 TRIPLE-三节点
|
|
11153
|
+
# @param Architecture: 架构标识,SINGLE-单节点 DOUBLE-双节点 TRIPLE-三节点 MULTI-多节点
|
|
11154
|
+
# 示例值:SINGLE
|
|
11097
11155
|
# @type Architecture: String
|
|
11098
11156
|
# @param Style: 类型标识,EXCLUSIVE-独享型,SHARED-共享型
|
|
11099
11157
|
# @type Style: String
|
|
@@ -11524,19 +11582,27 @@ module TencentCloud
|
|
|
11524
11582
|
# @param QuoteUin: 开通TDE加密时引用的其他主账号ID
|
|
11525
11583
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11526
11584
|
# @type QuoteUin: String
|
|
11585
|
+
# @param CMKId: KMS中购买的用户主密钥ID(CMK)
|
|
11586
|
+
# @type CMKId: String
|
|
11587
|
+
# @param CMKRegion: CMK所属的地域,不同地域的CMK不互通
|
|
11588
|
+
# @type CMKRegion: String
|
|
11527
11589
|
|
|
11528
|
-
attr_accessor :Encryption, :CertificateAttribution, :QuoteUin
|
|
11590
|
+
attr_accessor :Encryption, :CertificateAttribution, :QuoteUin, :CMKId, :CMKRegion
|
|
11529
11591
|
|
|
11530
|
-
def initialize(encryption=nil, certificateattribution=nil, quoteuin=nil)
|
|
11592
|
+
def initialize(encryption=nil, certificateattribution=nil, quoteuin=nil, cmkid=nil, cmkregion=nil)
|
|
11531
11593
|
@Encryption = encryption
|
|
11532
11594
|
@CertificateAttribution = certificateattribution
|
|
11533
11595
|
@QuoteUin = quoteuin
|
|
11596
|
+
@CMKId = cmkid
|
|
11597
|
+
@CMKRegion = cmkregion
|
|
11534
11598
|
end
|
|
11535
11599
|
|
|
11536
11600
|
def deserialize(params)
|
|
11537
11601
|
@Encryption = params['Encryption']
|
|
11538
11602
|
@CertificateAttribution = params['CertificateAttribution']
|
|
11539
11603
|
@QuoteUin = params['QuoteUin']
|
|
11604
|
+
@CMKId = params['CMKId']
|
|
11605
|
+
@CMKRegion = params['CMKRegion']
|
|
11540
11606
|
end
|
|
11541
11607
|
end
|
|
11542
11608
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-sqlserver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.969
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-12-
|
|
11
|
+
date: 2024-12-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|