tencentcloud-sdk-nodejs 4.0.987 → 4.0.988
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 +236 -0
- package/SERVICE_CHANGELOG.md +282 -215
- package/package.json +1 -1
- package/products.md +20 -20
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_client.ts +24 -11
- package/src/services/aiart/v20221229/aiart_models.ts +69 -13
- package/src/services/batch/v20170312/batch_models.ts +6 -6
- package/src/services/cfw/v20190904/cfw_models.ts +1 -1
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +28 -14
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +123 -46
- package/src/services/dbbrain/v20210527/dbbrain_models.ts +1 -1
- package/src/services/emr/v20190103/emr_client.ts +59 -24
- package/src/services/emr/v20190103/emr_models.ts +656 -305
- package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +5 -0
- package/src/services/ivld/v20210903/ivld_client.ts +2 -4
- package/src/services/ivld/v20210903/ivld_models.ts +19 -19
- package/src/services/lcic/v20220817/lcic_models.ts +1 -1
- package/src/services/lke/v20231130/lke_client.ts +8 -4
- package/src/services/mps/v20190612/mps_models.ts +26 -0
- package/src/services/ocr/v20181119/ocr_models.ts +38 -5
- package/src/services/postgres/v20170312/postgres_models.ts +83 -83
- package/src/services/tdmq/v20200217/tdmq_client.ts +4 -2
- package/src/services/vclm/v20240523/vclm_models.ts +3 -3
- package/src/services/vod/v20180717/vod_models.ts +23 -15
- package/src/services/vpc/v20170312/vpc_client.ts +136 -35
- package/src/services/vpc/v20170312/vpc_models.ts +388 -100
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_client.d.ts +12 -7
- package/tencentcloud/services/aiart/v20221229/aiart_client.js +14 -7
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +67 -13
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +6 -6
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +9 -5
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +12 -6
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +119 -46
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +1 -1
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +13 -5
- package/tencentcloud/services/emr/v20190103/emr_client.js +18 -6
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +644 -308
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +5 -0
- package/tencentcloud/services/ivld/v20210903/ivld_client.d.ts +0 -2
- package/tencentcloud/services/ivld/v20210903/ivld_client.js +0 -2
- package/tencentcloud/services/ivld/v20210903/ivld_models.d.ts +19 -19
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +1 -1
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +6 -2
- package/tencentcloud/services/lke/v20231130/lke_client.js +6 -2
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +26 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +38 -5
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +83 -83
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +3 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +3 -1
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +3 -3
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +23 -15
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +59 -14
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +76 -17
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +374 -100
- package/test/aiart.v20221229.test.js +12 -2
- package/test/cynosdb.v20190107.test.js +14 -4
- package/test/emr.v20190103.test.js +24 -4
- package/test/vpc.v20170312.test.js +84 -14
|
@@ -188,9 +188,9 @@ it("cynosdb.v20190107.CloseProxy", async function () {
|
|
|
188
188
|
}
|
|
189
189
|
})
|
|
190
190
|
|
|
191
|
-
it("cynosdb.v20190107.
|
|
191
|
+
it("cynosdb.v20190107.DescribeProxySpecs", async function () {
|
|
192
192
|
try {
|
|
193
|
-
const data = await client.
|
|
193
|
+
const data = await client.DescribeProxySpecs({})
|
|
194
194
|
expect(data).to.be.ok
|
|
195
195
|
} catch(error) {
|
|
196
196
|
expect(error.requestId).to.be.ok
|
|
@@ -948,6 +948,16 @@ it("cynosdb.v20190107.BindClusterResourcePackages", async function () {
|
|
|
948
948
|
}
|
|
949
949
|
})
|
|
950
950
|
|
|
951
|
+
it("cynosdb.v20190107.DescribeServerlessInstanceSpecs", async function () {
|
|
952
|
+
try {
|
|
953
|
+
const data = await client.DescribeServerlessInstanceSpecs({})
|
|
954
|
+
expect(data).to.be.ok
|
|
955
|
+
} catch(error) {
|
|
956
|
+
expect(error.requestId).to.be.ok
|
|
957
|
+
expect(error.code).to.be.ok
|
|
958
|
+
}
|
|
959
|
+
})
|
|
960
|
+
|
|
951
961
|
it("cynosdb.v20190107.DescribeAuditLogs", async function () {
|
|
952
962
|
try {
|
|
953
963
|
const data = await client.DescribeAuditLogs({})
|
|
@@ -1318,9 +1328,9 @@ it("cynosdb.v20190107.DescribeMaintainPeriod", async function () {
|
|
|
1318
1328
|
}
|
|
1319
1329
|
})
|
|
1320
1330
|
|
|
1321
|
-
it("cynosdb.v20190107.
|
|
1331
|
+
it("cynosdb.v20190107.ExportResourcePackageDeductDetails", async function () {
|
|
1322
1332
|
try {
|
|
1323
|
-
const data = await client.
|
|
1333
|
+
const data = await client.ExportResourcePackageDeductDetails({})
|
|
1324
1334
|
expect(data).to.be.ok
|
|
1325
1335
|
} catch(error) {
|
|
1326
1336
|
expect(error.requestId).to.be.ok
|
|
@@ -18,9 +18,9 @@ const client = new tencentcloud.emr.v20190103.Client({
|
|
|
18
18
|
})
|
|
19
19
|
describe("emr.v20190103.test.js", function () {
|
|
20
20
|
|
|
21
|
-
it("emr.v20190103.
|
|
21
|
+
it("emr.v20190103.DescribeInstanceRenewNodes", async function () {
|
|
22
22
|
try {
|
|
23
|
-
const data = await client.
|
|
23
|
+
const data = await client.DescribeInstanceRenewNodes({})
|
|
24
24
|
expect(data).to.be.ok
|
|
25
25
|
} catch(error) {
|
|
26
26
|
expect(error.requestId).to.be.ok
|
|
@@ -98,9 +98,9 @@ it("emr.v20190103.ModifyYarnQueueV2", async function () {
|
|
|
98
98
|
}
|
|
99
99
|
})
|
|
100
100
|
|
|
101
|
-
it("emr.v20190103.
|
|
101
|
+
it("emr.v20190103.CreateCloudInstance", async function () {
|
|
102
102
|
try {
|
|
103
|
-
const data = await client.
|
|
103
|
+
const data = await client.CreateCloudInstance({})
|
|
104
104
|
expect(data).to.be.ok
|
|
105
105
|
} catch(error) {
|
|
106
106
|
expect(error.requestId).to.be.ok
|
|
@@ -158,6 +158,16 @@ it("emr.v20190103.DescribeCvmQuota", async function () {
|
|
|
158
158
|
}
|
|
159
159
|
})
|
|
160
160
|
|
|
161
|
+
it("emr.v20190103.DescribeYarnApplications", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.DescribeYarnApplications({})
|
|
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
|
+
|
|
161
171
|
it("emr.v20190103.ModifyGlobalConfig", async function () {
|
|
162
172
|
try {
|
|
163
173
|
const data = await client.ModifyGlobalConfig({})
|
|
@@ -648,6 +658,16 @@ it("emr.v20190103.DescribeInsightList", async function () {
|
|
|
648
658
|
}
|
|
649
659
|
})
|
|
650
660
|
|
|
661
|
+
it("emr.v20190103.ModifyPodNum", async function () {
|
|
662
|
+
try {
|
|
663
|
+
const data = await client.ModifyPodNum({})
|
|
664
|
+
expect(data).to.be.ok
|
|
665
|
+
} catch(error) {
|
|
666
|
+
expect(error.requestId).to.be.ok
|
|
667
|
+
expect(error.code).to.be.ok
|
|
668
|
+
}
|
|
669
|
+
})
|
|
670
|
+
|
|
651
671
|
it("emr.v20190103.ScaleOutCluster", async function () {
|
|
652
672
|
try {
|
|
653
673
|
const data = await client.ScaleOutCluster({})
|
|
@@ -88,6 +88,16 @@ it("vpc.v20170312.ModifyAddressInternetChargeType", async function () {
|
|
|
88
88
|
}
|
|
89
89
|
})
|
|
90
90
|
|
|
91
|
+
it("vpc.v20170312.ModifyIPv6AddressesAttributes", async function () {
|
|
92
|
+
try {
|
|
93
|
+
const data = await client.ModifyIPv6AddressesAttributes({})
|
|
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
|
+
|
|
91
101
|
it("vpc.v20170312.CreatePrivateNatGateway", async function () {
|
|
92
102
|
try {
|
|
93
103
|
const data = await client.CreatePrivateNatGateway({})
|
|
@@ -1118,6 +1128,16 @@ it("vpc.v20170312.UnassignIpv6Addresses", async function () {
|
|
|
1118
1128
|
}
|
|
1119
1129
|
})
|
|
1120
1130
|
|
|
1131
|
+
it("vpc.v20170312.AssociateIPv6Address", async function () {
|
|
1132
|
+
try {
|
|
1133
|
+
const data = await client.AssociateIPv6Address({})
|
|
1134
|
+
expect(data).to.be.ok
|
|
1135
|
+
} catch(error) {
|
|
1136
|
+
expect(error.requestId).to.be.ok
|
|
1137
|
+
expect(error.code).to.be.ok
|
|
1138
|
+
}
|
|
1139
|
+
})
|
|
1140
|
+
|
|
1121
1141
|
it("vpc.v20170312.DeleteAddressTemplateGroup", async function () {
|
|
1122
1142
|
try {
|
|
1123
1143
|
const data = await client.DeleteAddressTemplateGroup({})
|
|
@@ -1188,9 +1208,9 @@ it("vpc.v20170312.ModifyVpnGatewayRoutes", async function () {
|
|
|
1188
1208
|
}
|
|
1189
1209
|
})
|
|
1190
1210
|
|
|
1191
|
-
it("vpc.v20170312.
|
|
1211
|
+
it("vpc.v20170312.ModifyIPv6AddressesBandwidth", async function () {
|
|
1192
1212
|
try {
|
|
1193
|
-
const data = await client.
|
|
1213
|
+
const data = await client.ModifyIPv6AddressesBandwidth({})
|
|
1194
1214
|
expect(data).to.be.ok
|
|
1195
1215
|
} catch(error) {
|
|
1196
1216
|
expect(error.requestId).to.be.ok
|
|
@@ -1198,9 +1218,9 @@ it("vpc.v20170312.DescribeVpcEndPointService", async function () {
|
|
|
1198
1218
|
}
|
|
1199
1219
|
})
|
|
1200
1220
|
|
|
1201
|
-
it("vpc.v20170312.
|
|
1221
|
+
it("vpc.v20170312.DescribeCrossBorderCcnRegionBandwidthLimits", async function () {
|
|
1202
1222
|
try {
|
|
1203
|
-
const data = await client.
|
|
1223
|
+
const data = await client.DescribeCrossBorderCcnRegionBandwidthLimits({})
|
|
1204
1224
|
expect(data).to.be.ok
|
|
1205
1225
|
} catch(error) {
|
|
1206
1226
|
expect(error.requestId).to.be.ok
|
|
@@ -1228,16 +1248,6 @@ it("vpc.v20170312.DeleteVpnGatewaySslClient", async function () {
|
|
|
1228
1248
|
}
|
|
1229
1249
|
})
|
|
1230
1250
|
|
|
1231
|
-
it("vpc.v20170312.DescribeCrossBorderCcnRegionBandwidthLimits", async function () {
|
|
1232
|
-
try {
|
|
1233
|
-
const data = await client.DescribeCrossBorderCcnRegionBandwidthLimits({})
|
|
1234
|
-
expect(data).to.be.ok
|
|
1235
|
-
} catch(error) {
|
|
1236
|
-
expect(error.requestId).to.be.ok
|
|
1237
|
-
expect(error.code).to.be.ok
|
|
1238
|
-
}
|
|
1239
|
-
})
|
|
1240
|
-
|
|
1241
1251
|
it("vpc.v20170312.CreateNatGatewayDestinationIpPortTranslationNatRule", async function () {
|
|
1242
1252
|
try {
|
|
1243
1253
|
const data = await client.CreateNatGatewayDestinationIpPortTranslationNatRule({})
|
|
@@ -2368,6 +2378,16 @@ it("vpc.v20170312.DeleteNatGatewaySourceIpTranslationNatRule", async function ()
|
|
|
2368
2378
|
}
|
|
2369
2379
|
})
|
|
2370
2380
|
|
|
2381
|
+
it("vpc.v20170312.DisassociateIPv6Address", async function () {
|
|
2382
|
+
try {
|
|
2383
|
+
const data = await client.DisassociateIPv6Address({})
|
|
2384
|
+
expect(data).to.be.ok
|
|
2385
|
+
} catch(error) {
|
|
2386
|
+
expect(error.requestId).to.be.ok
|
|
2387
|
+
expect(error.code).to.be.ok
|
|
2388
|
+
}
|
|
2389
|
+
})
|
|
2390
|
+
|
|
2371
2391
|
it("vpc.v20170312.ModifyNatGatewaySourceIpTranslationNatRule", async function () {
|
|
2372
2392
|
try {
|
|
2373
2393
|
const data = await client.ModifyNatGatewaySourceIpTranslationNatRule({})
|
|
@@ -2798,6 +2818,16 @@ it("vpc.v20170312.DescribeTrafficQosPolicy", async function () {
|
|
|
2798
2818
|
}
|
|
2799
2819
|
})
|
|
2800
2820
|
|
|
2821
|
+
it("vpc.v20170312.DescribeIPv6Addresses", async function () {
|
|
2822
|
+
try {
|
|
2823
|
+
const data = await client.DescribeIPv6Addresses({})
|
|
2824
|
+
expect(data).to.be.ok
|
|
2825
|
+
} catch(error) {
|
|
2826
|
+
expect(error.requestId).to.be.ok
|
|
2827
|
+
expect(error.code).to.be.ok
|
|
2828
|
+
}
|
|
2829
|
+
})
|
|
2830
|
+
|
|
2801
2831
|
it("vpc.v20170312.CreateFlowLog", async function () {
|
|
2802
2832
|
try {
|
|
2803
2833
|
const data = await client.CreateFlowLog({})
|
|
@@ -2928,6 +2958,26 @@ it("vpc.v20170312.DeleteSnapshotPolicies", async function () {
|
|
|
2928
2958
|
}
|
|
2929
2959
|
})
|
|
2930
2960
|
|
|
2961
|
+
it("vpc.v20170312.DescribeVpcEndPointService", async function () {
|
|
2962
|
+
try {
|
|
2963
|
+
const data = await client.DescribeVpcEndPointService({})
|
|
2964
|
+
expect(data).to.be.ok
|
|
2965
|
+
} catch(error) {
|
|
2966
|
+
expect(error.requestId).to.be.ok
|
|
2967
|
+
expect(error.code).to.be.ok
|
|
2968
|
+
}
|
|
2969
|
+
})
|
|
2970
|
+
|
|
2971
|
+
it("vpc.v20170312.RefreshDirectConnectGatewayRouteToNatGateway", async function () {
|
|
2972
|
+
try {
|
|
2973
|
+
const data = await client.RefreshDirectConnectGatewayRouteToNatGateway({})
|
|
2974
|
+
expect(data).to.be.ok
|
|
2975
|
+
} catch(error) {
|
|
2976
|
+
expect(error.requestId).to.be.ok
|
|
2977
|
+
expect(error.code).to.be.ok
|
|
2978
|
+
}
|
|
2979
|
+
})
|
|
2980
|
+
|
|
2931
2981
|
it("vpc.v20170312.CreatePrivateNatGatewayTranslationNatRule", async function () {
|
|
2932
2982
|
try {
|
|
2933
2983
|
const data = await client.CreatePrivateNatGatewayTranslationNatRule({})
|
|
@@ -3288,6 +3338,16 @@ it("vpc.v20170312.ModifyHighPriorityRouteTableAttribute", async function () {
|
|
|
3288
3338
|
}
|
|
3289
3339
|
})
|
|
3290
3340
|
|
|
3341
|
+
it("vpc.v20170312.ReleaseIPv6Addresses", async function () {
|
|
3342
|
+
try {
|
|
3343
|
+
const data = await client.ReleaseIPv6Addresses({})
|
|
3344
|
+
expect(data).to.be.ok
|
|
3345
|
+
} catch(error) {
|
|
3346
|
+
expect(error.requestId).to.be.ok
|
|
3347
|
+
expect(error.code).to.be.ok
|
|
3348
|
+
}
|
|
3349
|
+
})
|
|
3350
|
+
|
|
3291
3351
|
it("vpc.v20170312.DeleteReserveIpAddresses", async function () {
|
|
3292
3352
|
try {
|
|
3293
3353
|
const data = await client.DeleteReserveIpAddresses({})
|
|
@@ -3628,6 +3688,16 @@ it("vpc.v20170312.MigrateNetworkInterface", async function () {
|
|
|
3628
3688
|
}
|
|
3629
3689
|
})
|
|
3630
3690
|
|
|
3691
|
+
it("vpc.v20170312.AllocateIPv6Addresses", async function () {
|
|
3692
|
+
try {
|
|
3693
|
+
const data = await client.AllocateIPv6Addresses({})
|
|
3694
|
+
expect(data).to.be.ok
|
|
3695
|
+
} catch(error) {
|
|
3696
|
+
expect(error.requestId).to.be.ok
|
|
3697
|
+
expect(error.code).to.be.ok
|
|
3698
|
+
}
|
|
3699
|
+
})
|
|
3700
|
+
|
|
3631
3701
|
it("vpc.v20170312.ModifyAssistantCidr", async function () {
|
|
3632
3702
|
try {
|
|
3633
3703
|
const data = await client.ModifyAssistantCidr({})
|