tencentcloud-sdk-nodejs 4.0.301 → 4.0.302

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 (40) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/SERVICE_CHANGELOG.md +179 -77
  3. package/package.json +1 -1
  4. package/products.md +6 -5
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/casb/index.ts +5 -0
  7. package/src/services/casb/v20200507/casb_client.ts +51 -0
  8. package/src/services/casb/v20200507/casb_models.ts +76 -0
  9. package/src/services/casb/v20200507/index.ts +6 -0
  10. package/src/services/cls/v20201016/cls_models.ts +1 -1
  11. package/src/services/cpdp/v20190820/cpdp_client.ts +31 -3
  12. package/src/services/cpdp/v20190820/cpdp_models.ts +292 -68
  13. package/src/services/index.ts +1 -0
  14. package/src/services/ivld/v20210903/ivld_client.ts +2 -0
  15. package/src/services/ivld/v20210903/ivld_models.ts +48 -0
  16. package/src/services/tke/v20180525/tke_client.ts +25 -13
  17. package/src/services/tke/v20180525/tke_models.ts +39 -4
  18. package/tencentcloud/common/sdk_version.d.ts +1 -1
  19. package/tencentcloud/common/sdk_version.js +1 -1
  20. package/tencentcloud/services/casb/index.d.ts +6 -0
  21. package/tencentcloud/services/casb/index.js +7 -0
  22. package/tencentcloud/services/casb/v20200507/casb_client.d.ts +21 -0
  23. package/tencentcloud/services/casb/v20200507/casb_client.js +44 -0
  24. package/tencentcloud/services/casb/v20200507/casb_models.d.ts +51 -0
  25. package/tencentcloud/services/casb/v20200507/casb_models.js +18 -0
  26. package/tencentcloud/services/casb/v20200507/index.d.ts +6 -0
  27. package/tencentcloud/services/casb/v20200507/index.js +9 -0
  28. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
  29. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +9 -1
  30. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +12 -0
  31. package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +250 -57
  32. package/tencentcloud/services/index.d.ts +1 -0
  33. package/tencentcloud/services/index.js +2 -0
  34. package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +41 -0
  35. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -5
  36. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -6
  37. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +34 -4
  38. package/test/casb.v20200507.test.js +31 -0
  39. package/test/cpdp.v20190820.test.js +20 -0
  40. package/test/tke.v20180525.test.js +14 -4
@@ -288,6 +288,16 @@ it("cpdp.v20190820.QueryInvoice", async function () {
288
288
  }
289
289
  })
290
290
 
291
+ it("cpdp.v20190820.QueryOpenBankBankBranchList", async function () {
292
+ try {
293
+ const data = await client.QueryOpenBankBankBranchList({})
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
+
291
301
  it("cpdp.v20190820.QueryExchangeRate", async function () {
292
302
  try {
293
303
  const data = await client.QueryExchangeRate({})
@@ -1258,6 +1268,16 @@ it("cpdp.v20190820.RevokeMemberRechargeThirdPay", async function () {
1258
1268
  }
1259
1269
  })
1260
1270
 
1271
+ it("cpdp.v20190820.QueryOpenBankSupportBankList", async function () {
1272
+ try {
1273
+ const data = await client.QueryOpenBankSupportBankList({})
1274
+ expect(data).to.be.ok
1275
+ } catch(error) {
1276
+ expect(error.requestId).to.be.ok
1277
+ expect(error.code).to.be.ok
1278
+ }
1279
+ })
1280
+
1261
1281
  it("cpdp.v20190820.DistributeCancel", async function () {
1262
1282
  try {
1263
1283
  const data = await client.DistributeCancel({})
@@ -168,9 +168,9 @@ it("tke.v20180525.DeleteEKSCluster", async function () {
168
168
  }
169
169
  })
170
170
 
171
- it("tke.v20180525.DescribeClusterEndpointStatus", async function () {
171
+ it("tke.v20180525.ModifyClusterNodePool", async function () {
172
172
  try {
173
- const data = await client.DescribeClusterEndpointStatus({})
173
+ const data = await client.ModifyClusterNodePool({})
174
174
  expect(data).to.be.ok
175
175
  } catch(error) {
176
176
  expect(error.requestId).to.be.ok
@@ -378,9 +378,9 @@ it("tke.v20180525.DescribeClusters", async function () {
378
378
  }
379
379
  })
380
380
 
381
- it("tke.v20180525.ModifyClusterNodePool", async function () {
381
+ it("tke.v20180525.DescribeClusterEndpointStatus", async function () {
382
382
  try {
383
- const data = await client.ModifyClusterNodePool({})
383
+ const data = await client.DescribeClusterEndpointStatus({})
384
384
  expect(data).to.be.ok
385
385
  } catch(error) {
386
386
  expect(error.requestId).to.be.ok
@@ -508,6 +508,16 @@ it("tke.v20180525.RestartEKSContainerInstances", async function () {
508
508
  }
509
509
  })
510
510
 
511
+ it("tke.v20180525.DescribeTKEEdgeScript", async function () {
512
+ try {
513
+ const data = await client.DescribeTKEEdgeScript({})
514
+ expect(data).to.be.ok
515
+ } catch(error) {
516
+ expect(error.requestId).to.be.ok
517
+ expect(error.code).to.be.ok
518
+ }
519
+ })
520
+
511
521
  it("tke.v20180525.ModifyNodePoolDesiredCapacityAboutAsg", async function () {
512
522
  try {
513
523
  const data = await client.ModifyNodePoolDesiredCapacityAboutAsg({})