tencentcloud-sdk-sqlserver 3.0.598 → 3.0.600
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 +46 -6
- 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: 54d9d5f757dcedad4b5ee3fd73424595ab2fb88e
|
4
|
+
data.tar.gz: c621f1f5c17d2be4818d57fb72d3a74739d8acaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b5f3c67e4f43c4aa86f0ac78f569a83ff554deec31d0989b5ce65678f80026c031b2e4aa2c24b4268afa8a5d47bc52cffcc7b8f651ae21c63b5781f2ad797e9
|
7
|
+
data.tar.gz: 8f6f056eaa55719c5dd8360d752889647507cf27f2bd63817af3cbecb380a1ba7f4f6ec402bd4a8f7008a681d0f7753d6dfe9602e29ab9d913a96fd523ea9f6f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.600
|
data/lib/v20180328/models.rb
CHANGED
@@ -1940,10 +1940,12 @@ module TencentCloud
|
|
1940
1940
|
# @type Accounts: Array
|
1941
1941
|
# @param InternalStatus: 内部状态。ONLINE表示运行中
|
1942
1942
|
# @type InternalStatus: String
|
1943
|
+
# @param Encryption: 是否已开启TDE加密,enable-已加密,disable-未加密
|
1944
|
+
# @type Encryption: String
|
1943
1945
|
|
1944
|
-
attr_accessor :Name, :Charset, :Remark, :CreateTime, :Status, :Accounts, :InternalStatus
|
1946
|
+
attr_accessor :Name, :Charset, :Remark, :CreateTime, :Status, :Accounts, :InternalStatus, :Encryption
|
1945
1947
|
|
1946
|
-
def initialize(name=nil, charset=nil, remark=nil, createtime=nil, status=nil, accounts=nil, internalstatus=nil)
|
1948
|
+
def initialize(name=nil, charset=nil, remark=nil, createtime=nil, status=nil, accounts=nil, internalstatus=nil, encryption=nil)
|
1947
1949
|
@Name = name
|
1948
1950
|
@Charset = charset
|
1949
1951
|
@Remark = remark
|
@@ -1951,6 +1953,7 @@ module TencentCloud
|
|
1951
1953
|
@Status = status
|
1952
1954
|
@Accounts = accounts
|
1953
1955
|
@InternalStatus = internalstatus
|
1956
|
+
@Encryption = encryption
|
1954
1957
|
end
|
1955
1958
|
|
1956
1959
|
def deserialize(params)
|
@@ -1968,6 +1971,7 @@ module TencentCloud
|
|
1968
1971
|
end
|
1969
1972
|
end
|
1970
1973
|
@InternalStatus = params['InternalStatus']
|
1974
|
+
@Encryption = params['Encryption']
|
1971
1975
|
end
|
1972
1976
|
end
|
1973
1977
|
|
@@ -3553,12 +3557,14 @@ module TencentCloud
|
|
3553
3557
|
# @type BlockedThreshold: Integer
|
3554
3558
|
# @param EventSaveDays: 慢SQL、阻塞、死锁扩展事件文件保留时长
|
3555
3559
|
# @type EventSaveDays: Integer
|
3560
|
+
# @param TDEConfig: TDE透明数据加密配置
|
3561
|
+
# @type TDEConfig: :class:`Tencentcloud::Sqlserver.v20180328.models.TDEConfigAttribute`
|
3556
3562
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3557
3563
|
# @type RequestId: String
|
3558
3564
|
|
3559
|
-
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :RequestId
|
3565
|
+
attr_accessor :InstanceId, :RegularBackupEnable, :RegularBackupSaveDays, :RegularBackupStrategy, :RegularBackupCounts, :RegularBackupStartTime, :BlockedThreshold, :EventSaveDays, :TDEConfig, :RequestId
|
3560
3566
|
|
3561
|
-
def initialize(instanceid=nil, regularbackupenable=nil, regularbackupsavedays=nil, regularbackupstrategy=nil, regularbackupcounts=nil, regularbackupstarttime=nil, blockedthreshold=nil, eventsavedays=nil, requestid=nil)
|
3567
|
+
def initialize(instanceid=nil, regularbackupenable=nil, regularbackupsavedays=nil, regularbackupstrategy=nil, regularbackupcounts=nil, regularbackupstarttime=nil, blockedthreshold=nil, eventsavedays=nil, tdeconfig=nil, requestid=nil)
|
3562
3568
|
@InstanceId = instanceid
|
3563
3569
|
@RegularBackupEnable = regularbackupenable
|
3564
3570
|
@RegularBackupSaveDays = regularbackupsavedays
|
@@ -3567,6 +3573,7 @@ module TencentCloud
|
|
3567
3573
|
@RegularBackupStartTime = regularbackupstarttime
|
3568
3574
|
@BlockedThreshold = blockedthreshold
|
3569
3575
|
@EventSaveDays = eventsavedays
|
3576
|
+
@TDEConfig = tdeconfig
|
3570
3577
|
@RequestId = requestid
|
3571
3578
|
end
|
3572
3579
|
|
@@ -3579,6 +3586,10 @@ module TencentCloud
|
|
3579
3586
|
@RegularBackupStartTime = params['RegularBackupStartTime']
|
3580
3587
|
@BlockedThreshold = params['BlockedThreshold']
|
3581
3588
|
@EventSaveDays = params['EventSaveDays']
|
3589
|
+
unless params['TDEConfig'].nil?
|
3590
|
+
@TDEConfig = TDEConfigAttribute.new
|
3591
|
+
@TDEConfig.deserialize(params['TDEConfig'])
|
3592
|
+
end
|
3582
3593
|
@RequestId = params['RequestId']
|
3583
3594
|
end
|
3584
3595
|
end
|
@@ -3804,15 +3815,18 @@ module TencentCloud
|
|
3804
3815
|
# @type Name: String
|
3805
3816
|
# @param OrderByType: 排序规则(desc-降序,asc-升序),默认desc
|
3806
3817
|
# @type OrderByType: String
|
3818
|
+
# @param Encryption: 是否已开启TDE加密,enable-已加密,disable-未加密
|
3819
|
+
# @type Encryption: String
|
3807
3820
|
|
3808
|
-
attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType
|
3821
|
+
attr_accessor :InstanceIdSet, :Limit, :Offset, :Name, :OrderByType, :Encryption
|
3809
3822
|
|
3810
|
-
def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil)
|
3823
|
+
def initialize(instanceidset=nil, limit=nil, offset=nil, name=nil, orderbytype=nil, encryption=nil)
|
3811
3824
|
@InstanceIdSet = instanceidset
|
3812
3825
|
@Limit = limit
|
3813
3826
|
@Offset = offset
|
3814
3827
|
@Name = name
|
3815
3828
|
@OrderByType = orderbytype
|
3829
|
+
@Encryption = encryption
|
3816
3830
|
end
|
3817
3831
|
|
3818
3832
|
def deserialize(params)
|
@@ -3821,6 +3835,7 @@ module TencentCloud
|
|
3821
3835
|
@Offset = params['Offset']
|
3822
3836
|
@Name = params['Name']
|
3823
3837
|
@OrderByType = params['OrderByType']
|
3838
|
+
@Encryption = params['Encryption']
|
3824
3839
|
end
|
3825
3840
|
end
|
3826
3841
|
|
@@ -8444,6 +8459,31 @@ module TencentCloud
|
|
8444
8459
|
end
|
8445
8460
|
end
|
8446
8461
|
|
8462
|
+
# TDE透明数据加密配置
|
8463
|
+
class TDEConfigAttribute < TencentCloud::Common::AbstractModel
|
8464
|
+
# @param Encryption: 是否已开通TDE加密,enable-已开通,disable-未开通
|
8465
|
+
# @type Encryption: String
|
8466
|
+
# @param CertificateAttribution: 证书归属。self-表示使用该账号自身的证书,others-表示引用其他账号的证书,none-表示没有证书
|
8467
|
+
# @type CertificateAttribution: String
|
8468
|
+
# @param QuoteUin: 开通TDE加密时引用的其他主账号ID
|
8469
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8470
|
+
# @type QuoteUin: String
|
8471
|
+
|
8472
|
+
attr_accessor :Encryption, :CertificateAttribution, :QuoteUin
|
8473
|
+
|
8474
|
+
def initialize(encryption=nil, certificateattribution=nil, quoteuin=nil)
|
8475
|
+
@Encryption = encryption
|
8476
|
+
@CertificateAttribution = certificateattribution
|
8477
|
+
@QuoteUin = quoteuin
|
8478
|
+
end
|
8479
|
+
|
8480
|
+
def deserialize(params)
|
8481
|
+
@Encryption = params['Encryption']
|
8482
|
+
@CertificateAttribution = params['CertificateAttribution']
|
8483
|
+
@QuoteUin = params['QuoteUin']
|
8484
|
+
end
|
8485
|
+
end
|
8486
|
+
|
8447
8487
|
# TerminateDBInstance请求参数结构体
|
8448
8488
|
class TerminateDBInstanceRequest < TencentCloud::Common::AbstractModel
|
8449
8489
|
# @param InstanceIdSet: 主动销毁的实例ID列表,格式如:[mssql-3l3fgqn7]。与云数据库控制台页面中显示的实例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.600
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|