tencentcloud-sdk-nodejs 4.0.913 → 4.0.914
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 +130 -0
- package/SERVICE_CHANGELOG.md +170 -120
- package/examples/hunyuan/v20230901/{chat_std.js → chat_completions.js} +5 -3
- package/examples/hunyuan/v20230901/{chat_std.ts → chat_completions.ts} +5 -3
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_models.ts +5 -0
- package/src/services/cls/v20201016/cls_client.ts +61 -11
- package/src/services/cls/v20201016/cls_models.ts +312 -145
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/hunyuan/v20230901/hunyuan_models.ts +4 -4
- package/src/services/organization/v20210331/organization_client.ts +51 -13
- package/src/services/organization/v20210331/organization_models.ts +204 -39
- package/src/services/pts/v20210728/pts_models.ts +9 -9
- package/src/services/tcss/v20201101/tcss_models.ts +99 -52
- package/src/services/trocket/v20230308/trocket_client.ts +16 -4
- package/src/services/trocket/v20230308/trocket_models.ts +94 -58
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +5 -0
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +19 -3
- package/tencentcloud/services/cls/v20201016/cls_client.js +27 -3
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +297 -140
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +4 -4
- package/tencentcloud/services/organization/v20210331/organization_client.d.ts +17 -5
- package/tencentcloud/services/organization/v20210331/organization_client.js +24 -6
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +196 -39
- package/tencentcloud/services/pts/v20210728/pts_models.d.ts +9 -9
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +99 -52
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +5 -1
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +6 -0
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +91 -57
- package/test/cls.v20201016.test.js +42 -2
- package/test/organization.v20210331.test.js +34 -4
- package/test/trocket.v20230308.test.js +10 -0
|
@@ -48,6 +48,16 @@ it("cls.v20201016.DescribeExports", async function () {
|
|
|
48
48
|
}
|
|
49
49
|
})
|
|
50
50
|
|
|
51
|
+
it("cls.v20201016.GetAlarmLog", async function () {
|
|
52
|
+
try {
|
|
53
|
+
const data = await client.GetAlarmLog({})
|
|
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
|
+
|
|
51
61
|
it("cls.v20201016.CreateIndex", async function () {
|
|
52
62
|
try {
|
|
53
63
|
const data = await client.CreateIndex({})
|
|
@@ -538,9 +548,19 @@ it("cls.v20201016.DeleteMachineGroupInfo", async function () {
|
|
|
538
548
|
}
|
|
539
549
|
})
|
|
540
550
|
|
|
541
|
-
it("cls.v20201016.
|
|
551
|
+
it("cls.v20201016.DescribeConsoleSharingList", async function () {
|
|
542
552
|
try {
|
|
543
|
-
const data = await client.
|
|
553
|
+
const data = await client.DescribeConsoleSharingList({})
|
|
554
|
+
expect(data).to.be.ok
|
|
555
|
+
} catch(error) {
|
|
556
|
+
expect(error.requestId).to.be.ok
|
|
557
|
+
expect(error.code).to.be.ok
|
|
558
|
+
}
|
|
559
|
+
})
|
|
560
|
+
|
|
561
|
+
it("cls.v20201016.CreateConsoleSharing", async function () {
|
|
562
|
+
try {
|
|
563
|
+
const data = await client.CreateConsoleSharing({})
|
|
544
564
|
expect(data).to.be.ok
|
|
545
565
|
} catch(error) {
|
|
546
566
|
expect(error.requestId).to.be.ok
|
|
@@ -738,6 +758,16 @@ it("cls.v20201016.SplitPartition", async function () {
|
|
|
738
758
|
}
|
|
739
759
|
})
|
|
740
760
|
|
|
761
|
+
it("cls.v20201016.DeleteConsoleSharing", async function () {
|
|
762
|
+
try {
|
|
763
|
+
const data = await client.DeleteConsoleSharing({})
|
|
764
|
+
expect(data).to.be.ok
|
|
765
|
+
} catch(error) {
|
|
766
|
+
expect(error.requestId).to.be.ok
|
|
767
|
+
expect(error.code).to.be.ok
|
|
768
|
+
}
|
|
769
|
+
})
|
|
770
|
+
|
|
741
771
|
it("cls.v20201016.DescribeMachineGroups", async function () {
|
|
742
772
|
try {
|
|
743
773
|
const data = await client.DescribeMachineGroups({})
|
|
@@ -848,6 +878,16 @@ it("cls.v20201016.DescribeShippers", async function () {
|
|
|
848
878
|
}
|
|
849
879
|
})
|
|
850
880
|
|
|
881
|
+
it("cls.v20201016.ModifyConsoleSharing", async function () {
|
|
882
|
+
try {
|
|
883
|
+
const data = await client.ModifyConsoleSharing({})
|
|
884
|
+
expect(data).to.be.ok
|
|
885
|
+
} catch(error) {
|
|
886
|
+
expect(error.requestId).to.be.ok
|
|
887
|
+
expect(error.code).to.be.ok
|
|
888
|
+
}
|
|
889
|
+
})
|
|
890
|
+
|
|
851
891
|
it("cls.v20201016.DescribeDashboards", async function () {
|
|
852
892
|
try {
|
|
853
893
|
const data = await client.DescribeDashboards({})
|
|
@@ -228,6 +228,16 @@ it("organization.v20210331.DeleteAccount", async function () {
|
|
|
228
228
|
}
|
|
229
229
|
})
|
|
230
230
|
|
|
231
|
+
it("organization.v20210331.ListOrgServiceAssignMember", async function () {
|
|
232
|
+
try {
|
|
233
|
+
const data = await client.ListOrgServiceAssignMember({})
|
|
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
|
+
|
|
231
241
|
it("organization.v20210331.RejectJoinShareUnitInvitation", async function () {
|
|
232
242
|
try {
|
|
233
243
|
const data = await client.RejectJoinShareUnitInvitation({})
|
|
@@ -248,6 +258,16 @@ it("organization.v20210331.DeleteOrganizationNodes", async function () {
|
|
|
248
258
|
}
|
|
249
259
|
})
|
|
250
260
|
|
|
261
|
+
it("organization.v20210331.CreateOrgServiceAssign", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.CreateOrgServiceAssign({})
|
|
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
|
+
|
|
251
271
|
it("organization.v20210331.DescribeEffectivePolicy", async function () {
|
|
252
272
|
try {
|
|
253
273
|
const data = await client.DescribeEffectivePolicy({})
|
|
@@ -418,6 +438,16 @@ it("organization.v20210331.CreateOrganizationIdentity", async function () {
|
|
|
418
438
|
}
|
|
419
439
|
})
|
|
420
440
|
|
|
441
|
+
it("organization.v20210331.DeleteOrgServiceAssign", async function () {
|
|
442
|
+
try {
|
|
443
|
+
const data = await client.DeleteOrgServiceAssign({})
|
|
444
|
+
expect(data).to.be.ok
|
|
445
|
+
} catch(error) {
|
|
446
|
+
expect(error.requestId).to.be.ok
|
|
447
|
+
expect(error.code).to.be.ok
|
|
448
|
+
}
|
|
449
|
+
})
|
|
450
|
+
|
|
421
451
|
it("organization.v20210331.DeleteOrganizationIdentity", async function () {
|
|
422
452
|
try {
|
|
423
453
|
const data = await client.DeleteOrganizationIdentity({})
|
|
@@ -588,9 +618,9 @@ it("organization.v20210331.DeletePolicy", async function () {
|
|
|
588
618
|
}
|
|
589
619
|
})
|
|
590
620
|
|
|
591
|
-
it("organization.v20210331.
|
|
621
|
+
it("organization.v20210331.DeleteOrganizationMemberAuthIdentity", async function () {
|
|
592
622
|
try {
|
|
593
|
-
const data = await client.
|
|
623
|
+
const data = await client.DeleteOrganizationMemberAuthIdentity({})
|
|
594
624
|
expect(data).to.be.ok
|
|
595
625
|
} catch(error) {
|
|
596
626
|
expect(error.requestId).to.be.ok
|
|
@@ -638,9 +668,9 @@ it("organization.v20210331.ListTargetsForPolicy", async function () {
|
|
|
638
668
|
}
|
|
639
669
|
})
|
|
640
670
|
|
|
641
|
-
it("organization.v20210331.
|
|
671
|
+
it("organization.v20210331.CheckAccountDelete", async function () {
|
|
642
672
|
try {
|
|
643
|
-
const data = await client.
|
|
673
|
+
const data = await client.CheckAccountDelete({})
|
|
644
674
|
expect(data).to.be.ok
|
|
645
675
|
} catch(error) {
|
|
646
676
|
expect(error.requestId).to.be.ok
|
|
@@ -238,6 +238,16 @@ it("trocket.v20230308.DescribeMQTTMessage", async function () {
|
|
|
238
238
|
}
|
|
239
239
|
})
|
|
240
240
|
|
|
241
|
+
it("trocket.v20230308.DescribeConsumerLag", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DescribeConsumerLag({})
|
|
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
|
+
|
|
241
251
|
it("trocket.v20230308.DescribeMQTTTopic", async function () {
|
|
242
252
|
try {
|
|
243
253
|
const data = await client.DescribeMQTTTopic({})
|