tencentcloud-sdk-sqlserver 3.0.798 → 3.0.800
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 +48 -12
- 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: 2927226bee3aa628607167f1dda187126ac1dd3d
|
4
|
+
data.tar.gz: 42b486d8b4869c8d6ec255cc7aa33976ccd3089d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff27c173f5df432750562bd5ada598156bd93683ae73e6bbaaf1c955713f9b1c47df9b32b7dd8d1567a7c3d9b4723dcfd65edee4265ce8586a855938cc657993
|
7
|
+
data.tar.gz: dc07ce6bcca4e8773c6b74be1c2feb7b4c3ab2c8b1f894d0400d9aaaa5c2f75289404f142a0771c62e2161a0f049270895645462d1af5b7182443d05b2f53961
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.800
|
data/lib/v20180328/models.rb
CHANGED
@@ -2567,8 +2567,8 @@ module TencentCloud
|
|
2567
2567
|
|
2568
2568
|
attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
|
2569
2569
|
extend Gem::Deprecate
|
2570
|
-
deprecate :IsFulltextEnabled, :none, 2024,
|
2571
|
-
deprecate :IsFulltextEnabled=, :none, 2024,
|
2570
|
+
deprecate :IsFulltextEnabled, :none, 2024, 4
|
2571
|
+
deprecate :IsFulltextEnabled=, :none, 2024, 4
|
2572
2572
|
|
2573
2573
|
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)
|
2574
2574
|
@IsSubscribed = issubscribed
|
@@ -4264,12 +4264,14 @@ module TencentCloud
|
|
4264
4264
|
# @type SSLConfig: :class:`Tencentcloud::Sqlserver.v20180328.models.SSLConfig`
|
4265
4265
|
# @param DrReadableInfo: 备机只读信息
|
4266
4266
|
# @type DrReadableInfo: :class:`Tencentcloud::Sqlserver.v20180328.models.DrReadableInfo`
|
4267
|
+
# @param OldVipList: 等待回收的IP列表
|
4268
|
+
# @type OldVipList: Array
|
4267
4269
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4268
4270
|
# @type RequestId: String
|
4269
4271
|
|
4270
|
-
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :TDEConfig, :SSLConfig, :DrReadableInfo, :RequestId
|
4272
|
+
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :TDEConfig, :SSLConfig, :DrReadableInfo, :OldVipList, :RequestId
|
4271
4273
|
|
4272
|
-
def initialize(instanceid=nil, regularbackupenable=nil, regularbackupsavedays=nil, regularbackupstrategy=nil, regularbackupcounts=nil, regularbackupstarttime=nil, blockedthreshold=nil, eventsavedays=nil, tdeconfig=nil, sslconfig=nil, drreadableinfo=nil, requestid=nil)
|
4274
|
+
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, requestid=nil)
|
4273
4275
|
@InstanceId = instanceid
|
4274
4276
|
@RegularBackupEnable = regularbackupenable
|
4275
4277
|
@RegularBackupSaveDays = regularbackupsavedays
|
@@ -4281,6 +4283,7 @@ module TencentCloud
|
|
4281
4283
|
@TDEConfig = tdeconfig
|
4282
4284
|
@SSLConfig = sslconfig
|
4283
4285
|
@DrReadableInfo = drreadableinfo
|
4286
|
+
@OldVipList = oldviplist
|
4284
4287
|
@RequestId = requestid
|
4285
4288
|
end
|
4286
4289
|
|
@@ -4305,6 +4308,14 @@ module TencentCloud
|
|
4305
4308
|
@DrReadableInfo = DrReadableInfo.new
|
4306
4309
|
@DrReadableInfo.deserialize(params['DrReadableInfo'])
|
4307
4310
|
end
|
4311
|
+
unless params['OldVipList'].nil?
|
4312
|
+
@OldVipList = []
|
4313
|
+
params['OldVipList'].each do |i|
|
4314
|
+
oldvip_tmp = OldVip.new
|
4315
|
+
oldvip_tmp.deserialize(i)
|
4316
|
+
@OldVipList << oldvip_tmp
|
4317
|
+
end
|
4318
|
+
end
|
4308
4319
|
@RequestId = params['RequestId']
|
4309
4320
|
end
|
4310
4321
|
end
|
@@ -6590,8 +6601,8 @@ module TencentCloud
|
|
6590
6601
|
|
6591
6602
|
attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
|
6592
6603
|
extend Gem::Deprecate
|
6593
|
-
deprecate :Slowlogs, :none, 2024,
|
6594
|
-
deprecate :Slowlogs=, :none, 2024,
|
6604
|
+
deprecate :Slowlogs, :none, 2024, 4
|
6605
|
+
deprecate :Slowlogs=, :none, 2024, 4
|
6595
6606
|
|
6596
6607
|
def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
|
6597
6608
|
@TotalCount = totalcount
|
@@ -6800,8 +6811,8 @@ module TencentCloud
|
|
6800
6811
|
|
6801
6812
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
6802
6813
|
extend Gem::Deprecate
|
6803
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
6804
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
6814
|
+
deprecate :XCosSecurityToken, :none, 2024, 4
|
6815
|
+
deprecate :XCosSecurityToken=, :none, 2024, 4
|
6805
6816
|
|
6806
6817
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
6807
6818
|
@BucketName = bucketname
|
@@ -6879,8 +6890,8 @@ module TencentCloud
|
|
6879
6890
|
|
6880
6891
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
6881
6892
|
extend Gem::Deprecate
|
6882
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
6883
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
6893
|
+
deprecate :XCosSecurityToken, :none, 2024, 4
|
6894
|
+
deprecate :XCosSecurityToken=, :none, 2024, 4
|
6884
6895
|
|
6885
6896
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
6886
6897
|
@BucketName = bucketname
|
@@ -8168,8 +8179,8 @@ module TencentCloud
|
|
8168
8179
|
|
8169
8180
|
attr_accessor :Errno, :Msg, :Code, :RequestId
|
8170
8181
|
extend Gem::Deprecate
|
8171
|
-
deprecate :Errno, :none, 2024,
|
8172
|
-
deprecate :Errno=, :none, 2024,
|
8182
|
+
deprecate :Errno, :none, 2024, 4
|
8183
|
+
deprecate :Errno=, :none, 2024, 4
|
8173
8184
|
|
8174
8185
|
def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
|
8175
8186
|
@Errno = errno
|
@@ -9415,6 +9426,31 @@ module TencentCloud
|
|
9415
9426
|
end
|
9416
9427
|
end
|
9417
9428
|
|
9429
|
+
# 用于返回实例存在的未回收的ip数量
|
9430
|
+
class OldVip < TencentCloud::Common::AbstractModel
|
9431
|
+
# @param Vip: 未回收的旧ip
|
9432
|
+
# @type Vip: String
|
9433
|
+
# @param RecycleTime: ip回收时间
|
9434
|
+
# @type RecycleTime: String
|
9435
|
+
# @param OldIpRetainTime: 旧IP保留时间小时数
|
9436
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
9437
|
+
# @type OldIpRetainTime: Integer
|
9438
|
+
|
9439
|
+
attr_accessor :Vip, :RecycleTime, :OldIpRetainTime
|
9440
|
+
|
9441
|
+
def initialize(vip=nil, recycletime=nil, oldipretaintime=nil)
|
9442
|
+
@Vip = vip
|
9443
|
+
@RecycleTime = recycletime
|
9444
|
+
@OldIpRetainTime = oldipretaintime
|
9445
|
+
end
|
9446
|
+
|
9447
|
+
def deserialize(params)
|
9448
|
+
@Vip = params['Vip']
|
9449
|
+
@RecycleTime = params['RecycleTime']
|
9450
|
+
@OldIpRetainTime = params['OldIpRetainTime']
|
9451
|
+
end
|
9452
|
+
end
|
9453
|
+
|
9418
9454
|
# OpenInterCommunication请求参数结构体
|
9419
9455
|
class OpenInterCommunicationRequest < TencentCloud::Common::AbstractModel
|
9420
9456
|
# @param InstanceIdSet: 打开互通组的实例ID集合
|
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.800
|
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-04-
|
11
|
+
date: 2024-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|