tencentcloud-sdk-sqlserver 1.0.313 → 1.0.316

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180328/models.rb +29 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c263a83ecbe55249e1512e9c23f9fa15312adf7c
4
- data.tar.gz: a1ca898c817715421eeac9d3bcea348db0766253
3
+ metadata.gz: 178491b12f249f94ab2ac01e948a398fa9fc5579
4
+ data.tar.gz: 7a9acc4498cd41862f674066355cebc02f2b85c5
5
5
  SHA512:
6
- metadata.gz: d5a8a7eb65f3ee2af3dd300eacf70c8d3e630c32866c828bac92b6b57d6ffd389fb14c286b3eda839566346d7fb75b074bcc0f0353c3284f4cccfb2225c70ec7
7
- data.tar.gz: 32f5dfe64c6170ece851d6ecb274b1c57a59f4b95376af19722fe6b195a842a19ed27b8381ad5308720b425169960d1972e3bd05b786079c53a04983ea713262
6
+ metadata.gz: 58965da2f12700ae8a745d9b74dba9b2c7f4f1eed9194f453891ea6a306a0c30f9a34c80e52ece6e2d76606c9edd9e775f1575093b155e82566af30e0cb15d72
7
+ data.tar.gz: b22ebeca98006261d95778a59ed0500cd27723d151d7f8e6d9490d186e5bd7ab7a571559bf546049e8ef6df85a82f58d4fbf4ba38fa1b7110bb38cf050b99c1d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.313
1
+ 1.0.316
@@ -29,15 +29,18 @@ module TencentCloud
29
29
  # @type Remark: String
30
30
  # @param IsAdmin: 是否为管理员账户,默认为否
31
31
  # @type IsAdmin: Boolean
32
+ # @param Authentication: win-windows鉴权,sql-sqlserver鉴权,不填模式兼容接口sqlserver鉴权
33
+ # @type Authentication: String
32
34
 
33
- attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin
35
+ attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin, :Authentication
34
36
 
35
- def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil)
37
+ def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil, authentication=nil)
36
38
  @UserName = username
37
39
  @Password = password
38
40
  @DBPrivileges = dbprivileges
39
41
  @Remark = remark
40
42
  @IsAdmin = isadmin
43
+ @Authentication = authentication
41
44
  end
42
45
 
43
46
  def deserialize(params)
@@ -53,6 +56,7 @@ module TencentCloud
53
56
  end
54
57
  @Remark = params['Remark']
55
58
  @IsAdmin = params['IsAdmin']
59
+ @Authentication = params['Authentication']
56
60
  end
57
61
  end
58
62
 
@@ -76,10 +80,14 @@ module TencentCloud
76
80
  # @type Dbs: Array
77
81
  # @param IsAdmin: 是否为管理员账户
78
82
  # @type IsAdmin: Boolean
83
+ # @param Authentication: win-windows鉴权,sql-sqlserver鉴权
84
+ # @type Authentication: String
85
+ # @param Host: win-windows鉴权账户需要host
86
+ # @type Host: String
79
87
 
80
- attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin
88
+ attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin, :Authentication, :Host
81
89
 
82
- def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil)
90
+ def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil, authentication=nil, host=nil)
83
91
  @Name = name
84
92
  @Remark = remark
85
93
  @CreateTime = createtime
@@ -89,6 +97,8 @@ module TencentCloud
89
97
  @InternalStatus = internalstatus
90
98
  @Dbs = dbs
91
99
  @IsAdmin = isadmin
100
+ @Authentication = authentication
101
+ @Host = host
92
102
  end
93
103
 
94
104
  def deserialize(params)
@@ -108,6 +118,8 @@ module TencentCloud
108
118
  end
109
119
  end
110
120
  @IsAdmin = params['IsAdmin']
121
+ @Authentication = params['Authentication']
122
+ @Host = params['Host']
111
123
  end
112
124
  end
113
125
 
@@ -157,12 +169,15 @@ module TencentCloud
157
169
  # @type UserName: String
158
170
  # @param DBPrivileges: 账号权限变更信息
159
171
  # @type DBPrivileges: Array
172
+ # @param IsAdmin: 是否为管理员账户
173
+ # @type IsAdmin: Boolean
160
174
 
161
- attr_accessor :UserName, :DBPrivileges
175
+ attr_accessor :UserName, :DBPrivileges, :IsAdmin
162
176
 
163
- def initialize(username=nil, dbprivileges=nil)
177
+ def initialize(username=nil, dbprivileges=nil, isadmin=nil)
164
178
  @UserName = username
165
179
  @DBPrivileges = dbprivileges
180
+ @IsAdmin = isadmin
166
181
  end
167
182
 
168
183
  def deserialize(params)
@@ -175,6 +190,7 @@ module TencentCloud
175
190
  @DBPrivileges << dbprivilegemodifyinfo_tmp
176
191
  end
177
192
  end
193
+ @IsAdmin = params['IsAdmin']
178
194
  end
179
195
  end
180
196
 
@@ -3131,6 +3147,7 @@ module TencentCloud
3131
3147
  # @param Amount: 数据库数量
3132
3148
  # @type Amount: Integer
3133
3149
  # @param MigrateDBSet: 数据库名称数组
3150
+ # 注意:此字段可能返回 null,表示取不到有效值。
3134
3151
  # @type MigrateDBSet: Array
3135
3152
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3136
3153
  # @type RequestId: String
@@ -7073,10 +7090,12 @@ module TencentCloud
7073
7090
  # @type HAType: String
7074
7091
  # @param MultiZones: 修改实例是否为跨可用区容灾,SameZones-修改为同可用区 MultiZones-修改为夸可用区
7075
7092
  # @type MultiZones: String
7093
+ # @param WaitSwitch: 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
7094
+ # @type WaitSwitch: Integer
7076
7095
 
7077
- attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones
7096
+ attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch
7078
7097
 
7079
- def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil)
7098
+ def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil)
7080
7099
  @InstanceId = instanceid
7081
7100
  @Memory = memory
7082
7101
  @Storage = storage
@@ -7086,6 +7105,7 @@ module TencentCloud
7086
7105
  @DBVersion = dbversion
7087
7106
  @HAType = hatype
7088
7107
  @MultiZones = multizones
7108
+ @WaitSwitch = waitswitch
7089
7109
  end
7090
7110
 
7091
7111
  def deserialize(params)
@@ -7098,6 +7118,7 @@ module TencentCloud
7098
7118
  @DBVersion = params['DBVersion']
7099
7119
  @HAType = params['HAType']
7100
7120
  @MultiZones = params['MultiZones']
7121
+ @WaitSwitch = params['WaitSwitch']
7101
7122
  end
7102
7123
  end
7103
7124
 
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: 1.0.313
4
+ version: 1.0.316
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-16 00:00:00.000000000 Z
11
+ date: 2022-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common