tencentcloud-sdk-sqlserver 3.0.837 → 3.0.838
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 +24 -16
- 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: 060a951136a0c030c20e5d56246802d6b88b9e6f
|
4
|
+
data.tar.gz: e5db4e1b6a27a659dbd4662d6ac9928a62edff84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7aba601ba8712897ff0d5b3b7e9dfa296266e54258c68cfaea532f1f3267226f53a5b61f4ed747b2c9d07a305d4738a411e7fdc54bb9ffab5a4d72036807606
|
7
|
+
data.tar.gz: 12468651baaf565346f1d354c8d94e701874f8ee8b3787aefb57ca5170b8c1124389391482d7d7f3a82b72c3a74612c46c3a7568ed846cc577577012d0ab6b80
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.838
|
data/lib/v20180328/models.rb
CHANGED
@@ -27,16 +27,18 @@ module TencentCloud
|
|
27
27
|
# @type DBPrivileges: Array
|
28
28
|
# @param Remark: 账号备注信息
|
29
29
|
# @type Remark: String
|
30
|
-
# @param IsAdmin: 是否为管理员账户,当值为true
|
30
|
+
# @param IsAdmin: 是否为管理员账户,当值为true 等价于单节点AccountType=L0,双节点AccountType=L1,当值为false,等价于AccountType=L3
|
31
31
|
# @type IsAdmin: Boolean
|
32
32
|
# @param Authentication: win-windows鉴权,sql-sqlserver鉴权,不填默认值为sql-sqlserver鉴权
|
33
33
|
# @type Authentication: String
|
34
34
|
# @param AccountType: 账号类型,IsAdmin的扩展字段。 L0-超级权限(基础版独有),L1-高级权限,L2-特殊权限,L3-普通权限,默认L3
|
35
35
|
# @type AccountType: String
|
36
|
+
# @param IsCam: 是否开启CAM验证
|
37
|
+
# @type IsCam: Boolean
|
36
38
|
|
37
|
-
attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin, :Authentication, :AccountType
|
39
|
+
attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin, :Authentication, :AccountType, :IsCam
|
38
40
|
|
39
|
-
def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil, authentication=nil, accounttype=nil)
|
41
|
+
def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil, authentication=nil, accounttype=nil, iscam=nil)
|
40
42
|
@UserName = username
|
41
43
|
@Password = password
|
42
44
|
@DBPrivileges = dbprivileges
|
@@ -44,6 +46,7 @@ module TencentCloud
|
|
44
46
|
@IsAdmin = isadmin
|
45
47
|
@Authentication = authentication
|
46
48
|
@AccountType = accounttype
|
49
|
+
@IsCam = iscam
|
47
50
|
end
|
48
51
|
|
49
52
|
def deserialize(params)
|
@@ -61,10 +64,11 @@ module TencentCloud
|
|
61
64
|
@IsAdmin = params['IsAdmin']
|
62
65
|
@Authentication = params['Authentication']
|
63
66
|
@AccountType = params['AccountType']
|
67
|
+
@IsCam = params['IsCam']
|
64
68
|
end
|
65
69
|
end
|
66
70
|
|
67
|
-
#
|
71
|
+
# 账号信息详情
|
68
72
|
class AccountDetail < TencentCloud::Common::AbstractModel
|
69
73
|
# @param Name: 账户名
|
70
74
|
# @type Name: String
|
@@ -84,6 +88,8 @@ module TencentCloud
|
|
84
88
|
# @type Dbs: Array
|
85
89
|
# @param IsAdmin: 是否为管理员账户
|
86
90
|
# @type IsAdmin: Boolean
|
91
|
+
# @param IsCam: 是否为cam托管账户
|
92
|
+
# @type IsCam: Boolean
|
87
93
|
# @param Authentication: win-windows鉴权,sql-sqlserver鉴权
|
88
94
|
# @type Authentication: String
|
89
95
|
# @param Host: win-windows鉴权账户需要host
|
@@ -91,9 +97,9 @@ module TencentCloud
|
|
91
97
|
# @param AccountType: 账号类型。L0-超级权限(基础版独有),L1-高级权限,L2-特殊权限,L3-普通权限
|
92
98
|
# @type AccountType: String
|
93
99
|
|
94
|
-
attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin, :Authentication, :Host, :AccountType
|
100
|
+
attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin, :IsCam, :Authentication, :Host, :AccountType
|
95
101
|
|
96
|
-
def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil, authentication=nil, host=nil, accounttype=nil)
|
102
|
+
def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil, iscam=nil, authentication=nil, host=nil, accounttype=nil)
|
97
103
|
@Name = name
|
98
104
|
@Remark = remark
|
99
105
|
@CreateTime = createtime
|
@@ -103,6 +109,7 @@ module TencentCloud
|
|
103
109
|
@InternalStatus = internalstatus
|
104
110
|
@Dbs = dbs
|
105
111
|
@IsAdmin = isadmin
|
112
|
+
@IsCam = iscam
|
106
113
|
@Authentication = authentication
|
107
114
|
@Host = host
|
108
115
|
@AccountType = accounttype
|
@@ -125,6 +132,7 @@ module TencentCloud
|
|
125
132
|
end
|
126
133
|
end
|
127
134
|
@IsAdmin = params['IsAdmin']
|
135
|
+
@IsCam = params['IsCam']
|
128
136
|
@Authentication = params['Authentication']
|
129
137
|
@Host = params['Host']
|
130
138
|
@AccountType = params['AccountType']
|
@@ -2567,8 +2575,8 @@ module TencentCloud
|
|
2567
2575
|
|
2568
2576
|
attr_accessor :IsSubscribed, :CollationName, :IsAutoCleanupOn, :IsBrokerEnabled, :IsCdcEnabled, :IsDbChainingOn, :IsEncrypted, :IsFulltextEnabled, :IsMirroring, :IsPublished, :IsReadCommittedSnapshotOn, :IsTrustworthyOn, :MirroringState, :Name, :RecoveryModelDesc, :RetentionPeriod, :StateDesc, :UserAccessDesc, :CreateTime, :IsFullTextEnabled
|
2569
2577
|
extend Gem::Deprecate
|
2570
|
-
deprecate :IsFulltextEnabled, :none, 2024,
|
2571
|
-
deprecate :IsFulltextEnabled=, :none, 2024,
|
2578
|
+
deprecate :IsFulltextEnabled, :none, 2024, 6
|
2579
|
+
deprecate :IsFulltextEnabled=, :none, 2024, 6
|
2572
2580
|
|
2573
2581
|
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
2582
|
@IsSubscribed = issubscribed
|
@@ -6645,8 +6653,8 @@ module TencentCloud
|
|
6645
6653
|
|
6646
6654
|
attr_accessor :TotalCount, :Slowlogs, :SlowLogs, :RequestId
|
6647
6655
|
extend Gem::Deprecate
|
6648
|
-
deprecate :Slowlogs, :none, 2024,
|
6649
|
-
deprecate :Slowlogs=, :none, 2024,
|
6656
|
+
deprecate :Slowlogs, :none, 2024, 6
|
6657
|
+
deprecate :Slowlogs=, :none, 2024, 6
|
6650
6658
|
|
6651
6659
|
def initialize(totalcount=nil, slowlogs=nil, requestid=nil)
|
6652
6660
|
@TotalCount = totalcount
|
@@ -6855,8 +6863,8 @@ module TencentCloud
|
|
6855
6863
|
|
6856
6864
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
6857
6865
|
extend Gem::Deprecate
|
6858
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
6859
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
6866
|
+
deprecate :XCosSecurityToken, :none, 2024, 6
|
6867
|
+
deprecate :XCosSecurityToken=, :none, 2024, 6
|
6860
6868
|
|
6861
6869
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
6862
6870
|
@BucketName = bucketname
|
@@ -6934,8 +6942,8 @@ module TencentCloud
|
|
6934
6942
|
|
6935
6943
|
attr_accessor :BucketName, :Region, :Path, :TmpSecretId, :TmpSecretKey, :XCosSecurityToken, :StartTime, :ExpiredTime, :CosSecurityToken, :RequestId
|
6936
6944
|
extend Gem::Deprecate
|
6937
|
-
deprecate :XCosSecurityToken, :none, 2024,
|
6938
|
-
deprecate :XCosSecurityToken=, :none, 2024,
|
6945
|
+
deprecate :XCosSecurityToken, :none, 2024, 6
|
6946
|
+
deprecate :XCosSecurityToken=, :none, 2024, 6
|
6939
6947
|
|
6940
6948
|
def initialize(bucketname=nil, region=nil, path=nil, tmpsecretid=nil, tmpsecretkey=nil, xcossecuritytoken=nil, starttime=nil, expiredtime=nil, cossecuritytoken=nil, requestid=nil)
|
6941
6949
|
@BucketName = bucketname
|
@@ -8223,8 +8231,8 @@ module TencentCloud
|
|
8223
8231
|
|
8224
8232
|
attr_accessor :Errno, :Msg, :Code, :RequestId
|
8225
8233
|
extend Gem::Deprecate
|
8226
|
-
deprecate :Errno, :none, 2024,
|
8227
|
-
deprecate :Errno=, :none, 2024,
|
8234
|
+
deprecate :Errno, :none, 2024, 6
|
8235
|
+
deprecate :Errno=, :none, 2024, 6
|
8228
8236
|
|
8229
8237
|
def initialize(errno=nil, msg=nil, code=nil, requestid=nil)
|
8230
8238
|
@Errno = errno
|
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.838
|
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-06-
|
11
|
+
date: 2024-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|