tencentcloud-sdk-nodejs 4.0.943 → 4.0.944
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 +175 -0
- package/SERVICE_CHANGELOG.md +283 -25
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +30 -18
- package/src/services/apigateway/v20180808/apigateway_models.ts +56 -41
- package/src/services/cvm/v20170312/cvm_models.ts +11 -11
- package/src/services/emr/v20190103/emr_client.ts +43 -16
- package/src/services/emr/v20190103/emr_models.ts +195 -38
- package/src/services/ess/v20201111/ess_client.ts +1 -1
- package/src/services/ess/v20201111/ess_models.ts +8 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +9 -0
- package/src/services/faceid/v20180301/faceid_models.ts +8 -0
- package/src/services/postgres/v20170312/postgres_client.ts +26 -1
- package/src/services/postgres/v20170312/postgres_models.ts +138 -19
- package/src/services/sms/v20190711/sms_models.ts +3 -3
- package/src/services/sms/v20210111/sms_models.ts +9 -8
- package/src/services/teo/v20220901/teo_models.ts +11 -7
- package/src/services/vod/v20180717/vod_client.ts +10 -2
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +11 -7
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +14 -8
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +54 -41
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +11 -11
- 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 +188 -38
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +1 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +8 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +9 -0
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +8 -0
- package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +9 -1
- package/tencentcloud/services/postgres/v20170312/postgres_client.js +12 -0
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +133 -19
- package/tencentcloud/services/sms/v20190711/sms_models.d.ts +3 -3
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +9 -8
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +11 -7
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +9 -1
- package/tencentcloud/services/vod/v20180717/vod_client.js +9 -1
- package/test/apigateway.v20180808.test.js +14 -4
- package/test/emr.v20190103.test.js +24 -4
- package/test/postgres.v20170312.test.js +20 -0
|
@@ -148,6 +148,16 @@ it("emr.v20190103.DescribeCvmQuota", async function () {
|
|
|
148
148
|
}
|
|
149
149
|
})
|
|
150
150
|
|
|
151
|
+
it("emr.v20190103.ModifyGlobalConfig", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.ModifyGlobalConfig({})
|
|
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
|
+
|
|
151
161
|
it("emr.v20190103.ScaleOutInstance", async function () {
|
|
152
162
|
try {
|
|
153
163
|
const data = await client.ScaleOutInstance({})
|
|
@@ -158,6 +168,16 @@ it("emr.v20190103.ScaleOutInstance", async function () {
|
|
|
158
168
|
}
|
|
159
169
|
})
|
|
160
170
|
|
|
171
|
+
it("emr.v20190103.DescribeResourceSchedule", async function () {
|
|
172
|
+
try {
|
|
173
|
+
const data = await client.DescribeResourceSchedule({})
|
|
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
|
+
|
|
161
181
|
it("emr.v20190103.ModifyUserManagerPwd", async function () {
|
|
162
182
|
try {
|
|
163
183
|
const data = await client.ModifyUserManagerPwd({})
|
|
@@ -418,9 +438,9 @@ it("emr.v20190103.InquiryPriceCreateInstance", async function () {
|
|
|
418
438
|
}
|
|
419
439
|
})
|
|
420
440
|
|
|
421
|
-
it("emr.v20190103.
|
|
441
|
+
it("emr.v20190103.DescribeGlobalConfig", async function () {
|
|
422
442
|
try {
|
|
423
|
-
const data = await client.
|
|
443
|
+
const data = await client.DescribeGlobalConfig({})
|
|
424
444
|
expect(data).to.be.ok
|
|
425
445
|
} catch(error) {
|
|
426
446
|
expect(error.requestId).to.be.ok
|
|
@@ -518,9 +538,9 @@ it("emr.v20190103.DescribeAutoScaleStrategies", async function () {
|
|
|
518
538
|
}
|
|
519
539
|
})
|
|
520
540
|
|
|
521
|
-
it("emr.v20190103.
|
|
541
|
+
it("emr.v20190103.AddMetricScaleStrategy", async function () {
|
|
522
542
|
try {
|
|
523
|
-
const data = await client.
|
|
543
|
+
const data = await client.AddMetricScaleStrategy({})
|
|
524
544
|
expect(data).to.be.ok
|
|
525
545
|
} catch(error) {
|
|
526
546
|
expect(error.requestId).to.be.ok
|
|
@@ -368,6 +368,16 @@ it("postgres.v20170312.CreateServerlessDBInstance", async function () {
|
|
|
368
368
|
}
|
|
369
369
|
})
|
|
370
370
|
|
|
371
|
+
it("postgres.v20170312.CreateDatabase", async function () {
|
|
372
|
+
try {
|
|
373
|
+
const data = await client.CreateDatabase({})
|
|
374
|
+
expect(data).to.be.ok
|
|
375
|
+
} catch(error) {
|
|
376
|
+
expect(error.requestId).to.be.ok
|
|
377
|
+
expect(error.code).to.be.ok
|
|
378
|
+
}
|
|
379
|
+
})
|
|
380
|
+
|
|
371
381
|
it("postgres.v20170312.CreateAccount", async function () {
|
|
372
382
|
try {
|
|
373
383
|
const data = await client.CreateAccount({})
|
|
@@ -868,6 +878,16 @@ it("postgres.v20170312.OpenDBExtranetAccess", async function () {
|
|
|
868
878
|
}
|
|
869
879
|
})
|
|
870
880
|
|
|
881
|
+
it("postgres.v20170312.ModifyDatabaseOwner", async function () {
|
|
882
|
+
try {
|
|
883
|
+
const data = await client.ModifyDatabaseOwner({})
|
|
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
|
+
|
|
871
891
|
it("postgres.v20170312.DeleteAccount", async function () {
|
|
872
892
|
try {
|
|
873
893
|
const data = await client.DeleteAccount({})
|