tencentcloud-sdk-sqlserver 3.0.1140 → 3.0.1160
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/models.rb +35 -18
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 08ddc1e27cdac39706e492f1ae3c5b99dc757b70
|
|
4
|
+
data.tar.gz: a5eaaf74d168037b1a80558056b760b0885ca2bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c374bf9aa73686f4cfca8513da73dca3d3e4ad97e5a1b635acd7b622ccf1ae729de93c90c23517e4d67ece0dd0b37bb80b9b2377db93056efa4bc0120cdb221d
|
|
7
|
+
data.tar.gz: a59a44df874f11e11a861a934ff79a53638f498b3efb4d6d28d9cda9372b78cb19e55480653749e5971edda9457b72bca3e1183493b77e1cc759ba1dc4d3d05e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1160
|
data/lib/v20180328/models.rb
CHANGED
|
@@ -2672,13 +2672,17 @@ module TencentCloud
|
|
|
2672
2672
|
# @type CreateTime: String
|
|
2673
2673
|
# @param IsFullTextEnabled: 是否全文启用 0:否 1:是
|
|
2674
2674
|
# @type IsFullTextEnabled: String
|
|
2675
|
+
# @param IsAvailabilityGroups: 是否是可用性组 0:否 1:是
|
|
2676
|
+
# @type IsAvailabilityGroups: String
|
|
2677
|
+
# @param AGSyncState: AG组数据库同步状态
|
|
2678
|
+
# @type AGSyncState: String
|
|
2675
2679
|
|
|
2676
|
-
attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
|
|
2680
|
+
attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled, :IsAvailabilityGroups, :AGSyncState
|
|
2677
2681
|
extend Gem::Deprecate
|
|
2678
|
-
deprecate :IsFulltextEnabled, :none, 2025,
|
|
2679
|
-
deprecate :IsFulltextEnabled=, :none, 2025,
|
|
2682
|
+
deprecate :IsFulltextEnabled, :none, 2025, 10
|
|
2683
|
+
deprecate :IsFulltextEnabled=, :none, 2025, 10
|
|
2680
2684
|
|
|
2681
|
-
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)
|
|
2685
|
+
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, isavailabilitygroups=nil, agsyncstate=nil)
|
|
2682
2686
|
@IsSubscribed = issubscribed
|
|
2683
2687
|
@CollationName = collationname
|
|
2684
2688
|
@IsAutoCleanupOn = isautocleanupon
|
|
@@ -2698,6 +2702,8 @@ module TencentCloud
|
|
|
2698
2702
|
@UserAccessDesc = useraccessdesc
|
|
2699
2703
|
@CreateTime = createtime
|
|
2700
2704
|
@IsFullTextEnabled = isfulltextenabled
|
|
2705
|
+
@IsAvailabilityGroups = isavailabilitygroups
|
|
2706
|
+
@AGSyncState = agsyncstate
|
|
2701
2707
|
end
|
|
2702
2708
|
|
|
2703
2709
|
def deserialize(params)
|
|
@@ -2720,6 +2726,8 @@ module TencentCloud
|
|
|
2720
2726
|
@UserAccessDesc = params['UserAccessDesc']
|
|
2721
2727
|
@CreateTime = params['CreateTime']
|
|
2722
2728
|
@IsFullTextEnabled = params['IsFullTextEnabled']
|
|
2729
|
+
@IsAvailabilityGroups = params['IsAvailabilityGroups']
|
|
2730
|
+
@AGSyncState = params['AGSyncState']
|
|
2723
2731
|
end
|
|
2724
2732
|
end
|
|
2725
2733
|
|
|
@@ -4388,12 +4396,15 @@ module TencentCloud
|
|
|
4388
4396
|
# @type IsSafetyLimited: Integer
|
|
4389
4397
|
# @param IsSupportSA: 是否支持创建SA权限账号,0-不支持,1-支持
|
|
4390
4398
|
# @type IsSupportSA: Integer
|
|
4399
|
+
# @param SlowLogThreshold: 慢SQL阈值,单位毫秒
|
|
4400
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
4401
|
+
# @type SlowLogThreshold: Integer
|
|
4391
4402
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4392
4403
|
# @type RequestId: String
|
|
4393
4404
|
|
|
4394
|
-
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :TDEConfig, :SSLConfig, :DrReadableInfo, :OldVipList, :XEventStatus, :MultiDrReadableInfo, :IsDiskEncryptFlag, :IsSafetyLimited, :IsSupportSA, :RequestId
|
|
4405
|
+
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :TDEConfig, :SSLConfig, :DrReadableInfo, :OldVipList, :XEventStatus, :MultiDrReadableInfo, :IsDiskEncryptFlag, :IsSafetyLimited, :IsSupportSA, :SlowLogThreshold, :RequestId
|
|
4395
4406
|
|
|
4396
|
-
def initialize(instanceid=nil, regularbackupenable=nil, regularbackupsavedays=nil, regularbackupstrategy=nil, regularbackupcounts=nil, regularbackupstarttime=nil, blockedthreshold=nil, eventsavedays=nil, tdeconfig=nil, sslconfig=nil, drreadableinfo=nil, oldviplist=nil, xeventstatus=nil, multidrreadableinfo=nil, isdiskencryptflag=nil, issafetylimited=nil, issupportsa=nil, requestid=nil)
|
|
4407
|
+
def initialize(instanceid=nil, regularbackupenable=nil, regularbackupsavedays=nil, regularbackupstrategy=nil, regularbackupcounts=nil, regularbackupstarttime=nil, blockedthreshold=nil, eventsavedays=nil, tdeconfig=nil, sslconfig=nil, drreadableinfo=nil, oldviplist=nil, xeventstatus=nil, multidrreadableinfo=nil, isdiskencryptflag=nil, issafetylimited=nil, issupportsa=nil, slowlogthreshold=nil, requestid=nil)
|
|
4397
4408
|
@InstanceId = instanceid
|
|
4398
4409
|
@RegularBackupEnable = regularbackupenable
|
|
4399
4410
|
@RegularBackupSaveDays = regularbackupsavedays
|
|
@@ -4411,6 +4422,7 @@ module TencentCloud
|
|
|
4411
4422
|
@IsDiskEncryptFlag = isdiskencryptflag
|
|
4412
4423
|
@IsSafetyLimited = issafetylimited
|
|
4413
4424
|
@IsSupportSA = issupportsa
|
|
4425
|
+
@SlowLogThreshold = slowlogthreshold
|
|
4414
4426
|
@RequestId = requestid
|
|
4415
4427
|
end
|
|
4416
4428
|
|
|
@@ -4455,6 +4467,7 @@ module TencentCloud
|
|
|
4455
4467
|
@IsDiskEncryptFlag = params['IsDiskEncryptFlag']
|
|
4456
4468
|
@IsSafetyLimited = params['IsSafetyLimited']
|
|
4457
4469
|
@IsSupportSA = params['IsSupportSA']
|
|
4470
|
+
@SlowLogThreshold = params['SlowLogThreshold']
|
|
4458
4471
|
@RequestId = params['RequestId']
|
|
4459
4472
|
end
|
|
4460
4473
|
end
|
|
@@ -6806,8 +6819,8 @@ module TencentCloud
|
|
|
6806
6819
|
|
|
6807
6820
|
attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
|
|
6808
6821
|
extend Gem::Deprecate
|
|
6809
|
-
deprecate :Slowlogs, :none, 2025,
|
|
6810
|
-
deprecate :Slowlogs=, :none, 2025,
|
|
6822
|
+
deprecate :Slowlogs, :none, 2025, 10
|
|
6823
|
+
deprecate :Slowlogs=, :none, 2025, 10
|
|
6811
6824
|
|
|
6812
6825
|
def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
|
|
6813
6826
|
@TotalCount = totalcount
|
|
@@ -7027,8 +7040,8 @@ module TencentCloud
|
|
|
7027
7040
|
|
|
7028
7041
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
|
7029
7042
|
extend Gem::Deprecate
|
|
7030
|
-
deprecate :XCosSecurityToken, :none, 2025,
|
|
7031
|
-
deprecate :XCosSecurityToken=, :none, 2025,
|
|
7043
|
+
deprecate :XCosSecurityToken, :none, 2025, 10
|
|
7044
|
+
deprecate :XCosSecurityToken=, :none, 2025, 10
|
|
7032
7045
|
|
|
7033
7046
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
|
7034
7047
|
@BucketName = bucketname
|
|
@@ -7106,8 +7119,8 @@ module TencentCloud
|
|
|
7106
7119
|
|
|
7107
7120
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
|
7108
7121
|
extend Gem::Deprecate
|
|
7109
|
-
deprecate :XCosSecurityToken, :none, 2025,
|
|
7110
|
-
deprecate :XCosSecurityToken=, :none, 2025,
|
|
7122
|
+
deprecate :XCosSecurityToken, :none, 2025, 10
|
|
7123
|
+
deprecate :XCosSecurityToken=, :none, 2025, 10
|
|
7111
7124
|
|
|
7112
7125
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
|
7113
7126
|
@BucketName = bucketname
|
|
@@ -7392,11 +7405,11 @@ module TencentCloud
|
|
|
7392
7405
|
# @type Size: Integer
|
|
7393
7406
|
# @param EventType: 事件类型,slow-慢SQL事件,blocked-阻塞事件,deadlock-死锁事件
|
|
7394
7407
|
# @type EventType: String
|
|
7395
|
-
# @param Status: 事件记录状态,1-成功,2
|
|
7408
|
+
# @param Status: 事件记录状态,1-成功,2-失败,3-文件待删除,4-写入中
|
|
7396
7409
|
# @type Status: Integer
|
|
7397
7410
|
# @param StartTime: 扩展文件生成开始时间
|
|
7398
7411
|
# @type StartTime: String
|
|
7399
|
-
# @param EndTime:
|
|
7412
|
+
# @param EndTime: 扩展文件最后更新时间
|
|
7400
7413
|
# @type EndTime: String
|
|
7401
7414
|
# @param InternalAddr: 内网下载地址
|
|
7402
7415
|
# @type InternalAddr: String
|
|
@@ -8435,8 +8448,8 @@ module TencentCloud
|
|
|
8435
8448
|
|
|
8436
8449
|
attr_accessor :Errno, :Msg, :Code, :RequestId
|
|
8437
8450
|
extend Gem::Deprecate
|
|
8438
|
-
deprecate :Errno, :none, 2025,
|
|
8439
|
-
deprecate :Errno=, :none, 2025,
|
|
8451
|
+
deprecate :Errno, :none, 2025, 10
|
|
8452
|
+
deprecate :Errno=, :none, 2025, 10
|
|
8440
8453
|
|
|
8441
8454
|
def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
|
|
8442
8455
|
@Errno = errno
|
|
@@ -11781,10 +11794,12 @@ module TencentCloud
|
|
|
11781
11794
|
# @type WaitSwitch: Integer
|
|
11782
11795
|
# @param DrZones: 多节点架构实例的备节点可用区,默认为空。如果需要在变配的同时修改指定备节点的可用区时必传,当MultiZones = MultiZones时主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
|
|
11783
11796
|
# @type DrZones: Array
|
|
11797
|
+
# @param UpgradeCompatLevel: 是否自动升级数据库的兼容性级别,默认0。0-否,1-是
|
|
11798
|
+
# @type UpgradeCompatLevel: Integer
|
|
11784
11799
|
|
|
11785
|
-
attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch, :DrZones
|
|
11800
|
+
attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch, :DrZones, :UpgradeCompatLevel
|
|
11786
11801
|
|
|
11787
|
-
def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil, drzones=nil)
|
|
11802
|
+
def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil, drzones=nil, upgradecompatlevel=nil)
|
|
11788
11803
|
@InstanceId = instanceid
|
|
11789
11804
|
@Memory = memory
|
|
11790
11805
|
@Storage = storage
|
|
@@ -11796,6 +11811,7 @@ module TencentCloud
|
|
|
11796
11811
|
@MultiZones = multizones
|
|
11797
11812
|
@WaitSwitch = waitswitch
|
|
11798
11813
|
@DrZones = drzones
|
|
11814
|
+
@UpgradeCompatLevel = upgradecompatlevel
|
|
11799
11815
|
end
|
|
11800
11816
|
|
|
11801
11817
|
def deserialize(params)
|
|
@@ -11817,6 +11833,7 @@ module TencentCloud
|
|
|
11817
11833
|
@DrZones << drzoneinfo_tmp
|
|
11818
11834
|
end
|
|
11819
11835
|
end
|
|
11836
|
+
@UpgradeCompatLevel = params['UpgradeCompatLevel']
|
|
11820
11837
|
end
|
|
11821
11838
|
end
|
|
11822
11839
|
|
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.1160
|
|
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-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,8 +33,8 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20180328/client.rb
|
|
37
36
|
- lib/v20180328/models.rb
|
|
37
|
+
- lib/v20180328/client.rb
|
|
38
38
|
- lib/tencentcloud-sdk-sqlserver.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|