tencentcloud-sdk-nodejs 4.0.813 → 4.0.814
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.
- package/CHANGELOG.md +142 -0
- package/SERVICE_CHANGELOG.md +211 -140
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_models.ts +1 -1
- package/src/services/billing/v20180709/billing_models.ts +1 -1
- package/src/services/cme/v20191029/cme_models.ts +50 -50
- package/src/services/ims/v20200713/ims_models.ts +1 -1
- package/src/services/live/v20180801/live_models.ts +0 -4
- package/src/services/mongodb/v20190725/mongodb_client.ts +1 -1
- package/src/services/mongodb/v20190725/mongodb_models.ts +13 -5
- package/src/services/organization/v20181225/organization_models.ts +20 -20
- package/src/services/tione/v20191022/tione_models.ts +23 -23
- package/src/services/tse/v20201207/tse_client.ts +904 -478
- package/src/services/tse/v20201207/tse_models.ts +2677 -444
- package/src/services/vm/v20210922/vm_client.ts +1 -1
- package/src/services/vm/v20210922/vm_models.ts +2 -2
- package/src/services/waf/v20180125/waf_client.ts +3 -20
- package/src/services/waf/v20180125/waf_models.ts +36 -108
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +1 -1
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +50 -50
- package/tencentcloud/services/ims/v20200713/ims_models.d.ts +1 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +0 -4
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +13 -5
- package/tencentcloud/services/organization/v20181225/organization_models.d.ts +20 -20
- package/tencentcloud/services/tione/v20191022/tione_models.d.ts +23 -23
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +273 -137
- package/tencentcloud/services/tse/v20201207/tse_client.js +408 -204
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +2693 -546
- package/tencentcloud/services/vm/v20210922/vm_client.d.ts +1 -1
- package/tencentcloud/services/vm/v20210922/vm_client.js +1 -1
- package/tencentcloud/services/vm/v20210922/vm_models.d.ts +2 -2
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +1 -8
- package/tencentcloud/services/waf/v20180125/waf_client.js +0 -9
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +36 -104
- package/test/tse.v20201207.test.js +493 -153
- package/test/waf.v20180125.test.js +0 -10
|
@@ -18,9 +18,69 @@ const client = new tencentcloud.tse.v20201207.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("tse.v20201207.test.js", function () {
|
|
20
20
|
|
|
21
|
-
it("tse.v20201207.
|
|
21
|
+
it("tse.v20201207.DescribeOneCloudNativeAPIGatewayService", async function () {
|
|
22
22
|
try {
|
|
23
|
-
const data = await client.
|
|
23
|
+
const data = await client.DescribeOneCloudNativeAPIGatewayService({})
|
|
24
|
+
expect(data).to.be.ok
|
|
25
|
+
} catch(error) {
|
|
26
|
+
expect(error.requestId).to.be.ok
|
|
27
|
+
expect(error.code).to.be.ok
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
31
|
+
it("tse.v20201207.UpdateEngineInternetAccess", async function () {
|
|
32
|
+
try {
|
|
33
|
+
const data = await client.UpdateEngineInternetAccess({})
|
|
34
|
+
expect(data).to.be.ok
|
|
35
|
+
} catch(error) {
|
|
36
|
+
expect(error.requestId).to.be.ok
|
|
37
|
+
expect(error.code).to.be.ok
|
|
38
|
+
}
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayServiceRateLimit", async function () {
|
|
42
|
+
try {
|
|
43
|
+
const data = await client.DescribeCloudNativeAPIGatewayServiceRateLimit({})
|
|
44
|
+
expect(data).to.be.ok
|
|
45
|
+
} catch(error) {
|
|
46
|
+
expect(error.requestId).to.be.ok
|
|
47
|
+
expect(error.code).to.be.ok
|
|
48
|
+
}
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayPublicNetwork", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.DeleteCloudNativeAPIGatewayPublicNetwork({})
|
|
54
|
+
expect(data).to.be.ok
|
|
55
|
+
} catch(error) {
|
|
56
|
+
expect(error.requestId).to.be.ok
|
|
57
|
+
expect(error.code).to.be.ok
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
it("tse.v20201207.DescribeGovernanceAliases", async function () {
|
|
62
|
+
try {
|
|
63
|
+
const data = await client.DescribeGovernanceAliases({})
|
|
64
|
+
expect(data).to.be.ok
|
|
65
|
+
} catch(error) {
|
|
66
|
+
expect(error.requestId).to.be.ok
|
|
67
|
+
expect(error.code).to.be.ok
|
|
68
|
+
}
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
it("tse.v20201207.DeleteConfigFileGroup", async function () {
|
|
72
|
+
try {
|
|
73
|
+
const data = await client.DeleteConfigFileGroup({})
|
|
74
|
+
expect(data).to.be.ok
|
|
75
|
+
} catch(error) {
|
|
76
|
+
expect(error.requestId).to.be.ok
|
|
77
|
+
expect(error.code).to.be.ok
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
|
|
81
|
+
it("tse.v20201207.CreateConfigFileGroup", async function () {
|
|
82
|
+
try {
|
|
83
|
+
const data = await client.CreateConfigFileGroup({})
|
|
24
84
|
expect(data).to.be.ok
|
|
25
85
|
} catch(error) {
|
|
26
86
|
expect(error.requestId).to.be.ok
|
|
@@ -30,7 +90,287 @@ it("tse.v20201207.ModifyConsoleNetwork", async function () {
|
|
|
30
90
|
|
|
31
91
|
it("tse.v20201207.DeleteEngine", async function () {
|
|
32
92
|
try {
|
|
33
|
-
const data = await client.DeleteEngine({})
|
|
93
|
+
const data = await client.DeleteEngine({})
|
|
94
|
+
expect(data).to.be.ok
|
|
95
|
+
} catch(error) {
|
|
96
|
+
expect(error.requestId).to.be.ok
|
|
97
|
+
expect(error.code).to.be.ok
|
|
98
|
+
}
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
it("tse.v20201207.ModifyGovernanceServices", async function () {
|
|
102
|
+
try {
|
|
103
|
+
const data = await client.ModifyGovernanceServices({})
|
|
104
|
+
expect(data).to.be.ok
|
|
105
|
+
} catch(error) {
|
|
106
|
+
expect(error.requestId).to.be.ok
|
|
107
|
+
expect(error.code).to.be.ok
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
it("tse.v20201207.DescribeCloudNativeAPIGateways", async function () {
|
|
112
|
+
try {
|
|
113
|
+
const data = await client.DescribeCloudNativeAPIGateways({})
|
|
114
|
+
expect(data).to.be.ok
|
|
115
|
+
} catch(error) {
|
|
116
|
+
expect(error.requestId).to.be.ok
|
|
117
|
+
expect(error.code).to.be.ok
|
|
118
|
+
}
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayCertificate", async function () {
|
|
122
|
+
try {
|
|
123
|
+
const data = await client.CreateCloudNativeAPIGatewayCertificate({})
|
|
124
|
+
expect(data).to.be.ok
|
|
125
|
+
} catch(error) {
|
|
126
|
+
expect(error.requestId).to.be.ok
|
|
127
|
+
expect(error.code).to.be.ok
|
|
128
|
+
}
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayServices", async function () {
|
|
132
|
+
try {
|
|
133
|
+
const data = await client.DescribeCloudNativeAPIGatewayServices({})
|
|
134
|
+
expect(data).to.be.ok
|
|
135
|
+
} catch(error) {
|
|
136
|
+
expect(error.requestId).to.be.ok
|
|
137
|
+
expect(error.code).to.be.ok
|
|
138
|
+
}
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayRouteRateLimit", async function () {
|
|
142
|
+
try {
|
|
143
|
+
const data = await client.ModifyCloudNativeAPIGatewayRouteRateLimit({})
|
|
144
|
+
expect(data).to.be.ok
|
|
145
|
+
} catch(error) {
|
|
146
|
+
expect(error.requestId).to.be.ok
|
|
147
|
+
expect(error.code).to.be.ok
|
|
148
|
+
}
|
|
149
|
+
})
|
|
150
|
+
|
|
151
|
+
it("tse.v20201207.DeleteGovernanceAliases", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.DeleteGovernanceAliases({})
|
|
154
|
+
expect(data).to.be.ok
|
|
155
|
+
} catch(error) {
|
|
156
|
+
expect(error.requestId).to.be.ok
|
|
157
|
+
expect(error.code).to.be.ok
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
|
|
161
|
+
it("tse.v20201207.DescribeZookeeperReplicas", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.DescribeZookeeperReplicas({})
|
|
164
|
+
expect(data).to.be.ok
|
|
165
|
+
} catch(error) {
|
|
166
|
+
expect(error.requestId).to.be.ok
|
|
167
|
+
expect(error.code).to.be.ok
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
|
|
171
|
+
it("tse.v20201207.DeleteGovernanceInstances", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.DeleteGovernanceInstances({})
|
|
174
|
+
expect(data).to.be.ok
|
|
175
|
+
} catch(error) {
|
|
176
|
+
expect(error.requestId).to.be.ok
|
|
177
|
+
expect(error.code).to.be.ok
|
|
178
|
+
}
|
|
179
|
+
})
|
|
180
|
+
|
|
181
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayCanaryRule", async function () {
|
|
182
|
+
try {
|
|
183
|
+
const data = await client.CreateCloudNativeAPIGatewayCanaryRule({})
|
|
184
|
+
expect(data).to.be.ok
|
|
185
|
+
} catch(error) {
|
|
186
|
+
expect(error.requestId).to.be.ok
|
|
187
|
+
expect(error.code).to.be.ok
|
|
188
|
+
}
|
|
189
|
+
})
|
|
190
|
+
|
|
191
|
+
it("tse.v20201207.DescribeWafDomains", async function () {
|
|
192
|
+
try {
|
|
193
|
+
const data = await client.DescribeWafDomains({})
|
|
194
|
+
expect(data).to.be.ok
|
|
195
|
+
} catch(error) {
|
|
196
|
+
expect(error.requestId).to.be.ok
|
|
197
|
+
expect(error.code).to.be.ok
|
|
198
|
+
}
|
|
199
|
+
})
|
|
200
|
+
|
|
201
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayCertificateDetails", async function () {
|
|
202
|
+
try {
|
|
203
|
+
const data = await client.DescribeCloudNativeAPIGatewayCertificateDetails({})
|
|
204
|
+
expect(data).to.be.ok
|
|
205
|
+
} catch(error) {
|
|
206
|
+
expect(error.requestId).to.be.ok
|
|
207
|
+
expect(error.code).to.be.ok
|
|
208
|
+
}
|
|
209
|
+
})
|
|
210
|
+
|
|
211
|
+
it("tse.v20201207.DescribeAutoScalerResourceStrategies", async function () {
|
|
212
|
+
try {
|
|
213
|
+
const data = await client.DescribeAutoScalerResourceStrategies({})
|
|
214
|
+
expect(data).to.be.ok
|
|
215
|
+
} catch(error) {
|
|
216
|
+
expect(error.requestId).to.be.ok
|
|
217
|
+
expect(error.code).to.be.ok
|
|
218
|
+
}
|
|
219
|
+
})
|
|
220
|
+
|
|
221
|
+
it("tse.v20201207.ModifyNetworkBasicInfo", async function () {
|
|
222
|
+
try {
|
|
223
|
+
const data = await client.ModifyNetworkBasicInfo({})
|
|
224
|
+
expect(data).to.be.ok
|
|
225
|
+
} catch(error) {
|
|
226
|
+
expect(error.requestId).to.be.ok
|
|
227
|
+
expect(error.code).to.be.ok
|
|
228
|
+
}
|
|
229
|
+
})
|
|
230
|
+
|
|
231
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayCertificate", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.DeleteCloudNativeAPIGatewayCertificate({})
|
|
234
|
+
expect(data).to.be.ok
|
|
235
|
+
} catch(error) {
|
|
236
|
+
expect(error.requestId).to.be.ok
|
|
237
|
+
expect(error.code).to.be.ok
|
|
238
|
+
}
|
|
239
|
+
})
|
|
240
|
+
|
|
241
|
+
it("tse.v20201207.DescribeGovernanceServiceContracts", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DescribeGovernanceServiceContracts({})
|
|
244
|
+
expect(data).to.be.ok
|
|
245
|
+
} catch(error) {
|
|
246
|
+
expect(error.requestId).to.be.ok
|
|
247
|
+
expect(error.code).to.be.ok
|
|
248
|
+
}
|
|
249
|
+
})
|
|
250
|
+
|
|
251
|
+
it("tse.v20201207.UpdateCloudNativeAPIGatewayCertificateInfo", async function () {
|
|
252
|
+
try {
|
|
253
|
+
const data = await client.UpdateCloudNativeAPIGatewayCertificateInfo({})
|
|
254
|
+
expect(data).to.be.ok
|
|
255
|
+
} catch(error) {
|
|
256
|
+
expect(error.requestId).to.be.ok
|
|
257
|
+
expect(error.code).to.be.ok
|
|
258
|
+
}
|
|
259
|
+
})
|
|
260
|
+
|
|
261
|
+
it("tse.v20201207.DescribeAllConfigFileTemplates", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.DescribeAllConfigFileTemplates({})
|
|
264
|
+
expect(data).to.be.ok
|
|
265
|
+
} catch(error) {
|
|
266
|
+
expect(error.requestId).to.be.ok
|
|
267
|
+
expect(error.code).to.be.ok
|
|
268
|
+
}
|
|
269
|
+
})
|
|
270
|
+
|
|
271
|
+
it("tse.v20201207.CreateNativeGatewayServerGroup", async function () {
|
|
272
|
+
try {
|
|
273
|
+
const data = await client.CreateNativeGatewayServerGroup({})
|
|
274
|
+
expect(data).to.be.ok
|
|
275
|
+
} catch(error) {
|
|
276
|
+
expect(error.requestId).to.be.ok
|
|
277
|
+
expect(error.code).to.be.ok
|
|
278
|
+
}
|
|
279
|
+
})
|
|
280
|
+
|
|
281
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayServiceRateLimit", async function () {
|
|
282
|
+
try {
|
|
283
|
+
const data = await client.DeleteCloudNativeAPIGatewayServiceRateLimit({})
|
|
284
|
+
expect(data).to.be.ok
|
|
285
|
+
} catch(error) {
|
|
286
|
+
expect(error.requestId).to.be.ok
|
|
287
|
+
expect(error.code).to.be.ok
|
|
288
|
+
}
|
|
289
|
+
})
|
|
290
|
+
|
|
291
|
+
it("tse.v20201207.DescribeZookeeperServerInterfaces", async function () {
|
|
292
|
+
try {
|
|
293
|
+
const data = await client.DescribeZookeeperServerInterfaces({})
|
|
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("tse.v20201207.DeleteConfigFiles", async function () {
|
|
302
|
+
try {
|
|
303
|
+
const data = await client.DeleteConfigFiles({})
|
|
304
|
+
expect(data).to.be.ok
|
|
305
|
+
} catch(error) {
|
|
306
|
+
expect(error.requestId).to.be.ok
|
|
307
|
+
expect(error.code).to.be.ok
|
|
308
|
+
}
|
|
309
|
+
})
|
|
310
|
+
|
|
311
|
+
it("tse.v20201207.ModifyAutoScalerResourceStrategy", async function () {
|
|
312
|
+
try {
|
|
313
|
+
const data = await client.ModifyAutoScalerResourceStrategy({})
|
|
314
|
+
expect(data).to.be.ok
|
|
315
|
+
} catch(error) {
|
|
316
|
+
expect(error.requestId).to.be.ok
|
|
317
|
+
expect(error.code).to.be.ok
|
|
318
|
+
}
|
|
319
|
+
})
|
|
320
|
+
|
|
321
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayCertificate", async function () {
|
|
322
|
+
try {
|
|
323
|
+
const data = await client.ModifyCloudNativeAPIGatewayCertificate({})
|
|
324
|
+
expect(data).to.be.ok
|
|
325
|
+
} catch(error) {
|
|
326
|
+
expect(error.requestId).to.be.ok
|
|
327
|
+
expect(error.code).to.be.ok
|
|
328
|
+
}
|
|
329
|
+
})
|
|
330
|
+
|
|
331
|
+
it("tse.v20201207.PublishConfigFiles", async function () {
|
|
332
|
+
try {
|
|
333
|
+
const data = await client.PublishConfigFiles({})
|
|
334
|
+
expect(data).to.be.ok
|
|
335
|
+
} catch(error) {
|
|
336
|
+
expect(error.requestId).to.be.ok
|
|
337
|
+
expect(error.code).to.be.ok
|
|
338
|
+
}
|
|
339
|
+
})
|
|
340
|
+
|
|
341
|
+
it("tse.v20201207.DescribeConfigFile", async function () {
|
|
342
|
+
try {
|
|
343
|
+
const data = await client.DescribeConfigFile({})
|
|
344
|
+
expect(data).to.be.ok
|
|
345
|
+
} catch(error) {
|
|
346
|
+
expect(error.requestId).to.be.ok
|
|
347
|
+
expect(error.code).to.be.ok
|
|
348
|
+
}
|
|
349
|
+
})
|
|
350
|
+
|
|
351
|
+
it("tse.v20201207.DescribeConfigFileReleases", async function () {
|
|
352
|
+
try {
|
|
353
|
+
const data = await client.DescribeConfigFileReleases({})
|
|
354
|
+
expect(data).to.be.ok
|
|
355
|
+
} catch(error) {
|
|
356
|
+
expect(error.requestId).to.be.ok
|
|
357
|
+
expect(error.code).to.be.ok
|
|
358
|
+
}
|
|
359
|
+
})
|
|
360
|
+
|
|
361
|
+
it("tse.v20201207.CloseWafProtection", async function () {
|
|
362
|
+
try {
|
|
363
|
+
const data = await client.CloseWafProtection({})
|
|
364
|
+
expect(data).to.be.ok
|
|
365
|
+
} catch(error) {
|
|
366
|
+
expect(error.requestId).to.be.ok
|
|
367
|
+
expect(error.code).to.be.ok
|
|
368
|
+
}
|
|
369
|
+
})
|
|
370
|
+
|
|
371
|
+
it("tse.v20201207.CreateCloudNativeAPIGateway", async function () {
|
|
372
|
+
try {
|
|
373
|
+
const data = await client.CreateCloudNativeAPIGateway({})
|
|
34
374
|
expect(data).to.be.ok
|
|
35
375
|
} catch(error) {
|
|
36
376
|
expect(error.requestId).to.be.ok
|
|
@@ -38,9 +378,9 @@ it("tse.v20201207.DeleteEngine", async function () {
|
|
|
38
378
|
}
|
|
39
379
|
})
|
|
40
380
|
|
|
41
|
-
it("tse.v20201207.
|
|
381
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayRouteRateLimit", async function () {
|
|
42
382
|
try {
|
|
43
|
-
const data = await client.
|
|
383
|
+
const data = await client.DescribeCloudNativeAPIGatewayRouteRateLimit({})
|
|
44
384
|
expect(data).to.be.ok
|
|
45
385
|
} catch(error) {
|
|
46
386
|
expect(error.requestId).to.be.ok
|
|
@@ -48,9 +388,9 @@ it("tse.v20201207.DescribeUpstreamHealthCheckConfig", async function () {
|
|
|
48
388
|
}
|
|
49
389
|
})
|
|
50
390
|
|
|
51
|
-
it("tse.v20201207.
|
|
391
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayService", async function () {
|
|
52
392
|
try {
|
|
53
|
-
const data = await client.
|
|
393
|
+
const data = await client.ModifyCloudNativeAPIGatewayService({})
|
|
54
394
|
expect(data).to.be.ok
|
|
55
395
|
} catch(error) {
|
|
56
396
|
expect(error.requestId).to.be.ok
|
|
@@ -58,9 +398,9 @@ it("tse.v20201207.DescribeZookeeperReplicas", async function () {
|
|
|
58
398
|
}
|
|
59
399
|
})
|
|
60
400
|
|
|
61
|
-
it("tse.v20201207.
|
|
401
|
+
it("tse.v20201207.DescribeAutoScalerResourceStrategyBindingGroups", async function () {
|
|
62
402
|
try {
|
|
63
|
-
const data = await client.
|
|
403
|
+
const data = await client.DescribeAutoScalerResourceStrategyBindingGroups({})
|
|
64
404
|
expect(data).to.be.ok
|
|
65
405
|
} catch(error) {
|
|
66
406
|
expect(error.requestId).to.be.ok
|
|
@@ -68,9 +408,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayCanaryRule", async function () {
|
|
|
68
408
|
}
|
|
69
409
|
})
|
|
70
410
|
|
|
71
|
-
it("tse.v20201207.
|
|
411
|
+
it("tse.v20201207.DescribeConfigFileRelease", async function () {
|
|
72
412
|
try {
|
|
73
|
-
const data = await client.
|
|
413
|
+
const data = await client.DescribeConfigFileRelease({})
|
|
74
414
|
expect(data).to.be.ok
|
|
75
415
|
} catch(error) {
|
|
76
416
|
expect(error.requestId).to.be.ok
|
|
@@ -78,9 +418,9 @@ it("tse.v20201207.ModifyUpstreamNodeStatus", async function () {
|
|
|
78
418
|
}
|
|
79
419
|
})
|
|
80
420
|
|
|
81
|
-
it("tse.v20201207.
|
|
421
|
+
it("tse.v20201207.DescribeGovernanceNamespaces", async function () {
|
|
82
422
|
try {
|
|
83
|
-
const data = await client.
|
|
423
|
+
const data = await client.DescribeGovernanceNamespaces({})
|
|
84
424
|
expect(data).to.be.ok
|
|
85
425
|
} catch(error) {
|
|
86
426
|
expect(error.requestId).to.be.ok
|
|
@@ -88,9 +428,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayServiceRateLimit", async function (
|
|
|
88
428
|
}
|
|
89
429
|
})
|
|
90
430
|
|
|
91
|
-
it("tse.v20201207.
|
|
431
|
+
it("tse.v20201207.UpdateUpstreamTargets", async function () {
|
|
92
432
|
try {
|
|
93
|
-
const data = await client.
|
|
433
|
+
const data = await client.UpdateUpstreamTargets({})
|
|
94
434
|
expect(data).to.be.ok
|
|
95
435
|
} catch(error) {
|
|
96
436
|
expect(error.requestId).to.be.ok
|
|
@@ -98,9 +438,9 @@ it("tse.v20201207.CreateWafDomains", async function () {
|
|
|
98
438
|
}
|
|
99
439
|
})
|
|
100
440
|
|
|
101
|
-
it("tse.v20201207.
|
|
441
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayRoute", async function () {
|
|
102
442
|
try {
|
|
103
|
-
const data = await client.
|
|
443
|
+
const data = await client.CreateCloudNativeAPIGatewayRoute({})
|
|
104
444
|
expect(data).to.be.ok
|
|
105
445
|
} catch(error) {
|
|
106
446
|
expect(error.requestId).to.be.ok
|
|
@@ -108,9 +448,9 @@ it("tse.v20201207.DescribeZookeeperServerInterfaces", async function () {
|
|
|
108
448
|
}
|
|
109
449
|
})
|
|
110
450
|
|
|
111
|
-
it("tse.v20201207.
|
|
451
|
+
it("tse.v20201207.CreateGovernanceInstances", async function () {
|
|
112
452
|
try {
|
|
113
|
-
const data = await client.
|
|
453
|
+
const data = await client.CreateGovernanceInstances({})
|
|
114
454
|
expect(data).to.be.ok
|
|
115
455
|
} catch(error) {
|
|
116
456
|
expect(error.requestId).to.be.ok
|
|
@@ -118,9 +458,9 @@ it("tse.v20201207.DescribeOneCloudNativeAPIGatewayService", async function () {
|
|
|
118
458
|
}
|
|
119
459
|
})
|
|
120
460
|
|
|
121
|
-
it("tse.v20201207.
|
|
461
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayRouteRateLimit", async function () {
|
|
122
462
|
try {
|
|
123
|
-
const data = await client.
|
|
463
|
+
const data = await client.DeleteCloudNativeAPIGatewayRouteRateLimit({})
|
|
124
464
|
expect(data).to.be.ok
|
|
125
465
|
} catch(error) {
|
|
126
466
|
expect(error.requestId).to.be.ok
|
|
@@ -128,9 +468,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayUpstream", async function () {
|
|
|
128
468
|
}
|
|
129
469
|
})
|
|
130
470
|
|
|
131
|
-
it("tse.v20201207.
|
|
471
|
+
it("tse.v20201207.DeleteConfigFileReleases", async function () {
|
|
132
472
|
try {
|
|
133
|
-
const data = await client.
|
|
473
|
+
const data = await client.DeleteConfigFileReleases({})
|
|
134
474
|
expect(data).to.be.ok
|
|
135
475
|
} catch(error) {
|
|
136
476
|
expect(error.requestId).to.be.ok
|
|
@@ -138,9 +478,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayCertificates", async function ()
|
|
|
138
478
|
}
|
|
139
479
|
})
|
|
140
480
|
|
|
141
|
-
it("tse.v20201207.
|
|
481
|
+
it("tse.v20201207.DeleteAutoScalerResourceStrategy", async function () {
|
|
142
482
|
try {
|
|
143
|
-
const data = await client.
|
|
483
|
+
const data = await client.DeleteAutoScalerResourceStrategy({})
|
|
144
484
|
expect(data).to.be.ok
|
|
145
485
|
} catch(error) {
|
|
146
486
|
expect(error.requestId).to.be.ok
|
|
@@ -148,9 +488,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayServiceRateLimit", async function (
|
|
|
148
488
|
}
|
|
149
489
|
})
|
|
150
490
|
|
|
151
|
-
it("tse.v20201207.
|
|
491
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayRoute", async function () {
|
|
152
492
|
try {
|
|
153
|
-
const data = await client.
|
|
493
|
+
const data = await client.ModifyCloudNativeAPIGatewayRoute({})
|
|
154
494
|
expect(data).to.be.ok
|
|
155
495
|
} catch(error) {
|
|
156
496
|
expect(error.requestId).to.be.ok
|
|
@@ -158,9 +498,9 @@ it("tse.v20201207.CreateEngine", async function () {
|
|
|
158
498
|
}
|
|
159
499
|
})
|
|
160
500
|
|
|
161
|
-
it("tse.v20201207.
|
|
501
|
+
it("tse.v20201207.DeleteNativeGatewayServerGroup", async function () {
|
|
162
502
|
try {
|
|
163
|
-
const data = await client.
|
|
503
|
+
const data = await client.DeleteNativeGatewayServerGroup({})
|
|
164
504
|
expect(data).to.be.ok
|
|
165
505
|
} catch(error) {
|
|
166
506
|
expect(error.requestId).to.be.ok
|
|
@@ -168,9 +508,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGateway", async function () {
|
|
|
168
508
|
}
|
|
169
509
|
})
|
|
170
510
|
|
|
171
|
-
it("tse.v20201207.
|
|
511
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayPorts", async function () {
|
|
172
512
|
try {
|
|
173
|
-
const data = await client.
|
|
513
|
+
const data = await client.DescribeCloudNativeAPIGatewayPorts({})
|
|
174
514
|
expect(data).to.be.ok
|
|
175
515
|
} catch(error) {
|
|
176
516
|
expect(error.requestId).to.be.ok
|
|
@@ -178,9 +518,9 @@ it("tse.v20201207.UnbindAutoScalerResourceStrategyFromGroups", async function ()
|
|
|
178
518
|
}
|
|
179
519
|
})
|
|
180
520
|
|
|
181
|
-
it("tse.v20201207.
|
|
521
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayCanaryRules", async function () {
|
|
182
522
|
try {
|
|
183
|
-
const data = await client.
|
|
523
|
+
const data = await client.DescribeCloudNativeAPIGatewayCanaryRules({})
|
|
184
524
|
expect(data).to.be.ok
|
|
185
525
|
} catch(error) {
|
|
186
526
|
expect(error.requestId).to.be.ok
|
|
@@ -188,9 +528,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayPublicNetwork", async function () {
|
|
|
188
528
|
}
|
|
189
529
|
})
|
|
190
530
|
|
|
191
|
-
it("tse.v20201207.
|
|
531
|
+
it("tse.v20201207.DescribeSREInstanceAccessAddress", async function () {
|
|
192
532
|
try {
|
|
193
|
-
const data = await client.
|
|
533
|
+
const data = await client.DescribeSREInstanceAccessAddress({})
|
|
194
534
|
expect(data).to.be.ok
|
|
195
535
|
} catch(error) {
|
|
196
536
|
expect(error.requestId).to.be.ok
|
|
@@ -198,9 +538,9 @@ it("tse.v20201207.DeleteWafDomains", async function () {
|
|
|
198
538
|
}
|
|
199
539
|
})
|
|
200
540
|
|
|
201
|
-
it("tse.v20201207.
|
|
541
|
+
it("tse.v20201207.ModifyConsoleNetwork", async function () {
|
|
202
542
|
try {
|
|
203
|
-
const data = await client.
|
|
543
|
+
const data = await client.ModifyConsoleNetwork({})
|
|
204
544
|
expect(data).to.be.ok
|
|
205
545
|
} catch(error) {
|
|
206
546
|
expect(error.requestId).to.be.ok
|
|
@@ -208,9 +548,9 @@ it("tse.v20201207.BindAutoScalerResourceStrategyToGroups", async function () {
|
|
|
208
548
|
}
|
|
209
549
|
})
|
|
210
550
|
|
|
211
|
-
it("tse.v20201207.
|
|
551
|
+
it("tse.v20201207.DescribeNacosReplicas", async function () {
|
|
212
552
|
try {
|
|
213
|
-
const data = await client.
|
|
553
|
+
const data = await client.DescribeNacosReplicas({})
|
|
214
554
|
expect(data).to.be.ok
|
|
215
555
|
} catch(error) {
|
|
216
556
|
expect(error.requestId).to.be.ok
|
|
@@ -218,9 +558,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayService", async function () {
|
|
|
218
558
|
}
|
|
219
559
|
})
|
|
220
560
|
|
|
221
|
-
it("tse.v20201207.
|
|
561
|
+
it("tse.v20201207.DescribeUpstreamHealthCheckConfig", async function () {
|
|
222
562
|
try {
|
|
223
|
-
const data = await client.
|
|
563
|
+
const data = await client.DescribeUpstreamHealthCheckConfig({})
|
|
224
564
|
expect(data).to.be.ok
|
|
225
565
|
} catch(error) {
|
|
226
566
|
expect(error.requestId).to.be.ok
|
|
@@ -228,9 +568,9 @@ it("tse.v20201207.UpdateUpstreamHealthCheckConfig", async function () {
|
|
|
228
568
|
}
|
|
229
569
|
})
|
|
230
570
|
|
|
231
|
-
it("tse.v20201207.
|
|
571
|
+
it("tse.v20201207.ModifyNativeGatewayServerGroup", async function () {
|
|
232
572
|
try {
|
|
233
|
-
const data = await client.
|
|
573
|
+
const data = await client.ModifyNativeGatewayServerGroup({})
|
|
234
574
|
expect(data).to.be.ok
|
|
235
575
|
} catch(error) {
|
|
236
576
|
expect(error.requestId).to.be.ok
|
|
@@ -238,9 +578,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayService", async function () {
|
|
|
238
578
|
}
|
|
239
579
|
})
|
|
240
580
|
|
|
241
|
-
it("tse.v20201207.
|
|
581
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayCertificates", async function () {
|
|
242
582
|
try {
|
|
243
|
-
const data = await client.
|
|
583
|
+
const data = await client.DescribeCloudNativeAPIGatewayCertificates({})
|
|
244
584
|
expect(data).to.be.ok
|
|
245
585
|
} catch(error) {
|
|
246
586
|
expect(error.requestId).to.be.ok
|
|
@@ -248,9 +588,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayRoutes", async function () {
|
|
|
248
588
|
}
|
|
249
589
|
})
|
|
250
590
|
|
|
251
|
-
it("tse.v20201207.
|
|
591
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayServiceRateLimit", async function () {
|
|
252
592
|
try {
|
|
253
|
-
const data = await client.
|
|
593
|
+
const data = await client.ModifyCloudNativeAPIGatewayServiceRateLimit({})
|
|
254
594
|
expect(data).to.be.ok
|
|
255
595
|
} catch(error) {
|
|
256
596
|
expect(error.requestId).to.be.ok
|
|
@@ -258,9 +598,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGateway", async function () {
|
|
|
258
598
|
}
|
|
259
599
|
})
|
|
260
600
|
|
|
261
|
-
it("tse.v20201207.
|
|
601
|
+
it("tse.v20201207.DeleteGovernanceServices", async function () {
|
|
262
602
|
try {
|
|
263
|
-
const data = await client.
|
|
603
|
+
const data = await client.DeleteGovernanceServices({})
|
|
264
604
|
expect(data).to.be.ok
|
|
265
605
|
} catch(error) {
|
|
266
606
|
expect(error.requestId).to.be.ok
|
|
@@ -268,9 +608,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayPorts", async function () {
|
|
|
268
608
|
}
|
|
269
609
|
})
|
|
270
610
|
|
|
271
|
-
it("tse.v20201207.
|
|
611
|
+
it("tse.v20201207.CreateGovernanceAlias", async function () {
|
|
272
612
|
try {
|
|
273
|
-
const data = await client.
|
|
613
|
+
const data = await client.CreateGovernanceAlias({})
|
|
274
614
|
expect(data).to.be.ok
|
|
275
615
|
} catch(error) {
|
|
276
616
|
expect(error.requestId).to.be.ok
|
|
@@ -278,9 +618,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayRoute", async function () {
|
|
|
278
618
|
}
|
|
279
619
|
})
|
|
280
620
|
|
|
281
|
-
it("tse.v20201207.
|
|
621
|
+
it("tse.v20201207.DescribeGovernanceInstances", async function () {
|
|
282
622
|
try {
|
|
283
|
-
const data = await client.
|
|
623
|
+
const data = await client.DescribeGovernanceInstances({})
|
|
284
624
|
expect(data).to.be.ok
|
|
285
625
|
} catch(error) {
|
|
286
626
|
expect(error.requestId).to.be.ok
|
|
@@ -288,9 +628,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayPublicNetwork", async function () {
|
|
|
288
628
|
}
|
|
289
629
|
})
|
|
290
630
|
|
|
291
|
-
it("tse.v20201207.
|
|
631
|
+
it("tse.v20201207.DescribeGovernanceServices", async function () {
|
|
292
632
|
try {
|
|
293
|
-
const data = await client.
|
|
633
|
+
const data = await client.DescribeGovernanceServices({})
|
|
294
634
|
expect(data).to.be.ok
|
|
295
635
|
} catch(error) {
|
|
296
636
|
expect(error.requestId).to.be.ok
|
|
@@ -298,9 +638,9 @@ it("tse.v20201207.ModifyAutoScalerResourceStrategy", async function () {
|
|
|
298
638
|
}
|
|
299
639
|
})
|
|
300
640
|
|
|
301
|
-
it("tse.v20201207.
|
|
641
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayCanaryRule", async function () {
|
|
302
642
|
try {
|
|
303
|
-
const data = await client.
|
|
643
|
+
const data = await client.DeleteCloudNativeAPIGatewayCanaryRule({})
|
|
304
644
|
expect(data).to.be.ok
|
|
305
645
|
} catch(error) {
|
|
306
646
|
expect(error.requestId).to.be.ok
|
|
@@ -308,9 +648,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayCertificate", async function () {
|
|
|
308
648
|
}
|
|
309
649
|
})
|
|
310
650
|
|
|
311
|
-
it("tse.v20201207.
|
|
651
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayNodes", async function () {
|
|
312
652
|
try {
|
|
313
|
-
const data = await client.
|
|
653
|
+
const data = await client.DescribeCloudNativeAPIGatewayNodes({})
|
|
314
654
|
expect(data).to.be.ok
|
|
315
655
|
} catch(error) {
|
|
316
656
|
expect(error.requestId).to.be.ok
|
|
@@ -318,9 +658,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayCanaryRule", async function () {
|
|
|
318
658
|
}
|
|
319
659
|
})
|
|
320
660
|
|
|
321
|
-
it("tse.v20201207.
|
|
661
|
+
it("tse.v20201207.UnbindAutoScalerResourceStrategyFromGroups", async function () {
|
|
322
662
|
try {
|
|
323
|
-
const data = await client.
|
|
663
|
+
const data = await client.UnbindAutoScalerResourceStrategyFromGroups({})
|
|
324
664
|
expect(data).to.be.ok
|
|
325
665
|
} catch(error) {
|
|
326
666
|
expect(error.requestId).to.be.ok
|
|
@@ -328,9 +668,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGateways", async function () {
|
|
|
328
668
|
}
|
|
329
669
|
})
|
|
330
670
|
|
|
331
|
-
it("tse.v20201207.
|
|
671
|
+
it("tse.v20201207.DescribeConfigFileReleaseVersions", async function () {
|
|
332
672
|
try {
|
|
333
|
-
const data = await client.
|
|
673
|
+
const data = await client.DescribeConfigFileReleaseVersions({})
|
|
334
674
|
expect(data).to.be.ok
|
|
335
675
|
} catch(error) {
|
|
336
676
|
expect(error.requestId).to.be.ok
|
|
@@ -338,9 +678,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayCertificate", async function () {
|
|
|
338
678
|
}
|
|
339
679
|
})
|
|
340
680
|
|
|
341
|
-
it("tse.v20201207.
|
|
681
|
+
it("tse.v20201207.DescribeSREInstances", async function () {
|
|
342
682
|
try {
|
|
343
|
-
const data = await client.
|
|
683
|
+
const data = await client.DescribeSREInstances({})
|
|
344
684
|
expect(data).to.be.ok
|
|
345
685
|
} catch(error) {
|
|
346
686
|
expect(error.requestId).to.be.ok
|
|
@@ -348,9 +688,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayServices", async function () {
|
|
|
348
688
|
}
|
|
349
689
|
})
|
|
350
690
|
|
|
351
|
-
it("tse.v20201207.
|
|
691
|
+
it("tse.v20201207.DescribeConfigFilesByGroup", async function () {
|
|
352
692
|
try {
|
|
353
|
-
const data = await client.
|
|
693
|
+
const data = await client.DescribeConfigFilesByGroup({})
|
|
354
694
|
expect(data).to.be.ok
|
|
355
695
|
} catch(error) {
|
|
356
696
|
expect(error.requestId).to.be.ok
|
|
@@ -358,9 +698,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayRouteRateLimit", async function ()
|
|
|
358
698
|
}
|
|
359
699
|
})
|
|
360
700
|
|
|
361
|
-
it("tse.v20201207.
|
|
701
|
+
it("tse.v20201207.DescribeWafProtection", async function () {
|
|
362
702
|
try {
|
|
363
|
-
const data = await client.
|
|
703
|
+
const data = await client.DescribeWafProtection({})
|
|
364
704
|
expect(data).to.be.ok
|
|
365
705
|
} catch(error) {
|
|
366
706
|
expect(error.requestId).to.be.ok
|
|
@@ -368,9 +708,9 @@ it("tse.v20201207.ModifyNativeGatewayServerGroup", async function () {
|
|
|
368
708
|
}
|
|
369
709
|
})
|
|
370
710
|
|
|
371
|
-
it("tse.v20201207.
|
|
711
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayConfig", async function () {
|
|
372
712
|
try {
|
|
373
|
-
const data = await client.
|
|
713
|
+
const data = await client.DescribeCloudNativeAPIGatewayConfig({})
|
|
374
714
|
expect(data).to.be.ok
|
|
375
715
|
} catch(error) {
|
|
376
716
|
expect(error.requestId).to.be.ok
|
|
@@ -378,9 +718,9 @@ it("tse.v20201207.DescribeNacosServerInterfaces", async function () {
|
|
|
378
718
|
}
|
|
379
719
|
})
|
|
380
720
|
|
|
381
|
-
it("tse.v20201207.
|
|
721
|
+
it("tse.v20201207.CreateGovernanceNamespaces", async function () {
|
|
382
722
|
try {
|
|
383
|
-
const data = await client.
|
|
723
|
+
const data = await client.CreateGovernanceNamespaces({})
|
|
384
724
|
expect(data).to.be.ok
|
|
385
725
|
} catch(error) {
|
|
386
726
|
expect(error.requestId).to.be.ok
|
|
@@ -388,9 +728,9 @@ it("tse.v20201207.DescribeAutoScalerResourceStrategyBindingGroups", async functi
|
|
|
388
728
|
}
|
|
389
729
|
})
|
|
390
730
|
|
|
391
|
-
it("tse.v20201207.
|
|
731
|
+
it("tse.v20201207.DescribeGovernanceServiceContractVersions", async function () {
|
|
392
732
|
try {
|
|
393
|
-
const data = await client.
|
|
733
|
+
const data = await client.DescribeGovernanceServiceContractVersions({})
|
|
394
734
|
expect(data).to.be.ok
|
|
395
735
|
} catch(error) {
|
|
396
736
|
expect(error.requestId).to.be.ok
|
|
@@ -398,9 +738,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayRoute", async function () {
|
|
|
398
738
|
}
|
|
399
739
|
})
|
|
400
740
|
|
|
401
|
-
it("tse.v20201207.
|
|
741
|
+
it("tse.v20201207.OpenWafProtection", async function () {
|
|
402
742
|
try {
|
|
403
|
-
const data = await client.
|
|
743
|
+
const data = await client.OpenWafProtection({})
|
|
404
744
|
expect(data).to.be.ok
|
|
405
745
|
} catch(error) {
|
|
406
746
|
expect(error.requestId).to.be.ok
|
|
@@ -408,9 +748,9 @@ it("tse.v20201207.CloseWafProtection", async function () {
|
|
|
408
748
|
}
|
|
409
749
|
})
|
|
410
750
|
|
|
411
|
-
it("tse.v20201207.
|
|
751
|
+
it("tse.v20201207.ModifyCloudNativeAPIGatewayCanaryRule", async function () {
|
|
412
752
|
try {
|
|
413
|
-
const data = await client.
|
|
753
|
+
const data = await client.ModifyCloudNativeAPIGatewayCanaryRule({})
|
|
414
754
|
expect(data).to.be.ok
|
|
415
755
|
} catch(error) {
|
|
416
756
|
expect(error.requestId).to.be.ok
|
|
@@ -418,9 +758,9 @@ it("tse.v20201207.ModifyGovernanceInstances", async function () {
|
|
|
418
758
|
}
|
|
419
759
|
})
|
|
420
760
|
|
|
421
|
-
it("tse.v20201207.
|
|
761
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayService", async function () {
|
|
422
762
|
try {
|
|
423
|
-
const data = await client.
|
|
763
|
+
const data = await client.CreateCloudNativeAPIGatewayService({})
|
|
424
764
|
expect(data).to.be.ok
|
|
425
765
|
} catch(error) {
|
|
426
766
|
expect(error.requestId).to.be.ok
|
|
@@ -428,9 +768,9 @@ it("tse.v20201207.CreateCloudNativeAPIGateway", async function () {
|
|
|
428
768
|
}
|
|
429
769
|
})
|
|
430
770
|
|
|
431
|
-
it("tse.v20201207.
|
|
771
|
+
it("tse.v20201207.DeleteCloudNativeAPIGateway", async function () {
|
|
432
772
|
try {
|
|
433
|
-
const data = await client.
|
|
773
|
+
const data = await client.DeleteCloudNativeAPIGateway({})
|
|
434
774
|
expect(data).to.be.ok
|
|
435
775
|
} catch(error) {
|
|
436
776
|
expect(error.requestId).to.be.ok
|
|
@@ -438,9 +778,9 @@ it("tse.v20201207.DescribeSREInstances", async function () {
|
|
|
438
778
|
}
|
|
439
779
|
})
|
|
440
780
|
|
|
441
|
-
it("tse.v20201207.
|
|
781
|
+
it("tse.v20201207.ModifyGovernanceNamespaces", async function () {
|
|
442
782
|
try {
|
|
443
|
-
const data = await client.
|
|
783
|
+
const data = await client.ModifyGovernanceNamespaces({})
|
|
444
784
|
expect(data).to.be.ok
|
|
445
785
|
} catch(error) {
|
|
446
786
|
expect(error.requestId).to.be.ok
|
|
@@ -448,9 +788,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayRouteRateLimit", async function (
|
|
|
448
788
|
}
|
|
449
789
|
})
|
|
450
790
|
|
|
451
|
-
it("tse.v20201207.
|
|
791
|
+
it("tse.v20201207.DescribePublicNetwork", async function () {
|
|
452
792
|
try {
|
|
453
|
-
const data = await client.
|
|
793
|
+
const data = await client.DescribePublicNetwork({})
|
|
454
794
|
expect(data).to.be.ok
|
|
455
795
|
} catch(error) {
|
|
456
796
|
expect(error.requestId).to.be.ok
|
|
@@ -458,9 +798,9 @@ it("tse.v20201207.DeleteGovernanceInstances", async function () {
|
|
|
458
798
|
}
|
|
459
799
|
})
|
|
460
800
|
|
|
461
|
-
it("tse.v20201207.
|
|
801
|
+
it("tse.v20201207.CreateAutoScalerResourceStrategy", async function () {
|
|
462
802
|
try {
|
|
463
|
-
const data = await client.
|
|
803
|
+
const data = await client.CreateAutoScalerResourceStrategy({})
|
|
464
804
|
expect(data).to.be.ok
|
|
465
805
|
} catch(error) {
|
|
466
806
|
expect(error.requestId).to.be.ok
|
|
@@ -468,9 +808,9 @@ it("tse.v20201207.DescribeWafProtection", async function () {
|
|
|
468
808
|
}
|
|
469
809
|
})
|
|
470
810
|
|
|
471
|
-
it("tse.v20201207.
|
|
811
|
+
it("tse.v20201207.CreateConfigFile", async function () {
|
|
472
812
|
try {
|
|
473
|
-
const data = await client.
|
|
813
|
+
const data = await client.CreateConfigFile({})
|
|
474
814
|
expect(data).to.be.ok
|
|
475
815
|
} catch(error) {
|
|
476
816
|
expect(error.requestId).to.be.ok
|
|
@@ -478,9 +818,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayConfig", async function () {
|
|
|
478
818
|
}
|
|
479
819
|
})
|
|
480
820
|
|
|
481
|
-
it("tse.v20201207.
|
|
821
|
+
it("tse.v20201207.ModifyNetworkAccessStrategy", async function () {
|
|
482
822
|
try {
|
|
483
|
-
const data = await client.
|
|
823
|
+
const data = await client.ModifyNetworkAccessStrategy({})
|
|
484
824
|
expect(data).to.be.ok
|
|
485
825
|
} catch(error) {
|
|
486
826
|
expect(error.requestId).to.be.ok
|
|
@@ -488,9 +828,9 @@ it("tse.v20201207.ModifyCloudNativeAPIGatewayService", async function () {
|
|
|
488
828
|
}
|
|
489
829
|
})
|
|
490
830
|
|
|
491
|
-
it("tse.v20201207.
|
|
831
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayUpstream", async function () {
|
|
492
832
|
try {
|
|
493
|
-
const data = await client.
|
|
833
|
+
const data = await client.DescribeCloudNativeAPIGatewayUpstream({})
|
|
494
834
|
expect(data).to.be.ok
|
|
495
835
|
} catch(error) {
|
|
496
836
|
expect(error.requestId).to.be.ok
|
|
@@ -498,9 +838,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayNodes", async function () {
|
|
|
498
838
|
}
|
|
499
839
|
})
|
|
500
840
|
|
|
501
|
-
it("tse.v20201207.
|
|
841
|
+
it("tse.v20201207.CreateOrUpdateConfigFileAndRelease", async function () {
|
|
502
842
|
try {
|
|
503
|
-
const data = await client.
|
|
843
|
+
const data = await client.CreateOrUpdateConfigFileAndRelease({})
|
|
504
844
|
expect(data).to.be.ok
|
|
505
845
|
} catch(error) {
|
|
506
846
|
expect(error.requestId).to.be.ok
|
|
@@ -508,9 +848,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayCanaryRule", async function () {
|
|
|
508
848
|
}
|
|
509
849
|
})
|
|
510
850
|
|
|
511
|
-
it("tse.v20201207.
|
|
851
|
+
it("tse.v20201207.ModifyGovernanceAlias", async function () {
|
|
512
852
|
try {
|
|
513
|
-
const data = await client.
|
|
853
|
+
const data = await client.ModifyGovernanceAlias({})
|
|
514
854
|
expect(data).to.be.ok
|
|
515
855
|
} catch(error) {
|
|
516
856
|
expect(error.requestId).to.be.ok
|
|
@@ -518,9 +858,9 @@ it("tse.v20201207.DescribeWafDomains", async function () {
|
|
|
518
858
|
}
|
|
519
859
|
})
|
|
520
860
|
|
|
521
|
-
it("tse.v20201207.
|
|
861
|
+
it("tse.v20201207.CreateWafDomains", async function () {
|
|
522
862
|
try {
|
|
523
|
-
const data = await client.
|
|
863
|
+
const data = await client.CreateWafDomains({})
|
|
524
864
|
expect(data).to.be.ok
|
|
525
865
|
} catch(error) {
|
|
526
866
|
expect(error.requestId).to.be.ok
|
|
@@ -528,9 +868,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayCertificateDetails", async functi
|
|
|
528
868
|
}
|
|
529
869
|
})
|
|
530
870
|
|
|
531
|
-
it("tse.v20201207.
|
|
871
|
+
it("tse.v20201207.ModifyConfigFileGroup", async function () {
|
|
532
872
|
try {
|
|
533
|
-
const data = await client.
|
|
873
|
+
const data = await client.ModifyConfigFileGroup({})
|
|
534
874
|
expect(data).to.be.ok
|
|
535
875
|
} catch(error) {
|
|
536
876
|
expect(error.requestId).to.be.ok
|
|
@@ -538,9 +878,9 @@ it("tse.v20201207.UpdateEngineInternetAccess", async function () {
|
|
|
538
878
|
}
|
|
539
879
|
})
|
|
540
880
|
|
|
541
|
-
it("tse.v20201207.
|
|
881
|
+
it("tse.v20201207.RollbackConfigFileReleases", async function () {
|
|
542
882
|
try {
|
|
543
|
-
const data = await client.
|
|
883
|
+
const data = await client.RollbackConfigFileReleases({})
|
|
544
884
|
expect(data).to.be.ok
|
|
545
885
|
} catch(error) {
|
|
546
886
|
expect(error.requestId).to.be.ok
|
|
@@ -548,9 +888,9 @@ it("tse.v20201207.OpenWafProtection", async function () {
|
|
|
548
888
|
}
|
|
549
889
|
})
|
|
550
890
|
|
|
551
|
-
it("tse.v20201207.
|
|
891
|
+
it("tse.v20201207.CreateEngine", async function () {
|
|
552
892
|
try {
|
|
553
|
-
const data = await client.
|
|
893
|
+
const data = await client.CreateEngine({})
|
|
554
894
|
expect(data).to.be.ok
|
|
555
895
|
} catch(error) {
|
|
556
896
|
expect(error.requestId).to.be.ok
|
|
@@ -558,9 +898,9 @@ it("tse.v20201207.UpdateUpstreamTargets", async function () {
|
|
|
558
898
|
}
|
|
559
899
|
})
|
|
560
900
|
|
|
561
|
-
it("tse.v20201207.
|
|
901
|
+
it("tse.v20201207.ModifyUpstreamNodeStatus", async function () {
|
|
562
902
|
try {
|
|
563
|
-
const data = await client.
|
|
903
|
+
const data = await client.ModifyUpstreamNodeStatus({})
|
|
564
904
|
expect(data).to.be.ok
|
|
565
905
|
} catch(error) {
|
|
566
906
|
expect(error.requestId).to.be.ok
|
|
@@ -568,9 +908,9 @@ it("tse.v20201207.DescribeAutoScalerResourceStrategies", async function () {
|
|
|
568
908
|
}
|
|
569
909
|
})
|
|
570
910
|
|
|
571
|
-
it("tse.v20201207.
|
|
911
|
+
it("tse.v20201207.BindAutoScalerResourceStrategyToGroups", async function () {
|
|
572
912
|
try {
|
|
573
|
-
const data = await client.
|
|
913
|
+
const data = await client.BindAutoScalerResourceStrategyToGroups({})
|
|
574
914
|
expect(data).to.be.ok
|
|
575
915
|
} catch(error) {
|
|
576
916
|
expect(error.requestId).to.be.ok
|
|
@@ -578,9 +918,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayServiceRateLimit", async function (
|
|
|
578
918
|
}
|
|
579
919
|
})
|
|
580
920
|
|
|
581
|
-
it("tse.v20201207.
|
|
921
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayRouteRateLimit", async function () {
|
|
582
922
|
try {
|
|
583
|
-
const data = await client.
|
|
923
|
+
const data = await client.CreateCloudNativeAPIGatewayRouteRateLimit({})
|
|
584
924
|
expect(data).to.be.ok
|
|
585
925
|
} catch(error) {
|
|
586
926
|
expect(error.requestId).to.be.ok
|
|
@@ -588,9 +928,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGateway", async function () {
|
|
|
588
928
|
}
|
|
589
929
|
})
|
|
590
930
|
|
|
591
|
-
it("tse.v20201207.
|
|
931
|
+
it("tse.v20201207.DeleteWafDomains", async function () {
|
|
592
932
|
try {
|
|
593
|
-
const data = await client.
|
|
933
|
+
const data = await client.DeleteWafDomains({})
|
|
594
934
|
expect(data).to.be.ok
|
|
595
935
|
} catch(error) {
|
|
596
936
|
expect(error.requestId).to.be.ok
|
|
@@ -598,9 +938,9 @@ it("tse.v20201207.ModifyNetworkBasicInfo", async function () {
|
|
|
598
938
|
}
|
|
599
939
|
})
|
|
600
940
|
|
|
601
|
-
it("tse.v20201207.
|
|
941
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayService", async function () {
|
|
602
942
|
try {
|
|
603
|
-
const data = await client.
|
|
943
|
+
const data = await client.DeleteCloudNativeAPIGatewayService({})
|
|
604
944
|
expect(data).to.be.ok
|
|
605
945
|
} catch(error) {
|
|
606
946
|
expect(error.requestId).to.be.ok
|
|
@@ -608,9 +948,9 @@ it("tse.v20201207.ModifyNetworkAccessStrategy", async function () {
|
|
|
608
948
|
}
|
|
609
949
|
})
|
|
610
950
|
|
|
611
|
-
it("tse.v20201207.
|
|
951
|
+
it("tse.v20201207.DescribeCloudNativeAPIGatewayRoutes", async function () {
|
|
612
952
|
try {
|
|
613
|
-
const data = await client.
|
|
953
|
+
const data = await client.DescribeCloudNativeAPIGatewayRoutes({})
|
|
614
954
|
expect(data).to.be.ok
|
|
615
955
|
} catch(error) {
|
|
616
956
|
expect(error.requestId).to.be.ok
|
|
@@ -618,9 +958,9 @@ it("tse.v20201207.DescribePublicNetwork", async function () {
|
|
|
618
958
|
}
|
|
619
959
|
})
|
|
620
960
|
|
|
621
|
-
it("tse.v20201207.
|
|
961
|
+
it("tse.v20201207.DescribeConfigFileGroups", async function () {
|
|
622
962
|
try {
|
|
623
|
-
const data = await client.
|
|
963
|
+
const data = await client.DescribeConfigFileGroups({})
|
|
624
964
|
expect(data).to.be.ok
|
|
625
965
|
} catch(error) {
|
|
626
966
|
expect(error.requestId).to.be.ok
|
|
@@ -628,9 +968,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayCertificate", async function () {
|
|
|
628
968
|
}
|
|
629
969
|
})
|
|
630
970
|
|
|
631
|
-
it("tse.v20201207.
|
|
971
|
+
it("tse.v20201207.DescribeCloudNativeAPIGateway", async function () {
|
|
632
972
|
try {
|
|
633
|
-
const data = await client.
|
|
973
|
+
const data = await client.DescribeCloudNativeAPIGateway({})
|
|
634
974
|
expect(data).to.be.ok
|
|
635
975
|
} catch(error) {
|
|
636
976
|
expect(error.requestId).to.be.ok
|
|
@@ -638,9 +978,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayRoute", async function () {
|
|
|
638
978
|
}
|
|
639
979
|
})
|
|
640
980
|
|
|
641
|
-
it("tse.v20201207.
|
|
981
|
+
it("tse.v20201207.DeleteCloudNativeAPIGatewayRoute", async function () {
|
|
642
982
|
try {
|
|
643
|
-
const data = await client.
|
|
983
|
+
const data = await client.DeleteCloudNativeAPIGatewayRoute({})
|
|
644
984
|
expect(data).to.be.ok
|
|
645
985
|
} catch(error) {
|
|
646
986
|
expect(error.requestId).to.be.ok
|
|
@@ -648,9 +988,9 @@ it("tse.v20201207.UpdateCloudNativeAPIGatewayCertificateInfo", async function ()
|
|
|
648
988
|
}
|
|
649
989
|
})
|
|
650
990
|
|
|
651
|
-
it("tse.v20201207.
|
|
991
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayPublicNetwork", async function () {
|
|
652
992
|
try {
|
|
653
|
-
const data = await client.
|
|
993
|
+
const data = await client.CreateCloudNativeAPIGatewayPublicNetwork({})
|
|
654
994
|
expect(data).to.be.ok
|
|
655
995
|
} catch(error) {
|
|
656
996
|
expect(error.requestId).to.be.ok
|
|
@@ -658,9 +998,9 @@ it("tse.v20201207.CreateGovernanceInstances", async function () {
|
|
|
658
998
|
}
|
|
659
999
|
})
|
|
660
1000
|
|
|
661
|
-
it("tse.v20201207.
|
|
1001
|
+
it("tse.v20201207.DescribeNacosServerInterfaces", async function () {
|
|
662
1002
|
try {
|
|
663
|
-
const data = await client.
|
|
1003
|
+
const data = await client.DescribeNacosServerInterfaces({})
|
|
664
1004
|
expect(data).to.be.ok
|
|
665
1005
|
} catch(error) {
|
|
666
1006
|
expect(error.requestId).to.be.ok
|
|
@@ -668,9 +1008,9 @@ it("tse.v20201207.CreateNativeGatewayServerGroup", async function () {
|
|
|
668
1008
|
}
|
|
669
1009
|
})
|
|
670
1010
|
|
|
671
|
-
it("tse.v20201207.
|
|
1011
|
+
it("tse.v20201207.ModifyConfigFiles", async function () {
|
|
672
1012
|
try {
|
|
673
|
-
const data = await client.
|
|
1013
|
+
const data = await client.ModifyConfigFiles({})
|
|
674
1014
|
expect(data).to.be.ok
|
|
675
1015
|
} catch(error) {
|
|
676
1016
|
expect(error.requestId).to.be.ok
|
|
@@ -678,9 +1018,9 @@ it("tse.v20201207.DeleteCloudNativeAPIGatewayRouteRateLimit", async function ()
|
|
|
678
1018
|
}
|
|
679
1019
|
})
|
|
680
1020
|
|
|
681
|
-
it("tse.v20201207.
|
|
1021
|
+
it("tse.v20201207.UpdateCloudNativeAPIGatewaySpec", async function () {
|
|
682
1022
|
try {
|
|
683
|
-
const data = await client.
|
|
1023
|
+
const data = await client.UpdateCloudNativeAPIGatewaySpec({})
|
|
684
1024
|
expect(data).to.be.ok
|
|
685
1025
|
} catch(error) {
|
|
686
1026
|
expect(error.requestId).to.be.ok
|
|
@@ -688,9 +1028,9 @@ it("tse.v20201207.CreateAutoScalerResourceStrategy", async function () {
|
|
|
688
1028
|
}
|
|
689
1029
|
})
|
|
690
1030
|
|
|
691
|
-
it("tse.v20201207.
|
|
1031
|
+
it("tse.v20201207.CreateGovernanceServices", async function () {
|
|
692
1032
|
try {
|
|
693
|
-
const data = await client.
|
|
1033
|
+
const data = await client.CreateGovernanceServices({})
|
|
694
1034
|
expect(data).to.be.ok
|
|
695
1035
|
} catch(error) {
|
|
696
1036
|
expect(error.requestId).to.be.ok
|
|
@@ -698,9 +1038,9 @@ it("tse.v20201207.CreateCloudNativeAPIGatewayRouteRateLimit", async function ()
|
|
|
698
1038
|
}
|
|
699
1039
|
})
|
|
700
1040
|
|
|
701
|
-
it("tse.v20201207.
|
|
1041
|
+
it("tse.v20201207.DeleteGovernanceNamespaces", async function () {
|
|
702
1042
|
try {
|
|
703
|
-
const data = await client.
|
|
1043
|
+
const data = await client.DeleteGovernanceNamespaces({})
|
|
704
1044
|
expect(data).to.be.ok
|
|
705
1045
|
} catch(error) {
|
|
706
1046
|
expect(error.requestId).to.be.ok
|
|
@@ -708,9 +1048,9 @@ it("tse.v20201207.DescribeNativeGatewayServerGroups", async function () {
|
|
|
708
1048
|
}
|
|
709
1049
|
})
|
|
710
1050
|
|
|
711
|
-
it("tse.v20201207.
|
|
1051
|
+
it("tse.v20201207.ModifyGovernanceInstances", async function () {
|
|
712
1052
|
try {
|
|
713
|
-
const data = await client.
|
|
1053
|
+
const data = await client.ModifyGovernanceInstances({})
|
|
714
1054
|
expect(data).to.be.ok
|
|
715
1055
|
} catch(error) {
|
|
716
1056
|
expect(error.requestId).to.be.ok
|
|
@@ -718,9 +1058,9 @@ it("tse.v20201207.DescribeNacosReplicas", async function () {
|
|
|
718
1058
|
}
|
|
719
1059
|
})
|
|
720
1060
|
|
|
721
|
-
it("tse.v20201207.
|
|
1061
|
+
it("tse.v20201207.DescribeConfigFiles", async function () {
|
|
722
1062
|
try {
|
|
723
|
-
const data = await client.
|
|
1063
|
+
const data = await client.DescribeConfigFiles({})
|
|
724
1064
|
expect(data).to.be.ok
|
|
725
1065
|
} catch(error) {
|
|
726
1066
|
expect(error.requestId).to.be.ok
|
|
@@ -728,9 +1068,9 @@ it("tse.v20201207.DeleteAutoScalerResourceStrategy", async function () {
|
|
|
728
1068
|
}
|
|
729
1069
|
})
|
|
730
1070
|
|
|
731
|
-
it("tse.v20201207.
|
|
1071
|
+
it("tse.v20201207.ModifyCloudNativeAPIGateway", async function () {
|
|
732
1072
|
try {
|
|
733
|
-
const data = await client.
|
|
1073
|
+
const data = await client.ModifyCloudNativeAPIGateway({})
|
|
734
1074
|
expect(data).to.be.ok
|
|
735
1075
|
} catch(error) {
|
|
736
1076
|
expect(error.requestId).to.be.ok
|
|
@@ -738,9 +1078,9 @@ it("tse.v20201207.DescribeSREInstanceAccessAddress", async function () {
|
|
|
738
1078
|
}
|
|
739
1079
|
})
|
|
740
1080
|
|
|
741
|
-
it("tse.v20201207.
|
|
1081
|
+
it("tse.v20201207.CreateCloudNativeAPIGatewayServiceRateLimit", async function () {
|
|
742
1082
|
try {
|
|
743
|
-
const data = await client.
|
|
1083
|
+
const data = await client.CreateCloudNativeAPIGatewayServiceRateLimit({})
|
|
744
1084
|
expect(data).to.be.ok
|
|
745
1085
|
} catch(error) {
|
|
746
1086
|
expect(error.requestId).to.be.ok
|
|
@@ -748,9 +1088,9 @@ it("tse.v20201207.DeleteNativeGatewayServerGroup", async function () {
|
|
|
748
1088
|
}
|
|
749
1089
|
})
|
|
750
1090
|
|
|
751
|
-
it("tse.v20201207.
|
|
1091
|
+
it("tse.v20201207.DeleteGovernanceInstancesByHost", async function () {
|
|
752
1092
|
try {
|
|
753
|
-
const data = await client.
|
|
1093
|
+
const data = await client.DeleteGovernanceInstancesByHost({})
|
|
754
1094
|
expect(data).to.be.ok
|
|
755
1095
|
} catch(error) {
|
|
756
1096
|
expect(error.requestId).to.be.ok
|
|
@@ -758,9 +1098,9 @@ it("tse.v20201207.DescribeCloudNativeAPIGatewayCanaryRules", async function () {
|
|
|
758
1098
|
}
|
|
759
1099
|
})
|
|
760
1100
|
|
|
761
|
-
it("tse.v20201207.
|
|
1101
|
+
it("tse.v20201207.DescribeConfigFileReleaseHistories", async function () {
|
|
762
1102
|
try {
|
|
763
|
-
const data = await client.
|
|
1103
|
+
const data = await client.DescribeConfigFileReleaseHistories({})
|
|
764
1104
|
expect(data).to.be.ok
|
|
765
1105
|
} catch(error) {
|
|
766
1106
|
expect(error.requestId).to.be.ok
|
|
@@ -768,9 +1108,9 @@ it("tse.v20201207.UpdateCloudNativeAPIGatewaySpec", async function () {
|
|
|
768
1108
|
}
|
|
769
1109
|
})
|
|
770
1110
|
|
|
771
|
-
it("tse.v20201207.
|
|
1111
|
+
it("tse.v20201207.DescribeNativeGatewayServerGroups", async function () {
|
|
772
1112
|
try {
|
|
773
|
-
const data = await client.
|
|
1113
|
+
const data = await client.DescribeNativeGatewayServerGroups({})
|
|
774
1114
|
expect(data).to.be.ok
|
|
775
1115
|
} catch(error) {
|
|
776
1116
|
expect(error.requestId).to.be.ok
|
|
@@ -778,9 +1118,9 @@ it("tse.v20201207.DescribeGovernanceInstances", async function () {
|
|
|
778
1118
|
}
|
|
779
1119
|
})
|
|
780
1120
|
|
|
781
|
-
it("tse.v20201207.
|
|
1121
|
+
it("tse.v20201207.UpdateUpstreamHealthCheckConfig", async function () {
|
|
782
1122
|
try {
|
|
783
|
-
const data = await client.
|
|
1123
|
+
const data = await client.UpdateUpstreamHealthCheckConfig({})
|
|
784
1124
|
expect(data).to.be.ok
|
|
785
1125
|
} catch(error) {
|
|
786
1126
|
expect(error.requestId).to.be.ok
|