tencentcloud-sdk-nodejs 4.0.796 → 4.0.797
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 +80 -0
- package/SERVICE_CHANGELOG.md +97 -103
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/common/sdk_version.ts +1 -1
- package/src/services/as/v20180419/as_models.ts +1 -1
- package/src/services/domain/v20180808/domain_client.ts +119 -68
- package/src/services/domain/v20180808/domain_models.ts +1056 -843
- package/src/services/dts/v20211206/dts_models.ts +4 -4
- package/src/services/ess/v20201111/ess_models.ts +1 -1
- package/src/services/faceid/v20180301/faceid_models.ts +2 -0
- package/src/services/iotvideo/v20211125/iotvideo_models.ts +9 -0
- package/src/services/redis/v20180412/redis_models.ts +5 -1
- package/src/services/soe/v20180724/soe_models.ts +2 -1
- package/src/services/teo/v20220901/teo_models.ts +3 -3
- package/src/services/tmt/v20180321/tmt_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/as/v20180419/as_models.d.ts +1 -1
- package/tencentcloud/services/domain/v20180808/domain_client.d.ts +21 -5
- package/tencentcloud/services/domain/v20180808/domain_client.js +30 -6
- package/tencentcloud/services/domain/v20180808/domain_models.d.ts +1052 -850
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +4 -4
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +2 -0
- package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +9 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +5 -1
- package/tencentcloud/services/soe/v20180724/soe_models.d.ts +2 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -3
- package/tencentcloud/services/tmt/v20180321/tmt_models.d.ts +1 -1
- package/test/domain.v20180808.test.js +44 -4
|
@@ -1085,12 +1085,12 @@ export interface DescribeCompareReportResponse {
|
|
|
1085
1085
|
* 一致性校验摘要信息
|
|
1086
1086
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1087
1087
|
*/
|
|
1088
|
-
Abstract
|
|
1088
|
+
Abstract?: CompareAbstractInfo;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* 一致性校验详细信息
|
|
1091
1091
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1092
1092
|
*/
|
|
1093
|
-
Detail
|
|
1093
|
+
Detail?: CompareDetailInfo;
|
|
1094
1094
|
/**
|
|
1095
1095
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1096
1096
|
*/
|
|
@@ -5026,12 +5026,12 @@ export interface CompareDetailInfo {
|
|
|
5026
5026
|
* 数据不一致的表详情
|
|
5027
5027
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5028
5028
|
*/
|
|
5029
|
-
Difference
|
|
5029
|
+
Difference?: DifferenceDetail;
|
|
5030
5030
|
/**
|
|
5031
5031
|
* 跳过校验的表详情
|
|
5032
5032
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5033
5033
|
*/
|
|
5034
|
-
Skipped
|
|
5034
|
+
Skipped?: SkippedDetail;
|
|
5035
5035
|
}
|
|
5036
5036
|
/**
|
|
5037
5037
|
* DescribeSubscribeJobs请求参数结构体
|
|
@@ -7158,7 +7158,7 @@ export interface DescribeFlowInfoRequest {
|
|
|
7158
7158
|
|
|
7159
7159
|
可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。
|
|
7160
7160
|
|
|
7161
|
-
[
|
|
7161
|
+
[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)
|
|
7162
7162
|
*/
|
|
7163
7163
|
FlowIds?: Array<string>;
|
|
7164
7164
|
/**
|
|
@@ -169,6 +169,7 @@ export interface IntentionQuestionResult {
|
|
|
169
169
|
-803: "用户主动关闭链接/异常断开链接"
|
|
170
170
|
-998: "系统数据异常"
|
|
171
171
|
-999: "系统未知错误,请联系人工核实"
|
|
172
|
+
若在人脸核身过程失败、未进入意愿确认过程,则该参数返回为空,请参考人脸核身错误码结果(DetectInfoText.ErrCode)
|
|
172
173
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
173
174
|
*/
|
|
174
175
|
FinalResultDetailCode?: number;
|
|
@@ -2446,6 +2447,7 @@ export interface IntentionActionResult {
|
|
|
2446
2447
|
-803: "用户主动关闭链接/异常断开链接"
|
|
2447
2448
|
-998: "系统数据异常"
|
|
2448
2449
|
-999: "系统未知错误,请联系人工核实"
|
|
2450
|
+
若在人脸核身过程失败、未进入意愿确认过程,则该参数返回为空,请参考人脸核身错误码结果(DetectInfoText.ErrCode)
|
|
2449
2451
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2450
2452
|
*/
|
|
2451
2453
|
FinalResultDetailCode?: number;
|
|
@@ -303,6 +303,10 @@ export interface DescribeDevicePackagesRequest {
|
|
|
303
303
|
* 分页拉取偏移
|
|
304
304
|
*/
|
|
305
305
|
Offset: number;
|
|
306
|
+
/**
|
|
307
|
+
* 用户id
|
|
308
|
+
*/
|
|
309
|
+
CSUserId?: string;
|
|
306
310
|
/**
|
|
307
311
|
* 通道id
|
|
308
312
|
*/
|
|
@@ -1009,6 +1013,11 @@ export interface PackageInfo {
|
|
|
1009
1013
|
* 通道id
|
|
1010
1014
|
*/
|
|
1011
1015
|
ChannelId?: number;
|
|
1016
|
+
/**
|
|
1017
|
+
* 用户id
|
|
1018
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1019
|
+
*/
|
|
1020
|
+
CSUserId?: string;
|
|
1012
1021
|
}
|
|
1013
1022
|
/**
|
|
1014
1023
|
* DescribeFirmware请求参数结构体
|
|
@@ -621,9 +621,13 @@ export interface DescribeSlowLogResponse {
|
|
|
621
621
|
*/
|
|
622
622
|
TotalCount?: number;
|
|
623
623
|
/**
|
|
624
|
-
*
|
|
624
|
+
* 该参数存在命名不规范问题,建议用参数InstanceSlowLogDetail取代。慢查询详情。
|
|
625
625
|
*/
|
|
626
626
|
InstanceSlowlogDetail?: Array<InstanceSlowlogDetail>;
|
|
627
|
+
/**
|
|
628
|
+
* 慢查询详情。
|
|
629
|
+
*/
|
|
630
|
+
InstanceSlowLogDetail?: Array<InstanceSlowlogDetail>;
|
|
627
631
|
/**
|
|
628
632
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
629
633
|
*/
|
|
@@ -599,7 +599,8 @@ export interface TransmitOralProcessWithInitRequest {
|
|
|
599
599
|
*/
|
|
600
600
|
Keyword?: string;
|
|
601
601
|
/**
|
|
602
|
-
*
|
|
602
|
+
* 音频存储模式,此参数已废弃,无需设置;
|
|
603
|
+
注:有存储需求的用户建议自行存储至腾讯云COS[对象存储](https://cloud.tencent.com/product/cos)使用。
|
|
603
604
|
*/
|
|
604
605
|
COSBucketURL?: string;
|
|
605
606
|
}
|
|
@@ -1622,9 +1622,9 @@ export interface DescribeBillingDataRequest {
|
|
|
1622
1622
|
Interval: string;
|
|
1623
1623
|
/**
|
|
1624
1624
|
* 过滤条件,详细的过滤条件取值如下:
|
|
1625
|
-
<li>host
|
|
1626
|
-
<li>proxy-id
|
|
1627
|
-
<li>region-id
|
|
1625
|
+
<li>host:按照域名进行过滤。示例值:test.example.com。<br></li>
|
|
1626
|
+
<li>proxy-id:按照四层代理实例 ID 进行过滤。示例值:sid-2rugn89bkla9。<br></li>
|
|
1627
|
+
<li>region-id:按照计费大区进行过滤。可选项如下:<br> CH:中国大陆境内<br> AF:非洲<br> AS1:亚太一区<br> AS2:亚太二区<br> AS3:亚太三区<br> EU:欧洲<br> MidEast:中东<br> NA:北美<br> SA:南美</li>
|
|
1628
1628
|
*/
|
|
1629
1629
|
Filters?: Array<BillingDataFilter>;
|
|
1630
1630
|
}
|
|
@@ -68,9 +68,9 @@ it("domain.v20180808.DeletePhoneEmail", async function () {
|
|
|
68
68
|
}
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
-
it("domain.v20180808.
|
|
71
|
+
it("domain.v20180808.DescribePreDomainList", async function () {
|
|
72
72
|
try {
|
|
73
|
-
const data = await client.
|
|
73
|
+
const data = await client.DescribePreDomainList({})
|
|
74
74
|
expect(data).to.be.ok
|
|
75
75
|
} catch(error) {
|
|
76
76
|
expect(error.requestId).to.be.ok
|
|
@@ -158,6 +158,16 @@ it("domain.v20180808.CheckDomain", async function () {
|
|
|
158
158
|
}
|
|
159
159
|
})
|
|
160
160
|
|
|
161
|
+
it("domain.v20180808.ReservedPreDomains", async function () {
|
|
162
|
+
try {
|
|
163
|
+
const data = await client.ReservedPreDomains({})
|
|
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("domain.v20180808.SyncCustomDnsHost", async function () {
|
|
162
172
|
try {
|
|
163
173
|
const data = await client.SyncCustomDnsHost({})
|
|
@@ -228,6 +238,16 @@ it("domain.v20180808.DescribeTemplateList", async function () {
|
|
|
228
238
|
}
|
|
229
239
|
})
|
|
230
240
|
|
|
241
|
+
it("domain.v20180808.DeleteReservedPreDomainInfo", async function () {
|
|
242
|
+
try {
|
|
243
|
+
const data = await client.DeleteReservedPreDomainInfo({})
|
|
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
|
+
|
|
231
251
|
it("domain.v20180808.BatchModifyDomainInfo", async function () {
|
|
232
252
|
try {
|
|
233
253
|
const data = await client.BatchModifyDomainInfo({})
|
|
@@ -278,9 +298,9 @@ it("domain.v20180808.CreateTemplate", async function () {
|
|
|
278
298
|
}
|
|
279
299
|
})
|
|
280
300
|
|
|
281
|
-
it("domain.v20180808.
|
|
301
|
+
it("domain.v20180808.DescribeReservedPreDomainInfo", async function () {
|
|
282
302
|
try {
|
|
283
|
-
const data = await client.
|
|
303
|
+
const data = await client.DescribeReservedPreDomainInfo({})
|
|
284
304
|
expect(data).to.be.ok
|
|
285
305
|
} catch(error) {
|
|
286
306
|
expect(error.requestId).to.be.ok
|
|
@@ -308,6 +328,16 @@ it("domain.v20180808.DescribePhoneEmailList", async function () {
|
|
|
308
328
|
}
|
|
309
329
|
})
|
|
310
330
|
|
|
331
|
+
it("domain.v20180808.ModifyDomainOwnerBatch", async function () {
|
|
332
|
+
try {
|
|
333
|
+
const data = await client.ModifyDomainOwnerBatch({})
|
|
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
|
+
|
|
311
341
|
it("domain.v20180808.RenewDomainBatch", async function () {
|
|
312
342
|
try {
|
|
313
343
|
const data = await client.RenewDomainBatch({})
|
|
@@ -328,6 +358,16 @@ it("domain.v20180808.DescribeDomainSimpleInfo", async function () {
|
|
|
328
358
|
}
|
|
329
359
|
})
|
|
330
360
|
|
|
361
|
+
it("domain.v20180808.SendPhoneEmailCode", async function () {
|
|
362
|
+
try {
|
|
363
|
+
const data = await client.SendPhoneEmailCode({})
|
|
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
|
+
|
|
331
371
|
it("domain.v20180808.DescribeDomainPriceList", async function () {
|
|
332
372
|
try {
|
|
333
373
|
const data = await client.DescribeDomainPriceList({})
|