tencentcloud-sdk-nodejs 4.0.455 → 4.0.456

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 (47) hide show
  1. package/CHANGELOG.md +174 -0
  2. package/SERVICE_CHANGELOG.md +224 -61
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/captcha/v20190722/captcha_models.ts +18 -8
  7. package/src/services/cwp/v20180228/cwp_client.ts +28 -16
  8. package/src/services/cwp/v20180228/cwp_models.ts +168 -123
  9. package/src/services/mongodb/v20190725/mongodb_client.ts +1 -1
  10. package/src/services/mongodb/v20190725/mongodb_models.ts +48 -13
  11. package/src/services/monitor/v20180724/monitor_models.ts +6 -0
  12. package/src/services/redis/v20180412/redis_client.ts +498 -474
  13. package/src/services/redis/v20180412/redis_models.ts +65 -14
  14. package/src/services/rum/v20210622/rum_models.ts +17 -7
  15. package/src/services/teo/v20220901/teo_client.ts +85 -12
  16. package/src/services/teo/v20220901/teo_models.ts +484 -208
  17. package/src/services/tke/v20180525/tke_client.ts +25 -1
  18. package/src/services/tke/v20180525/tke_models.ts +92 -2
  19. package/src/services/vpc/v20170312/vpc_client.ts +4 -4
  20. package/src/services/vpc/v20170312/vpc_models.ts +2 -2
  21. package/tencentcloud/common/sdk_version.d.ts +1 -1
  22. package/tencentcloud/common/sdk_version.js +1 -1
  23. package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +16 -8
  24. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +9 -5
  25. package/tencentcloud/services/cwp/v20180228/cwp_client.js +12 -6
  26. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +142 -101
  27. package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
  28. package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
  29. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +41 -13
  30. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +5 -0
  31. package/tencentcloud/services/redis/v20180412/redis_client.d.ts +171 -163
  32. package/tencentcloud/services/redis/v20180412/redis_client.js +255 -243
  33. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +58 -13
  34. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +15 -7
  35. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +27 -3
  36. package/tencentcloud/services/teo/v20220901/teo_client.js +39 -3
  37. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +384 -146
  38. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -1
  39. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -0
  40. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +79 -2
  41. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +1 -1
  42. package/tencentcloud/services/vpc/v20170312/vpc_client.js +1 -1
  43. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
  44. package/test/cwp.v20180228.test.js +14 -4
  45. package/test/redis.v20180412.test.js +182 -162
  46. package/test/teo.v20220901.test.js +62 -2
  47. package/test/tke.v20180525.test.js +20 -0
@@ -18,9 +18,9 @@ const client = new tencentcloud.redis.v20180412.Client({
18
18
  })
19
19
  describe("redis.v20180412.test.js", function () {
20
20
 
21
- it("redis.v20180412.EnableReplicaReadonly", async function () {
21
+ it("redis.v20180412.ModifyInstanceReadOnly", async function () {
22
22
  try {
23
- const data = await client.EnableReplicaReadonly({})
23
+ const data = await client.ModifyInstanceReadOnly({})
24
24
  expect(data).to.be.ok
25
25
  } catch(error) {
26
26
  expect(error.requestId).to.be.ok
@@ -28,9 +28,9 @@ it("redis.v20180412.EnableReplicaReadonly", async function () {
28
28
  }
29
29
  })
30
30
 
31
- it("redis.v20180412.DescribeReplicationGroup", async function () {
31
+ it("redis.v20180412.DescribeInstanceMonitorBigKeySizeDist", async function () {
32
32
  try {
33
- const data = await client.DescribeReplicationGroup({})
33
+ const data = await client.DescribeInstanceMonitorBigKeySizeDist({})
34
34
  expect(data).to.be.ok
35
35
  } catch(error) {
36
36
  expect(error.requestId).to.be.ok
@@ -38,9 +38,9 @@ it("redis.v20180412.DescribeReplicationGroup", async function () {
38
38
  }
39
39
  })
40
40
 
41
- it("redis.v20180412.DescribeInstanceNodeInfo", async function () {
41
+ it("redis.v20180412.DescribeTaskList", async function () {
42
42
  try {
43
- const data = await client.DescribeInstanceNodeInfo({})
43
+ const data = await client.DescribeTaskList({})
44
44
  expect(data).to.be.ok
45
45
  } catch(error) {
46
46
  expect(error.requestId).to.be.ok
@@ -48,9 +48,9 @@ it("redis.v20180412.DescribeInstanceNodeInfo", async function () {
48
48
  }
49
49
  })
50
50
 
51
- it("redis.v20180412.ModifyInstanceReadOnly", async function () {
51
+ it("redis.v20180412.DeleteReplicationInstance", async function () {
52
52
  try {
53
- const data = await client.ModifyInstanceReadOnly({})
53
+ const data = await client.DeleteReplicationInstance({})
54
54
  expect(data).to.be.ok
55
55
  } catch(error) {
56
56
  expect(error.requestId).to.be.ok
@@ -58,9 +58,9 @@ it("redis.v20180412.ModifyInstanceReadOnly", async function () {
58
58
  }
59
59
  })
60
60
 
61
- it("redis.v20180412.DescribeInstanceMonitorBigKeySizeDist", async function () {
61
+ it("redis.v20180412.CleanUpInstance", async function () {
62
62
  try {
63
- const data = await client.DescribeInstanceMonitorBigKeySizeDist({})
63
+ const data = await client.CleanUpInstance({})
64
64
  expect(data).to.be.ok
65
65
  } catch(error) {
66
66
  expect(error.requestId).to.be.ok
@@ -68,9 +68,9 @@ it("redis.v20180412.DescribeInstanceMonitorBigKeySizeDist", async function () {
68
68
  }
69
69
  })
70
70
 
71
- it("redis.v20180412.CreateInstanceAccount", async function () {
71
+ it("redis.v20180412.DescribeInstanceAccount", async function () {
72
72
  try {
73
- const data = await client.CreateInstanceAccount({})
73
+ const data = await client.DescribeInstanceAccount({})
74
74
  expect(data).to.be.ok
75
75
  } catch(error) {
76
76
  expect(error.requestId).to.be.ok
@@ -78,9 +78,9 @@ it("redis.v20180412.CreateInstanceAccount", async function () {
78
78
  }
79
79
  })
80
80
 
81
- it("redis.v20180412.ModifyMaintenanceWindow", async function () {
81
+ it("redis.v20180412.ChangeReplicaToMaster", async function () {
82
82
  try {
83
- const data = await client.ModifyMaintenanceWindow({})
83
+ const data = await client.ChangeReplicaToMaster({})
84
84
  expect(data).to.be.ok
85
85
  } catch(error) {
86
86
  expect(error.requestId).to.be.ok
@@ -88,9 +88,9 @@ it("redis.v20180412.ModifyMaintenanceWindow", async function () {
88
88
  }
89
89
  })
90
90
 
91
- it("redis.v20180412.DescribeParamTemplates", async function () {
91
+ it("redis.v20180412.DescribeInstanceMonitorTopNCmd", async function () {
92
92
  try {
93
- const data = await client.DescribeParamTemplates({})
93
+ const data = await client.DescribeInstanceMonitorTopNCmd({})
94
94
  expect(data).to.be.ok
95
95
  } catch(error) {
96
96
  expect(error.requestId).to.be.ok
@@ -98,9 +98,9 @@ it("redis.v20180412.DescribeParamTemplates", async function () {
98
98
  }
99
99
  })
100
100
 
101
- it("redis.v20180412.ReleaseWanAddress", async function () {
101
+ it("redis.v20180412.UpgradeInstanceVersion", async function () {
102
102
  try {
103
- const data = await client.ReleaseWanAddress({})
103
+ const data = await client.UpgradeInstanceVersion({})
104
104
  expect(data).to.be.ok
105
105
  } catch(error) {
106
106
  expect(error.requestId).to.be.ok
@@ -108,9 +108,9 @@ it("redis.v20180412.ReleaseWanAddress", async function () {
108
108
  }
109
109
  })
110
110
 
111
- it("redis.v20180412.DescribeSlowLog", async function () {
111
+ it("redis.v20180412.DescribeProductInfo", async function () {
112
112
  try {
113
- const data = await client.DescribeSlowLog({})
113
+ const data = await client.DescribeProductInfo({})
114
114
  expect(data).to.be.ok
115
115
  } catch(error) {
116
116
  expect(error.requestId).to.be.ok
@@ -118,9 +118,9 @@ it("redis.v20180412.DescribeSlowLog", async function () {
118
118
  }
119
119
  })
120
120
 
121
- it("redis.v20180412.DescribeTaskList", async function () {
121
+ it("redis.v20180412.DescribeTaskInfo", async function () {
122
122
  try {
123
- const data = await client.DescribeTaskList({})
123
+ const data = await client.DescribeTaskInfo({})
124
124
  expect(data).to.be.ok
125
125
  } catch(error) {
126
126
  expect(error.requestId).to.be.ok
@@ -128,9 +128,9 @@ it("redis.v20180412.DescribeTaskList", async function () {
128
128
  }
129
129
  })
130
130
 
131
- it("redis.v20180412.DeleteReplicationInstance", async function () {
131
+ it("redis.v20180412.ModifyDBInstanceSecurityGroups", async function () {
132
132
  try {
133
- const data = await client.DeleteReplicationInstance({})
133
+ const data = await client.ModifyDBInstanceSecurityGroups({})
134
134
  expect(data).to.be.ok
135
135
  } catch(error) {
136
136
  expect(error.requestId).to.be.ok
@@ -138,9 +138,9 @@ it("redis.v20180412.DeleteReplicationInstance", async function () {
138
138
  }
139
139
  })
140
140
 
141
- it("redis.v20180412.CleanUpInstance", async function () {
141
+ it("redis.v20180412.ModifyInstanceAccount", async function () {
142
142
  try {
143
- const data = await client.CleanUpInstance({})
143
+ const data = await client.ModifyInstanceAccount({})
144
144
  expect(data).to.be.ok
145
145
  } catch(error) {
146
146
  expect(error.requestId).to.be.ok
@@ -148,9 +148,9 @@ it("redis.v20180412.CleanUpInstance", async function () {
148
148
  }
149
149
  })
150
150
 
151
- it("redis.v20180412.DescribeParamTemplateInfo", async function () {
151
+ it("redis.v20180412.DescribeInstanceSecurityGroup", async function () {
152
152
  try {
153
- const data = await client.DescribeParamTemplateInfo({})
153
+ const data = await client.DescribeInstanceSecurityGroup({})
154
154
  expect(data).to.be.ok
155
155
  } catch(error) {
156
156
  expect(error.requestId).to.be.ok
@@ -158,9 +158,9 @@ it("redis.v20180412.DescribeParamTemplateInfo", async function () {
158
158
  }
159
159
  })
160
160
 
161
- it("redis.v20180412.DescribeInstanceBackups", async function () {
161
+ it("redis.v20180412.UpgradeVersionToMultiAvailabilityZones", async function () {
162
162
  try {
163
- const data = await client.DescribeInstanceBackups({})
163
+ const data = await client.UpgradeVersionToMultiAvailabilityZones({})
164
164
  expect(data).to.be.ok
165
165
  } catch(error) {
166
166
  expect(error.requestId).to.be.ok
@@ -168,9 +168,9 @@ it("redis.v20180412.DescribeInstanceBackups", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("redis.v20180412.DescribeInstanceDTSInfo", async function () {
171
+ it("redis.v20180412.ModifyInstanceParams", async function () {
172
172
  try {
173
- const data = await client.DescribeInstanceDTSInfo({})
173
+ const data = await client.ModifyInstanceParams({})
174
174
  expect(data).to.be.ok
175
175
  } catch(error) {
176
176
  expect(error.requestId).to.be.ok
@@ -178,9 +178,9 @@ it("redis.v20180412.DescribeInstanceDTSInfo", async function () {
178
178
  }
179
179
  })
180
180
 
181
- it("redis.v20180412.DescribeInstanceMonitorTopNCmdTook", async function () {
181
+ it("redis.v20180412.ClearInstance", async function () {
182
182
  try {
183
- const data = await client.DescribeInstanceMonitorTopNCmdTook({})
183
+ const data = await client.ClearInstance({})
184
184
  expect(data).to.be.ok
185
185
  } catch(error) {
186
186
  expect(error.requestId).to.be.ok
@@ -188,9 +188,9 @@ it("redis.v20180412.DescribeInstanceMonitorTopNCmdTook", async function () {
188
188
  }
189
189
  })
190
190
 
191
- it("redis.v20180412.SwitchProxy", async function () {
191
+ it("redis.v20180412.AllocateWanAddress", async function () {
192
192
  try {
193
- const data = await client.SwitchProxy({})
193
+ const data = await client.AllocateWanAddress({})
194
194
  expect(data).to.be.ok
195
195
  } catch(error) {
196
196
  expect(error.requestId).to.be.ok
@@ -198,9 +198,9 @@ it("redis.v20180412.SwitchProxy", async function () {
198
198
  }
199
199
  })
200
200
 
201
- it("redis.v20180412.ChangeReplicaToMaster", async function () {
201
+ it("redis.v20180412.DeleteInstanceAccount", async function () {
202
202
  try {
203
- const data = await client.ChangeReplicaToMaster({})
203
+ const data = await client.DeleteInstanceAccount({})
204
204
  expect(data).to.be.ok
205
205
  } catch(error) {
206
206
  expect(error.requestId).to.be.ok
@@ -208,9 +208,9 @@ it("redis.v20180412.ChangeReplicaToMaster", async function () {
208
208
  }
209
209
  })
210
210
 
211
- it("redis.v20180412.ModifyAutoBackupConfig", async function () {
211
+ it("redis.v20180412.ModifyConnectionConfig", async function () {
212
212
  try {
213
- const data = await client.ModifyAutoBackupConfig({})
213
+ const data = await client.ModifyConnectionConfig({})
214
214
  expect(data).to.be.ok
215
215
  } catch(error) {
216
216
  expect(error.requestId).to.be.ok
@@ -218,9 +218,9 @@ it("redis.v20180412.ModifyAutoBackupConfig", async function () {
218
218
  }
219
219
  })
220
220
 
221
- it("redis.v20180412.DescribeInstanceShards", async function () {
221
+ it("redis.v20180412.ModifyInstance", async function () {
222
222
  try {
223
- const data = await client.DescribeInstanceShards({})
223
+ const data = await client.ModifyInstance({})
224
224
  expect(data).to.be.ok
225
225
  } catch(error) {
226
226
  expect(error.requestId).to.be.ok
@@ -228,9 +228,9 @@ it("redis.v20180412.DescribeInstanceShards", async function () {
228
228
  }
229
229
  })
230
230
 
231
- it("redis.v20180412.UpgradeInstance", async function () {
231
+ it("redis.v20180412.ChangeInstanceRole", async function () {
232
232
  try {
233
- const data = await client.UpgradeInstance({})
233
+ const data = await client.ChangeInstanceRole({})
234
234
  expect(data).to.be.ok
235
235
  } catch(error) {
236
236
  expect(error.requestId).to.be.ok
@@ -238,9 +238,9 @@ it("redis.v20180412.UpgradeInstance", async function () {
238
238
  }
239
239
  })
240
240
 
241
- it("redis.v20180412.RestoreInstance", async function () {
241
+ it("redis.v20180412.DescribeInstanceNodeInfo", async function () {
242
242
  try {
243
- const data = await client.RestoreInstance({})
243
+ const data = await client.DescribeInstanceNodeInfo({})
244
244
  expect(data).to.be.ok
245
245
  } catch(error) {
246
246
  expect(error.requestId).to.be.ok
@@ -248,9 +248,9 @@ it("redis.v20180412.RestoreInstance", async function () {
248
248
  }
249
249
  })
250
250
 
251
- it("redis.v20180412.DescribeInstances", async function () {
251
+ it("redis.v20180412.CreateInstanceAccount", async function () {
252
252
  try {
253
- const data = await client.DescribeInstances({})
253
+ const data = await client.CreateInstanceAccount({})
254
254
  expect(data).to.be.ok
255
255
  } catch(error) {
256
256
  expect(error.requestId).to.be.ok
@@ -258,9 +258,9 @@ it("redis.v20180412.DescribeInstances", async function () {
258
258
  }
259
259
  })
260
260
 
261
- it("redis.v20180412.DeleteParamTemplate", async function () {
261
+ it("redis.v20180412.UpgradeProxyVersion", async function () {
262
262
  try {
263
- const data = await client.DeleteParamTemplate({})
263
+ const data = await client.UpgradeProxyVersion({})
264
264
  expect(data).to.be.ok
265
265
  } catch(error) {
266
266
  expect(error.requestId).to.be.ok
@@ -268,9 +268,9 @@ it("redis.v20180412.DeleteParamTemplate", async function () {
268
268
  }
269
269
  })
270
270
 
271
- it("redis.v20180412.AddReplicationInstance", async function () {
271
+ it("redis.v20180412.DescribeInstanceMonitorTopNCmdTook", async function () {
272
272
  try {
273
- const data = await client.AddReplicationInstance({})
273
+ const data = await client.DescribeInstanceMonitorTopNCmdTook({})
274
274
  expect(data).to.be.ok
275
275
  } catch(error) {
276
276
  expect(error.requestId).to.be.ok
@@ -278,9 +278,9 @@ it("redis.v20180412.AddReplicationInstance", async function () {
278
278
  }
279
279
  })
280
280
 
281
- it("redis.v20180412.DescribeMaintenanceWindow", async function () {
281
+ it("redis.v20180412.ModifyAutoBackupConfig", async function () {
282
282
  try {
283
- const data = await client.DescribeMaintenanceWindow({})
283
+ const data = await client.ModifyAutoBackupConfig({})
284
284
  expect(data).to.be.ok
285
285
  } catch(error) {
286
286
  expect(error.requestId).to.be.ok
@@ -288,9 +288,19 @@ it("redis.v20180412.DescribeMaintenanceWindow", async function () {
288
288
  }
289
289
  })
290
290
 
291
- it("redis.v20180412.DescribeInstanceMonitorTopNCmd", async function () {
291
+ it("redis.v20180412.DeleteParamTemplate", async function () {
292
292
  try {
293
- const data = await client.DescribeInstanceMonitorTopNCmd({})
293
+ const data = await client.DeleteParamTemplate({})
294
+ expect(data).to.be.ok
295
+ } catch(error) {
296
+ expect(error.requestId).to.be.ok
297
+ expect(error.code).to.be.ok
298
+ }
299
+ })
300
+
301
+ it("redis.v20180412.AddReplicationInstance", async function () {
302
+ try {
303
+ const data = await client.AddReplicationInstance({})
294
304
  expect(data).to.be.ok
295
305
  } catch(error) {
296
306
  expect(error.requestId).to.be.ok
@@ -318,9 +328,9 @@ it("redis.v20180412.DisableReplicaReadonly", async function () {
318
328
  }
319
329
  })
320
330
 
321
- it("redis.v20180412.DescribeAutoBackupConfig", async function () {
331
+ it("redis.v20180412.DescribeInstanceDTSInfo", async function () {
322
332
  try {
323
- const data = await client.DescribeAutoBackupConfig({})
333
+ const data = await client.DescribeInstanceDTSInfo({})
324
334
  expect(data).to.be.ok
325
335
  } catch(error) {
326
336
  expect(error.requestId).to.be.ok
@@ -328,9 +338,9 @@ it("redis.v20180412.DescribeAutoBackupConfig", async function () {
328
338
  }
329
339
  })
330
340
 
331
- it("redis.v20180412.ModifyNetworkConfig", async function () {
341
+ it("redis.v20180412.InquiryPriceUpgradeInstance", async function () {
332
342
  try {
333
- const data = await client.ModifyNetworkConfig({})
343
+ const data = await client.InquiryPriceUpgradeInstance({})
334
344
  expect(data).to.be.ok
335
345
  } catch(error) {
336
346
  expect(error.requestId).to.be.ok
@@ -338,9 +348,9 @@ it("redis.v20180412.ModifyNetworkConfig", async function () {
338
348
  }
339
349
  })
340
350
 
341
- it("redis.v20180412.CreateReplicationGroup", async function () {
351
+ it("redis.v20180412.RenewInstance", async function () {
342
352
  try {
343
- const data = await client.CreateReplicationGroup({})
353
+ const data = await client.RenewInstance({})
344
354
  expect(data).to.be.ok
345
355
  } catch(error) {
346
356
  expect(error.requestId).to.be.ok
@@ -348,9 +358,9 @@ it("redis.v20180412.CreateReplicationGroup", async function () {
348
358
  }
349
359
  })
350
360
 
351
- it("redis.v20180412.DescribeInstanceMonitorSIP", async function () {
361
+ it("redis.v20180412.DescribeBackupUrl", async function () {
352
362
  try {
353
- const data = await client.DescribeInstanceMonitorSIP({})
363
+ const data = await client.DescribeBackupUrl({})
354
364
  expect(data).to.be.ok
355
365
  } catch(error) {
356
366
  expect(error.requestId).to.be.ok
@@ -358,9 +368,9 @@ it("redis.v20180412.DescribeInstanceMonitorSIP", async function () {
358
368
  }
359
369
  })
360
370
 
361
- it("redis.v20180412.ClearInstance", async function () {
371
+ it("redis.v20180412.DescribeProjectSecurityGroups", async function () {
362
372
  try {
363
- const data = await client.ClearInstance({})
373
+ const data = await client.DescribeProjectSecurityGroups({})
364
374
  expect(data).to.be.ok
365
375
  } catch(error) {
366
376
  expect(error.requestId).to.be.ok
@@ -368,9 +378,9 @@ it("redis.v20180412.ClearInstance", async function () {
368
378
  }
369
379
  })
370
380
 
371
- it("redis.v20180412.ModifyInstanceAccount", async function () {
381
+ it("redis.v20180412.DescribeTendisSlowLog", async function () {
372
382
  try {
373
- const data = await client.ModifyInstanceAccount({})
383
+ const data = await client.DescribeTendisSlowLog({})
374
384
  expect(data).to.be.ok
375
385
  } catch(error) {
376
386
  expect(error.requestId).to.be.ok
@@ -378,9 +388,9 @@ it("redis.v20180412.ModifyInstanceAccount", async function () {
378
388
  }
379
389
  })
380
390
 
381
- it("redis.v20180412.UpgradeInstanceVersion", async function () {
391
+ it("redis.v20180412.ModifyParamTemplate", async function () {
382
392
  try {
383
- const data = await client.UpgradeInstanceVersion({})
393
+ const data = await client.ModifyParamTemplate({})
384
394
  expect(data).to.be.ok
385
395
  } catch(error) {
386
396
  expect(error.requestId).to.be.ok
@@ -388,9 +398,9 @@ it("redis.v20180412.UpgradeInstanceVersion", async function () {
388
398
  }
389
399
  })
390
400
 
391
- it("redis.v20180412.InquiryPriceRenewInstance", async function () {
401
+ it("redis.v20180412.InquiryPriceCreateInstance", async function () {
392
402
  try {
393
- const data = await client.InquiryPriceRenewInstance({})
403
+ const data = await client.InquiryPriceCreateInstance({})
394
404
  expect(data).to.be.ok
395
405
  } catch(error) {
396
406
  expect(error.requestId).to.be.ok
@@ -398,9 +408,9 @@ it("redis.v20180412.InquiryPriceRenewInstance", async function () {
398
408
  }
399
409
  })
400
410
 
401
- it("redis.v20180412.InquiryPriceUpgradeInstance", async function () {
411
+ it("redis.v20180412.DescribeInstanceParams", async function () {
402
412
  try {
403
- const data = await client.InquiryPriceUpgradeInstance({})
413
+ const data = await client.DescribeInstanceParams({})
404
414
  expect(data).to.be.ok
405
415
  } catch(error) {
406
416
  expect(error.requestId).to.be.ok
@@ -408,9 +418,9 @@ it("redis.v20180412.InquiryPriceUpgradeInstance", async function () {
408
418
  }
409
419
  })
410
420
 
411
- it("redis.v20180412.DescribeProjectSecurityGroup", async function () {
421
+ it("redis.v20180412.DescribeInstanceMonitorBigKeyTypeDist", async function () {
412
422
  try {
413
- const data = await client.DescribeProjectSecurityGroup({})
423
+ const data = await client.DescribeInstanceMonitorBigKeyTypeDist({})
414
424
  expect(data).to.be.ok
415
425
  } catch(error) {
416
426
  expect(error.requestId).to.be.ok
@@ -418,9 +428,9 @@ it("redis.v20180412.DescribeProjectSecurityGroup", async function () {
418
428
  }
419
429
  })
420
430
 
421
- it("redis.v20180412.DescribeInstanceMonitorHotKey", async function () {
431
+ it("redis.v20180412.ReleaseWanAddress", async function () {
422
432
  try {
423
- const data = await client.DescribeInstanceMonitorHotKey({})
433
+ const data = await client.ReleaseWanAddress({})
424
434
  expect(data).to.be.ok
425
435
  } catch(error) {
426
436
  expect(error.requestId).to.be.ok
@@ -428,9 +438,9 @@ it("redis.v20180412.DescribeInstanceMonitorHotKey", async function () {
428
438
  }
429
439
  })
430
440
 
431
- it("redis.v20180412.DescribeTaskInfo", async function () {
441
+ it("redis.v20180412.DisassociateSecurityGroups", async function () {
432
442
  try {
433
- const data = await client.DescribeTaskInfo({})
443
+ const data = await client.DisassociateSecurityGroups({})
434
444
  expect(data).to.be.ok
435
445
  } catch(error) {
436
446
  expect(error.requestId).to.be.ok
@@ -438,9 +448,9 @@ it("redis.v20180412.DescribeTaskInfo", async function () {
438
448
  }
439
449
  })
440
450
 
441
- it("redis.v20180412.DescribeBackupUrl", async function () {
451
+ it("redis.v20180412.ManualBackupInstance", async function () {
442
452
  try {
443
- const data = await client.DescribeBackupUrl({})
453
+ const data = await client.ManualBackupInstance({})
444
454
  expect(data).to.be.ok
445
455
  } catch(error) {
446
456
  expect(error.requestId).to.be.ok
@@ -448,9 +458,9 @@ it("redis.v20180412.DescribeBackupUrl", async function () {
448
458
  }
449
459
  })
450
460
 
451
- it("redis.v20180412.DescribeProxySlowLog", async function () {
461
+ it("redis.v20180412.SwitchProxy", async function () {
452
462
  try {
453
- const data = await client.DescribeProxySlowLog({})
463
+ const data = await client.SwitchProxy({})
454
464
  expect(data).to.be.ok
455
465
  } catch(error) {
456
466
  expect(error.requestId).to.be.ok
@@ -458,9 +468,9 @@ it("redis.v20180412.DescribeProxySlowLog", async function () {
458
468
  }
459
469
  })
460
470
 
461
- it("redis.v20180412.DescribeProjectSecurityGroups", async function () {
471
+ it("redis.v20180412.RestoreInstance", async function () {
462
472
  try {
463
- const data = await client.DescribeProjectSecurityGroups({})
473
+ const data = await client.RestoreInstance({})
464
474
  expect(data).to.be.ok
465
475
  } catch(error) {
466
476
  expect(error.requestId).to.be.ok
@@ -468,9 +478,9 @@ it("redis.v20180412.DescribeProjectSecurityGroups", async function () {
468
478
  }
469
479
  })
470
480
 
471
- it("redis.v20180412.DescribeTendisSlowLog", async function () {
481
+ it("redis.v20180412.DescribeInstanceParamRecords", async function () {
472
482
  try {
473
- const data = await client.DescribeTendisSlowLog({})
483
+ const data = await client.DescribeInstanceParamRecords({})
474
484
  expect(data).to.be.ok
475
485
  } catch(error) {
476
486
  expect(error.requestId).to.be.ok
@@ -478,9 +488,9 @@ it("redis.v20180412.DescribeTendisSlowLog", async function () {
478
488
  }
479
489
  })
480
490
 
481
- it("redis.v20180412.AssociateSecurityGroups", async function () {
491
+ it("redis.v20180412.DescribeParamTemplateInfo", async function () {
482
492
  try {
483
- const data = await client.AssociateSecurityGroups({})
493
+ const data = await client.DescribeParamTemplateInfo({})
484
494
  expect(data).to.be.ok
485
495
  } catch(error) {
486
496
  expect(error.requestId).to.be.ok
@@ -488,9 +498,9 @@ it("redis.v20180412.AssociateSecurityGroups", async function () {
488
498
  }
489
499
  })
490
500
 
491
- it("redis.v20180412.UpgradeProxyVersion", async function () {
501
+ it("redis.v20180412.DestroyPostpaidInstance", async function () {
492
502
  try {
493
- const data = await client.UpgradeProxyVersion({})
503
+ const data = await client.DestroyPostpaidInstance({})
494
504
  expect(data).to.be.ok
495
505
  } catch(error) {
496
506
  expect(error.requestId).to.be.ok
@@ -498,9 +508,9 @@ it("redis.v20180412.UpgradeProxyVersion", async function () {
498
508
  }
499
509
  })
500
510
 
501
- it("redis.v20180412.ModifyInstanceParams", async function () {
511
+ it("redis.v20180412.DescribeInstanceMonitorTookDist", async function () {
502
512
  try {
503
- const data = await client.ModifyInstanceParams({})
513
+ const data = await client.DescribeInstanceMonitorTookDist({})
504
514
  expect(data).to.be.ok
505
515
  } catch(error) {
506
516
  expect(error.requestId).to.be.ok
@@ -508,9 +518,9 @@ it("redis.v20180412.ModifyInstanceParams", async function () {
508
518
  }
509
519
  })
510
520
 
511
- it("redis.v20180412.DescribeInstanceDealDetail", async function () {
521
+ it("redis.v20180412.DescribeParamTemplates", async function () {
512
522
  try {
513
- const data = await client.DescribeInstanceDealDetail({})
523
+ const data = await client.DescribeParamTemplates({})
514
524
  expect(data).to.be.ok
515
525
  } catch(error) {
516
526
  expect(error.requestId).to.be.ok
@@ -518,9 +528,9 @@ it("redis.v20180412.DescribeInstanceDealDetail", async function () {
518
528
  }
519
529
  })
520
530
 
521
- it("redis.v20180412.ModifyParamTemplate", async function () {
531
+ it("redis.v20180412.DescribeInstanceBackups", async function () {
522
532
  try {
523
- const data = await client.ModifyParamTemplate({})
533
+ const data = await client.DescribeInstanceBackups({})
524
534
  expect(data).to.be.ok
525
535
  } catch(error) {
526
536
  expect(error.requestId).to.be.ok
@@ -528,9 +538,9 @@ it("redis.v20180412.ModifyParamTemplate", async function () {
528
538
  }
529
539
  })
530
540
 
531
- it("redis.v20180412.InquiryPriceCreateInstance", async function () {
541
+ it("redis.v20180412.ResetPassword", async function () {
532
542
  try {
533
- const data = await client.InquiryPriceCreateInstance({})
543
+ const data = await client.ResetPassword({})
534
544
  expect(data).to.be.ok
535
545
  } catch(error) {
536
546
  expect(error.requestId).to.be.ok
@@ -538,9 +548,9 @@ it("redis.v20180412.InquiryPriceCreateInstance", async function () {
538
548
  }
539
549
  })
540
550
 
541
- it("redis.v20180412.ModifyDBInstanceSecurityGroups", async function () {
551
+ it("redis.v20180412.UpgradeSmallVersion", async function () {
542
552
  try {
543
- const data = await client.ModifyDBInstanceSecurityGroups({})
553
+ const data = await client.UpgradeSmallVersion({})
544
554
  expect(data).to.be.ok
545
555
  } catch(error) {
546
556
  expect(error.requestId).to.be.ok
@@ -548,9 +558,9 @@ it("redis.v20180412.ModifyDBInstanceSecurityGroups", async function () {
548
558
  }
549
559
  })
550
560
 
551
- it("redis.v20180412.DestroyPostpaidInstance", async function () {
561
+ it("redis.v20180412.CreateReplicationGroup", async function () {
552
562
  try {
553
- const data = await client.DestroyPostpaidInstance({})
563
+ const data = await client.CreateReplicationGroup({})
554
564
  expect(data).to.be.ok
555
565
  } catch(error) {
556
566
  expect(error.requestId).to.be.ok
@@ -558,9 +568,9 @@ it("redis.v20180412.DestroyPostpaidInstance", async function () {
558
568
  }
559
569
  })
560
570
 
561
- it("redis.v20180412.DescribeInstanceMonitorBigKey", async function () {
571
+ it("redis.v20180412.DescribeInstanceMonitorSIP", async function () {
562
572
  try {
563
- const data = await client.DescribeInstanceMonitorBigKey({})
573
+ const data = await client.DescribeInstanceMonitorSIP({})
564
574
  expect(data).to.be.ok
565
575
  } catch(error) {
566
576
  expect(error.requestId).to.be.ok
@@ -568,9 +578,9 @@ it("redis.v20180412.DescribeInstanceMonitorBigKey", async function () {
568
578
  }
569
579
  })
570
580
 
571
- it("redis.v20180412.SwitchInstanceVip", async function () {
581
+ it("redis.v20180412.DescribeProjectSecurityGroup", async function () {
572
582
  try {
573
- const data = await client.SwitchInstanceVip({})
583
+ const data = await client.DescribeProjectSecurityGroup({})
574
584
  expect(data).to.be.ok
575
585
  } catch(error) {
576
586
  expect(error.requestId).to.be.ok
@@ -578,9 +588,9 @@ it("redis.v20180412.SwitchInstanceVip", async function () {
578
588
  }
579
589
  })
580
590
 
581
- it("redis.v20180412.DescribeInstanceSecurityGroup", async function () {
591
+ it("redis.v20180412.DescribeInstanceMonitorHotKey", async function () {
582
592
  try {
583
- const data = await client.DescribeInstanceSecurityGroup({})
593
+ const data = await client.DescribeInstanceMonitorHotKey({})
584
594
  expect(data).to.be.ok
585
595
  } catch(error) {
586
596
  expect(error.requestId).to.be.ok
@@ -588,9 +598,9 @@ it("redis.v20180412.DescribeInstanceSecurityGroup", async function () {
588
598
  }
589
599
  })
590
600
 
591
- it("redis.v20180412.DescribeInstanceMonitorBigKeyTypeDist", async function () {
601
+ it("redis.v20180412.ModfiyInstancePassword", async function () {
592
602
  try {
593
- const data = await client.DescribeInstanceMonitorBigKeyTypeDist({})
603
+ const data = await client.ModfiyInstancePassword({})
594
604
  expect(data).to.be.ok
595
605
  } catch(error) {
596
606
  expect(error.requestId).to.be.ok
@@ -598,9 +608,9 @@ it("redis.v20180412.DescribeInstanceMonitorBigKeyTypeDist", async function () {
598
608
  }
599
609
  })
600
610
 
601
- it("redis.v20180412.ChangeMasterInstance", async function () {
611
+ it("redis.v20180412.EnableReplicaReadonly", async function () {
602
612
  try {
603
- const data = await client.ChangeMasterInstance({})
613
+ const data = await client.EnableReplicaReadonly({})
604
614
  expect(data).to.be.ok
605
615
  } catch(error) {
606
616
  expect(error.requestId).to.be.ok
@@ -608,9 +618,19 @@ it("redis.v20180412.ChangeMasterInstance", async function () {
608
618
  }
609
619
  })
610
620
 
611
- it("redis.v20180412.ResetPassword", async function () {
621
+ it("redis.v20180412.AssociateSecurityGroups", async function () {
612
622
  try {
613
- const data = await client.ResetPassword({})
623
+ const data = await client.AssociateSecurityGroups({})
624
+ expect(data).to.be.ok
625
+ } catch(error) {
626
+ expect(error.requestId).to.be.ok
627
+ expect(error.code).to.be.ok
628
+ }
629
+ })
630
+
631
+ it("redis.v20180412.DescribeInstanceMonitorBigKey", async function () {
632
+ try {
633
+ const data = await client.DescribeInstanceMonitorBigKey({})
614
634
  expect(data).to.be.ok
615
635
  } catch(error) {
616
636
  expect(error.requestId).to.be.ok
@@ -628,9 +648,9 @@ it("redis.v20180412.KillMasterGroup", async function () {
628
648
  }
629
649
  })
630
650
 
631
- it("redis.v20180412.ModifyConnectionConfig", async function () {
651
+ it("redis.v20180412.DescribeCommonDBInstances", async function () {
632
652
  try {
633
- const data = await client.ModifyConnectionConfig({})
653
+ const data = await client.DescribeCommonDBInstances({})
634
654
  expect(data).to.be.ok
635
655
  } catch(error) {
636
656
  expect(error.requestId).to.be.ok
@@ -638,9 +658,9 @@ it("redis.v20180412.ModifyConnectionConfig", async function () {
638
658
  }
639
659
  })
640
660
 
641
- it("redis.v20180412.UpgradeVersionToMultiAvailabilityZones", async function () {
661
+ it("redis.v20180412.DescribeSlowLog", async function () {
642
662
  try {
643
- const data = await client.UpgradeVersionToMultiAvailabilityZones({})
663
+ const data = await client.DescribeSlowLog({})
644
664
  expect(data).to.be.ok
645
665
  } catch(error) {
646
666
  expect(error.requestId).to.be.ok
@@ -648,9 +668,9 @@ it("redis.v20180412.UpgradeVersionToMultiAvailabilityZones", async function () {
648
668
  }
649
669
  })
650
670
 
651
- it("redis.v20180412.DescribeCommonDBInstances", async function () {
671
+ it("redis.v20180412.DescribeInstanceZoneInfo", async function () {
652
672
  try {
653
- const data = await client.DescribeCommonDBInstances({})
673
+ const data = await client.DescribeInstanceZoneInfo({})
654
674
  expect(data).to.be.ok
655
675
  } catch(error) {
656
676
  expect(error.requestId).to.be.ok
@@ -658,9 +678,9 @@ it("redis.v20180412.DescribeCommonDBInstances", async function () {
658
678
  }
659
679
  })
660
680
 
661
- it("redis.v20180412.DescribeProductInfo", async function () {
681
+ it("redis.v20180412.SwitchInstanceVip", async function () {
662
682
  try {
663
- const data = await client.DescribeProductInfo({})
683
+ const data = await client.SwitchInstanceVip({})
664
684
  expect(data).to.be.ok
665
685
  } catch(error) {
666
686
  expect(error.requestId).to.be.ok
@@ -668,9 +688,9 @@ it("redis.v20180412.DescribeProductInfo", async function () {
668
688
  }
669
689
  })
670
690
 
671
- it("redis.v20180412.RenewInstance", async function () {
691
+ it("redis.v20180412.DescribeReplicationGroup", async function () {
672
692
  try {
673
- const data = await client.RenewInstance({})
693
+ const data = await client.DescribeReplicationGroup({})
674
694
  expect(data).to.be.ok
675
695
  } catch(error) {
676
696
  expect(error.requestId).to.be.ok
@@ -678,9 +698,9 @@ it("redis.v20180412.RenewInstance", async function () {
678
698
  }
679
699
  })
680
700
 
681
- it("redis.v20180412.UpgradeSmallVersion", async function () {
701
+ it("redis.v20180412.InquiryPriceRenewInstance", async function () {
682
702
  try {
683
- const data = await client.UpgradeSmallVersion({})
703
+ const data = await client.InquiryPriceRenewInstance({})
684
704
  expect(data).to.be.ok
685
705
  } catch(error) {
686
706
  expect(error.requestId).to.be.ok
@@ -688,9 +708,9 @@ it("redis.v20180412.UpgradeSmallVersion", async function () {
688
708
  }
689
709
  })
690
710
 
691
- it("redis.v20180412.ManualBackupInstance", async function () {
711
+ it("redis.v20180412.ModifyMaintenanceWindow", async function () {
692
712
  try {
693
- const data = await client.ManualBackupInstance({})
713
+ const data = await client.ModifyMaintenanceWindow({})
694
714
  expect(data).to.be.ok
695
715
  } catch(error) {
696
716
  expect(error.requestId).to.be.ok
@@ -698,9 +718,9 @@ it("redis.v20180412.ManualBackupInstance", async function () {
698
718
  }
699
719
  })
700
720
 
701
- it("redis.v20180412.ModfiyInstancePassword", async function () {
721
+ it("redis.v20180412.ModifyNetworkConfig", async function () {
702
722
  try {
703
- const data = await client.ModfiyInstancePassword({})
723
+ const data = await client.ModifyNetworkConfig({})
704
724
  expect(data).to.be.ok
705
725
  } catch(error) {
706
726
  expect(error.requestId).to.be.ok
@@ -708,9 +728,9 @@ it("redis.v20180412.ModfiyInstancePassword", async function () {
708
728
  }
709
729
  })
710
730
 
711
- it("redis.v20180412.DescribeDBSecurityGroups", async function () {
731
+ it("redis.v20180412.DescribeInstanceShards", async function () {
712
732
  try {
713
- const data = await client.DescribeDBSecurityGroups({})
733
+ const data = await client.DescribeInstanceShards({})
714
734
  expect(data).to.be.ok
715
735
  } catch(error) {
716
736
  expect(error.requestId).to.be.ok
@@ -718,9 +738,9 @@ it("redis.v20180412.DescribeDBSecurityGroups", async function () {
718
738
  }
719
739
  })
720
740
 
721
- it("redis.v20180412.DescribeInstanceParams", async function () {
741
+ it("redis.v20180412.DestroyPrepaidInstance", async function () {
722
742
  try {
723
- const data = await client.DescribeInstanceParams({})
743
+ const data = await client.DestroyPrepaidInstance({})
724
744
  expect(data).to.be.ok
725
745
  } catch(error) {
726
746
  expect(error.requestId).to.be.ok
@@ -728,9 +748,9 @@ it("redis.v20180412.DescribeInstanceParams", async function () {
728
748
  }
729
749
  })
730
750
 
731
- it("redis.v20180412.ApplyParamsTemplate", async function () {
751
+ it("redis.v20180412.DescribeInstances", async function () {
732
752
  try {
733
- const data = await client.ApplyParamsTemplate({})
753
+ const data = await client.DescribeInstances({})
734
754
  expect(data).to.be.ok
735
755
  } catch(error) {
736
756
  expect(error.requestId).to.be.ok
@@ -738,9 +758,9 @@ it("redis.v20180412.ApplyParamsTemplate", async function () {
738
758
  }
739
759
  })
740
760
 
741
- it("redis.v20180412.DestroyPrepaidInstance", async function () {
761
+ it("redis.v20180412.OpenSSL", async function () {
742
762
  try {
743
- const data = await client.DestroyPrepaidInstance({})
763
+ const data = await client.OpenSSL({})
744
764
  expect(data).to.be.ok
745
765
  } catch(error) {
746
766
  expect(error.requestId).to.be.ok
@@ -748,9 +768,9 @@ it("redis.v20180412.DestroyPrepaidInstance", async function () {
748
768
  }
749
769
  })
750
770
 
751
- it("redis.v20180412.DescribeInstanceParamRecords", async function () {
771
+ it("redis.v20180412.DescribeAutoBackupConfig", async function () {
752
772
  try {
753
- const data = await client.DescribeInstanceParamRecords({})
773
+ const data = await client.DescribeAutoBackupConfig({})
754
774
  expect(data).to.be.ok
755
775
  } catch(error) {
756
776
  expect(error.requestId).to.be.ok
@@ -758,9 +778,9 @@ it("redis.v20180412.DescribeInstanceParamRecords", async function () {
758
778
  }
759
779
  })
760
780
 
761
- it("redis.v20180412.CreateInstances", async function () {
781
+ it("redis.v20180412.StartupInstance", async function () {
762
782
  try {
763
- const data = await client.CreateInstances({})
783
+ const data = await client.StartupInstance({})
764
784
  expect(data).to.be.ok
765
785
  } catch(error) {
766
786
  expect(error.requestId).to.be.ok
@@ -768,9 +788,9 @@ it("redis.v20180412.CreateInstances", async function () {
768
788
  }
769
789
  })
770
790
 
771
- it("redis.v20180412.DescribeInstanceZoneInfo", async function () {
791
+ it("redis.v20180412.DescribeProxySlowLog", async function () {
772
792
  try {
773
- const data = await client.DescribeInstanceZoneInfo({})
793
+ const data = await client.DescribeProxySlowLog({})
774
794
  expect(data).to.be.ok
775
795
  } catch(error) {
776
796
  expect(error.requestId).to.be.ok
@@ -778,9 +798,9 @@ it("redis.v20180412.DescribeInstanceZoneInfo", async function () {
778
798
  }
779
799
  })
780
800
 
781
- it("redis.v20180412.AllocateWanAddress", async function () {
801
+ it("redis.v20180412.ChangeMasterInstance", async function () {
782
802
  try {
783
- const data = await client.AllocateWanAddress({})
803
+ const data = await client.ChangeMasterInstance({})
784
804
  expect(data).to.be.ok
785
805
  } catch(error) {
786
806
  expect(error.requestId).to.be.ok
@@ -788,9 +808,9 @@ it("redis.v20180412.AllocateWanAddress", async function () {
788
808
  }
789
809
  })
790
810
 
791
- it("redis.v20180412.DeleteInstanceAccount", async function () {
811
+ it("redis.v20180412.UpgradeInstance", async function () {
792
812
  try {
793
- const data = await client.DeleteInstanceAccount({})
813
+ const data = await client.UpgradeInstance({})
794
814
  expect(data).to.be.ok
795
815
  } catch(error) {
796
816
  expect(error.requestId).to.be.ok
@@ -798,9 +818,9 @@ it("redis.v20180412.DeleteInstanceAccount", async function () {
798
818
  }
799
819
  })
800
820
 
801
- it("redis.v20180412.DescribeInstanceAccount", async function () {
821
+ it("redis.v20180412.DescribeDBSecurityGroups", async function () {
802
822
  try {
803
- const data = await client.DescribeInstanceAccount({})
823
+ const data = await client.DescribeDBSecurityGroups({})
804
824
  expect(data).to.be.ok
805
825
  } catch(error) {
806
826
  expect(error.requestId).to.be.ok
@@ -808,9 +828,9 @@ it("redis.v20180412.DescribeInstanceAccount", async function () {
808
828
  }
809
829
  })
810
830
 
811
- it("redis.v20180412.DisassociateSecurityGroups", async function () {
831
+ it("redis.v20180412.ApplyParamsTemplate", async function () {
812
832
  try {
813
- const data = await client.DisassociateSecurityGroups({})
833
+ const data = await client.ApplyParamsTemplate({})
814
834
  expect(data).to.be.ok
815
835
  } catch(error) {
816
836
  expect(error.requestId).to.be.ok
@@ -818,9 +838,9 @@ it("redis.v20180412.DisassociateSecurityGroups", async function () {
818
838
  }
819
839
  })
820
840
 
821
- it("redis.v20180412.StartupInstance", async function () {
841
+ it("redis.v20180412.DescribeMaintenanceWindow", async function () {
822
842
  try {
823
- const data = await client.StartupInstance({})
843
+ const data = await client.DescribeMaintenanceWindow({})
824
844
  expect(data).to.be.ok
825
845
  } catch(error) {
826
846
  expect(error.requestId).to.be.ok
@@ -828,9 +848,9 @@ it("redis.v20180412.StartupInstance", async function () {
828
848
  }
829
849
  })
830
850
 
831
- it("redis.v20180412.ModifyInstance", async function () {
851
+ it("redis.v20180412.CreateInstances", async function () {
832
852
  try {
833
- const data = await client.ModifyInstance({})
853
+ const data = await client.CreateInstances({})
834
854
  expect(data).to.be.ok
835
855
  } catch(error) {
836
856
  expect(error.requestId).to.be.ok
@@ -838,9 +858,9 @@ it("redis.v20180412.ModifyInstance", async function () {
838
858
  }
839
859
  })
840
860
 
841
- it("redis.v20180412.DescribeInstanceMonitorTookDist", async function () {
861
+ it("redis.v20180412.DescribeInstanceDealDetail", async function () {
842
862
  try {
843
- const data = await client.DescribeInstanceMonitorTookDist({})
863
+ const data = await client.DescribeInstanceDealDetail({})
844
864
  expect(data).to.be.ok
845
865
  } catch(error) {
846
866
  expect(error.requestId).to.be.ok
@@ -848,9 +868,9 @@ it("redis.v20180412.DescribeInstanceMonitorTookDist", async function () {
848
868
  }
849
869
  })
850
870
 
851
- it("redis.v20180412.ChangeInstanceRole", async function () {
871
+ it("redis.v20180412.CloseSSL", async function () {
852
872
  try {
853
- const data = await client.ChangeInstanceRole({})
873
+ const data = await client.CloseSSL({})
854
874
  expect(data).to.be.ok
855
875
  } catch(error) {
856
876
  expect(error.requestId).to.be.ok