tencentcloud-sdk-nodejs 4.1.21 → 4.1.22
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/es/common/sdk_version.js +1 -1
- package/es/services/cat/v20180409/cat_client.js +5 -2
- package/es/services/ioa/v20220601/ioa_client.js +6 -0
- package/es/services/vpc/v20170312/vpc_client.js +17 -2
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cat/v20180409/cat_client.d.ts +7 -3
- package/tencentcloud/services/cat/v20180409/cat_client.js +9 -3
- package/tencentcloud/services/cat/v20180409/cat_models.d.ts +117 -63
- package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +13 -6
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +32 -28
- package/tencentcloud/services/cdwpg/v20201230/cdwpg_models.d.ts +0 -6
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +1 -1
- package/tencentcloud/services/clb/v20180317/clb_client.js +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +145 -211
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +8 -0
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +1 -1
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +8 -6
- package/tencentcloud/services/gwlb/v20240906/gwlb_client.d.ts +0 -1
- package/tencentcloud/services/gwlb/v20240906/gwlb_client.js +0 -1
- package/tencentcloud/services/gwlb/v20240906/gwlb_models.d.ts +2 -2
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +1 -1
- package/tencentcloud/services/ioa/v20220601/ioa_client.d.ts +9 -1
- package/tencentcloud/services/ioa/v20220601/ioa_client.js +12 -0
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +262 -114
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +3 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +3 -1
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +5 -3
- package/tencentcloud/services/lke/v20231130/lke_client.js +4 -2
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +139 -96
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +2 -2
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +2 -2
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +1 -1
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +46 -98
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +4 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +23 -3
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +33 -3
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +290 -93
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +53 -0
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.22";
|
|
@@ -15,6 +15,9 @@ export class Client extends AbstractClient {
|
|
|
15
15
|
async UpdateProbeTaskAttributes(req, cb) {
|
|
16
16
|
return this.request("UpdateProbeTaskAttributes", req, cb);
|
|
17
17
|
}
|
|
18
|
+
async DescribeProbeNodes(req, cb) {
|
|
19
|
+
return this.request("DescribeProbeNodes", req, cb);
|
|
20
|
+
}
|
|
18
21
|
async DescribeNodes(req, cb) {
|
|
19
22
|
return this.request("DescribeNodes", req, cb);
|
|
20
23
|
}
|
|
@@ -27,8 +30,8 @@ export class Client extends AbstractClient {
|
|
|
27
30
|
async CreateProbeTasks(req, cb) {
|
|
28
31
|
return this.request("CreateProbeTasks", req, cb);
|
|
29
32
|
}
|
|
30
|
-
async
|
|
31
|
-
return this.request("
|
|
33
|
+
async DescribeNodeGroups(req, cb) {
|
|
34
|
+
return this.request("DescribeNodeGroups", req, cb);
|
|
32
35
|
}
|
|
33
36
|
async DescribeDetailedSingleProbeData(req, cb) {
|
|
34
37
|
return this.request("DescribeDetailedSingleProbeData", req, cb);
|
|
@@ -9,12 +9,18 @@ export class Client extends AbstractClient {
|
|
|
9
9
|
async DescribeLocalAccounts(req, cb) {
|
|
10
10
|
return this.request("DescribeLocalAccounts", req, cb);
|
|
11
11
|
}
|
|
12
|
+
async DescribeSoftCensusListByDevice(req, cb) {
|
|
13
|
+
return this.request("DescribeSoftCensusListByDevice", req, cb);
|
|
14
|
+
}
|
|
12
15
|
async DescribeDevices(req, cb) {
|
|
13
16
|
return this.request("DescribeDevices", req, cb);
|
|
14
17
|
}
|
|
15
18
|
async CreateDLPFileDetectionTask(req, cb) {
|
|
16
19
|
return this.request("CreateDLPFileDetectionTask", req, cb);
|
|
17
20
|
}
|
|
21
|
+
async CreatePrivilegeCode(req, cb) {
|
|
22
|
+
return this.request("CreatePrivilegeCode", req, cb);
|
|
23
|
+
}
|
|
18
24
|
async DescribeRootAccountGroup(req, cb) {
|
|
19
25
|
return this.request("DescribeRootAccountGroup", req, cb);
|
|
20
26
|
}
|
|
@@ -252,6 +252,9 @@ export class Client extends AbstractClient {
|
|
|
252
252
|
async DescribeSubnets(req, cb) {
|
|
253
253
|
return this.request("DescribeSubnets", req, cb);
|
|
254
254
|
}
|
|
255
|
+
async DescribeGlobalRoutes(req, cb) {
|
|
256
|
+
return this.request("DescribeGlobalRoutes", req, cb);
|
|
257
|
+
}
|
|
255
258
|
async ModifyPrivateNatGatewayTranslationAclRule(req, cb) {
|
|
256
259
|
return this.request("ModifyPrivateNatGatewayTranslationAclRule", req, cb);
|
|
257
260
|
}
|
|
@@ -432,6 +435,9 @@ export class Client extends AbstractClient {
|
|
|
432
435
|
async ModifyVpnGatewayCcnRoutes(req, cb) {
|
|
433
436
|
return this.request("ModifyVpnGatewayCcnRoutes", req, cb);
|
|
434
437
|
}
|
|
438
|
+
async DeleteGlobalRoutes(req, cb) {
|
|
439
|
+
return this.request("DeleteGlobalRoutes", req, cb);
|
|
440
|
+
}
|
|
435
441
|
async DeletePrivateNatGatewayDestinationIpPortTranslationNatRule(req, cb) {
|
|
436
442
|
return this.request("DeletePrivateNatGatewayDestinationIpPortTranslationNatRule", req, cb);
|
|
437
443
|
}
|
|
@@ -963,6 +969,9 @@ export class Client extends AbstractClient {
|
|
|
963
969
|
async DescribeNatGateways(req, cb) {
|
|
964
970
|
return this.request("DescribeNatGateways", req, cb);
|
|
965
971
|
}
|
|
972
|
+
async CreateGlobalRoutes(req, cb) {
|
|
973
|
+
return this.request("CreateGlobalRoutes", req, cb);
|
|
974
|
+
}
|
|
966
975
|
async ResetHighPriorityRoutes(req, cb) {
|
|
967
976
|
return this.request("ResetHighPriorityRoutes", req, cb);
|
|
968
977
|
}
|
|
@@ -1011,6 +1020,9 @@ export class Client extends AbstractClient {
|
|
|
1011
1020
|
async AssociateAddress(req, cb) {
|
|
1012
1021
|
return this.request("AssociateAddress", req, cb);
|
|
1013
1022
|
}
|
|
1023
|
+
async ModifyGlobalRouteECMPAlgorithm(req, cb) {
|
|
1024
|
+
return this.request("ModifyGlobalRouteECMPAlgorithm", req, cb);
|
|
1025
|
+
}
|
|
1014
1026
|
async DeleteVpcPeeringConnection(req, cb) {
|
|
1015
1027
|
return this.request("DeleteVpcPeeringConnection", req, cb);
|
|
1016
1028
|
}
|
|
@@ -1050,8 +1062,8 @@ export class Client extends AbstractClient {
|
|
|
1050
1062
|
async DescribeRouteList(req, cb) {
|
|
1051
1063
|
return this.request("DescribeRouteList", req, cb);
|
|
1052
1064
|
}
|
|
1053
|
-
async
|
|
1054
|
-
return this.request("
|
|
1065
|
+
async ModifyGlobalRoutes(req, cb) {
|
|
1066
|
+
return this.request("ModifyGlobalRoutes", req, cb);
|
|
1055
1067
|
}
|
|
1056
1068
|
async ModifyHighPriorityRouteTableAttribute(req, cb) {
|
|
1057
1069
|
return this.request("ModifyHighPriorityRouteTableAttribute", req, cb);
|
|
@@ -1179,6 +1191,9 @@ export class Client extends AbstractClient {
|
|
|
1179
1191
|
async CreateTrafficPackages(req, cb) {
|
|
1180
1192
|
return this.request("CreateTrafficPackages", req, cb);
|
|
1181
1193
|
}
|
|
1194
|
+
async CreateNetDetect(req, cb) {
|
|
1195
|
+
return this.request("CreateNetDetect", req, cb);
|
|
1196
|
+
}
|
|
1182
1197
|
async DescribeSnapshotFiles(req, cb) {
|
|
1183
1198
|
return this.request("DescribeSnapshotFiles", req, cb);
|
|
1184
1199
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.22";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeNodesRequest, SuspendProbeTaskResponse, DescribeInstantTasksResponse, DescribeDetailedSingleProbeDataRequest, DescribeProbeTasksResponse, UpdateProbeTaskAttributesResponse, DeleteProbeTaskRequest, DescribeDetailedSingleProbeDataResponse, SuspendProbeTaskRequest, DescribeProbeMetricDataRequest, UpdateProbeTaskAttributesRequest,
|
|
3
|
+
import { DescribeNodesRequest, SuspendProbeTaskResponse, DescribeProbeNodesResponse, DescribeInstantTasksResponse, DescribeDetailedSingleProbeDataRequest, DescribeProbeTasksResponse, UpdateProbeTaskAttributesResponse, DeleteProbeTaskRequest, DescribeDetailedSingleProbeDataResponse, SuspendProbeTaskRequest, DescribeProbeMetricDataRequest, UpdateProbeTaskAttributesRequest, DescribeProbeTasksRequest, DescribeInstantTasksRequest, UpdateProbeTaskConfigurationListRequest, CreateProbeTasksRequest, DescribeNodeGroupsRequest, ResumeProbeTaskResponse, DeleteProbeTaskResponse, CreateProbeTasksResponse, ResumeProbeTaskRequest, DescribeProbeNodesRequest, DescribeNodesResponse, DescribeProbeMetricDataResponse, DescribeNodeGroupsResponse, UpdateProbeTaskConfigurationListResponse } from "./cat_models";
|
|
4
4
|
/**
|
|
5
5
|
* cat client
|
|
6
6
|
* @class
|
|
@@ -24,6 +24,10 @@ export declare class Client extends AbstractClient {
|
|
|
24
24
|
* 更新探测任务属性
|
|
25
25
|
*/
|
|
26
26
|
UpdateProbeTaskAttributes(req: UpdateProbeTaskAttributesRequest, cb?: (error: string, rep: UpdateProbeTaskAttributesResponse) => void): Promise<UpdateProbeTaskAttributesResponse>;
|
|
27
|
+
/**
|
|
28
|
+
* 查询拨测节点
|
|
29
|
+
*/
|
|
30
|
+
DescribeProbeNodes(req: DescribeProbeNodesRequest, cb?: (error: string, rep: DescribeProbeNodesResponse) => void): Promise<DescribeProbeNodesResponse>;
|
|
27
31
|
/**
|
|
28
32
|
* 获取拨测节点
|
|
29
33
|
*/
|
|
@@ -41,9 +45,9 @@ export declare class Client extends AbstractClient {
|
|
|
41
45
|
*/
|
|
42
46
|
CreateProbeTasks(req: CreateProbeTasksRequest, cb?: (error: string, rep: CreateProbeTasksResponse) => void): Promise<CreateProbeTasksResponse>;
|
|
43
47
|
/**
|
|
44
|
-
*
|
|
48
|
+
* 获取拨测点组(可用性拨测点组、高级拨测点组、我的拨测点组)
|
|
45
49
|
*/
|
|
46
|
-
|
|
50
|
+
DescribeNodeGroups(req: DescribeNodeGroupsRequest, cb?: (error: string, rep: DescribeNodeGroupsResponse) => void): Promise<DescribeNodeGroupsResponse>;
|
|
47
51
|
/**
|
|
48
52
|
* 根据时间范围、任务ID、运营商等条件查询单次拨测详情数据
|
|
49
53
|
*/
|
|
@@ -52,6 +52,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
52
52
|
async UpdateProbeTaskAttributes(req, cb) {
|
|
53
53
|
return this.request("UpdateProbeTaskAttributes", req, cb);
|
|
54
54
|
}
|
|
55
|
+
/**
|
|
56
|
+
* 查询拨测节点
|
|
57
|
+
*/
|
|
58
|
+
async DescribeProbeNodes(req, cb) {
|
|
59
|
+
return this.request("DescribeProbeNodes", req, cb);
|
|
60
|
+
}
|
|
55
61
|
/**
|
|
56
62
|
* 获取拨测节点
|
|
57
63
|
*/
|
|
@@ -77,10 +83,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
77
83
|
return this.request("CreateProbeTasks", req, cb);
|
|
78
84
|
}
|
|
79
85
|
/**
|
|
80
|
-
*
|
|
86
|
+
* 获取拨测点组(可用性拨测点组、高级拨测点组、我的拨测点组)
|
|
81
87
|
*/
|
|
82
|
-
async
|
|
83
|
-
return this.request("
|
|
88
|
+
async DescribeNodeGroups(req, cb) {
|
|
89
|
+
return this.request("DescribeNodeGroups", req, cb);
|
|
84
90
|
}
|
|
85
91
|
/**
|
|
86
92
|
* 根据时间范围、任务ID、运营商等条件查询单次拨测详情数据
|
|
@@ -130,6 +130,20 @@ export interface SuspendProbeTaskResponse {
|
|
|
130
130
|
*/
|
|
131
131
|
RequestId?: string;
|
|
132
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* DescribeProbeNodes返回参数结构体
|
|
135
|
+
*/
|
|
136
|
+
export interface DescribeProbeNodesResponse {
|
|
137
|
+
/**
|
|
138
|
+
* 节点列表
|
|
139
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
140
|
+
*/
|
|
141
|
+
NodeSet?: Array<NodeDefine>;
|
|
142
|
+
/**
|
|
143
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
144
|
+
*/
|
|
145
|
+
RequestId?: string;
|
|
146
|
+
}
|
|
133
147
|
/**
|
|
134
148
|
* 拨测任务基础配置
|
|
135
149
|
*/
|
|
@@ -405,18 +419,83 @@ export interface UpdateProbeTaskAttributesRequest {
|
|
|
405
419
|
Name?: string;
|
|
406
420
|
}
|
|
407
421
|
/**
|
|
408
|
-
*
|
|
422
|
+
* DescribeProbeTasks请求参数结构体
|
|
409
423
|
*/
|
|
410
|
-
export interface
|
|
424
|
+
export interface DescribeProbeTasksRequest {
|
|
411
425
|
/**
|
|
412
|
-
*
|
|
413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
426
|
+
* 任务 ID 列表
|
|
414
427
|
*/
|
|
415
|
-
|
|
428
|
+
TaskIDs?: Array<string>;
|
|
416
429
|
/**
|
|
417
|
-
*
|
|
430
|
+
* 任务名
|
|
418
431
|
*/
|
|
419
|
-
|
|
432
|
+
TaskName?: string;
|
|
433
|
+
/**
|
|
434
|
+
* 拨测目标
|
|
435
|
+
*/
|
|
436
|
+
TargetAddress?: string;
|
|
437
|
+
/**
|
|
438
|
+
* 任务状态列表
|
|
439
|
+
<li>1 = 创建中</li>
|
|
440
|
+
<li> 2 = 运行中 </li>
|
|
441
|
+
<li> 3 = 运行异常 </li>
|
|
442
|
+
<li> 4 = 暂停中 </li>
|
|
443
|
+
<li> 5 = 暂停异常 </li>
|
|
444
|
+
<li> 6 = 任务暂停 </li>
|
|
445
|
+
<li> 7 = 任务删除中 </li>
|
|
446
|
+
<li> 8 = 任务删除异常 </li>
|
|
447
|
+
<li> 9 = 任务删除</li>
|
|
448
|
+
<li> 10 = 定时任务暂停中 </li>
|
|
449
|
+
*/
|
|
450
|
+
TaskStatus?: Array<number | bigint>;
|
|
451
|
+
/**
|
|
452
|
+
* 偏移量,默认为0
|
|
453
|
+
*/
|
|
454
|
+
Offset?: number;
|
|
455
|
+
/**
|
|
456
|
+
* 返回数量,默认为20,最大值为100
|
|
457
|
+
*/
|
|
458
|
+
Limit?: number;
|
|
459
|
+
/**
|
|
460
|
+
* 付费模式
|
|
461
|
+
<li>1 = 试用版本</li>
|
|
462
|
+
<li> 2 = 付费版本 </li>
|
|
463
|
+
*/
|
|
464
|
+
PayMode?: number;
|
|
465
|
+
/**
|
|
466
|
+
* 订单状态
|
|
467
|
+
<li>1 = 正常</li>
|
|
468
|
+
<li> 2 = 欠费 </li>
|
|
469
|
+
*/
|
|
470
|
+
OrderState?: number;
|
|
471
|
+
/**
|
|
472
|
+
* 拨测类型
|
|
473
|
+
<li>1 = 页面浏览</li>
|
|
474
|
+
<li> 2 =文件上传 </li>
|
|
475
|
+
<li> 3 = 文件下载</li>
|
|
476
|
+
<li> 4 = 端口性能 </li>
|
|
477
|
+
<li> 5 = 网络质量 </li>
|
|
478
|
+
<li> 6 =流媒体 </li>
|
|
479
|
+
|
|
480
|
+
即使拨测只支持页面浏览,网络质量,文件下载
|
|
481
|
+
*/
|
|
482
|
+
TaskType?: Array<number | bigint>;
|
|
483
|
+
/**
|
|
484
|
+
* 节点类型
|
|
485
|
+
*/
|
|
486
|
+
TaskCategory?: Array<number | bigint>;
|
|
487
|
+
/**
|
|
488
|
+
* 排序的列
|
|
489
|
+
*/
|
|
490
|
+
OrderBy?: string;
|
|
491
|
+
/**
|
|
492
|
+
* 是否正序
|
|
493
|
+
*/
|
|
494
|
+
Ascend?: boolean;
|
|
495
|
+
/**
|
|
496
|
+
* 资源标签值
|
|
497
|
+
*/
|
|
498
|
+
TagFilters?: Array<KeyValuePair>;
|
|
420
499
|
}
|
|
421
500
|
/**
|
|
422
501
|
* DescribeInstantTasks请求参数结构体
|
|
@@ -634,83 +713,49 @@ export interface ProbeTask {
|
|
|
634
713
|
SubSyncFlag?: number;
|
|
635
714
|
}
|
|
636
715
|
/**
|
|
637
|
-
*
|
|
716
|
+
* DescribeNodeGroups请求参数结构体
|
|
638
717
|
*/
|
|
639
|
-
export interface
|
|
640
|
-
/**
|
|
641
|
-
* 任务 ID 列表
|
|
642
|
-
*/
|
|
643
|
-
TaskIDs?: Array<string>;
|
|
644
|
-
/**
|
|
645
|
-
* 任务名
|
|
646
|
-
*/
|
|
647
|
-
TaskName?: string;
|
|
648
|
-
/**
|
|
649
|
-
* 拨测目标
|
|
650
|
-
*/
|
|
651
|
-
TargetAddress?: string;
|
|
718
|
+
export interface DescribeNodeGroupsRequest {
|
|
652
719
|
/**
|
|
653
|
-
*
|
|
654
|
-
<li>1 = 创建中</li>
|
|
655
|
-
<li> 2 = 运行中 </li>
|
|
656
|
-
<li> 3 = 运行异常 </li>
|
|
657
|
-
<li> 4 = 暂停中 </li>
|
|
658
|
-
<li> 5 = 暂停异常 </li>
|
|
659
|
-
<li> 6 = 任务暂停 </li>
|
|
660
|
-
<li> 7 = 任务删除中 </li>
|
|
661
|
-
<li> 8 = 任务删除异常 </li>
|
|
662
|
-
<li> 9 = 任务删除</li>
|
|
663
|
-
<li> 10 = 定时任务暂停中 </li>
|
|
720
|
+
* 节点类型。0: 全部 1: IDC 2: LastMile 3: Mobile,不填默认为0
|
|
664
721
|
*/
|
|
665
|
-
|
|
722
|
+
NodeType?: Array<number | bigint>;
|
|
666
723
|
/**
|
|
667
|
-
*
|
|
724
|
+
* 节点分类。0: 全部 1: PC 2:Mobile,不填默认为0。PC分类包括IDC和LM节点类型,Mobile分类包括Mobile节点类型。与NodeType参数取交集。
|
|
668
725
|
*/
|
|
669
|
-
|
|
726
|
+
TaskCategory?: number;
|
|
670
727
|
/**
|
|
671
|
-
*
|
|
728
|
+
* IP类型。0: 全部 1: IPv4 2: IPv6,不填默认为0
|
|
672
729
|
*/
|
|
673
|
-
|
|
730
|
+
IPType?: number;
|
|
674
731
|
/**
|
|
675
|
-
*
|
|
676
|
-
<li>1 = 试用版本</li>
|
|
677
|
-
<li> 2 = 付费版本 </li>
|
|
732
|
+
* 拨测点描述关键词。
|
|
678
733
|
*/
|
|
679
|
-
|
|
734
|
+
Name?: string;
|
|
680
735
|
/**
|
|
681
|
-
*
|
|
682
|
-
<li>1 = 正常</li>
|
|
683
|
-
<li> 2 = 欠费 </li>
|
|
736
|
+
* 地域ID。0: 精选拨测点 1: 国内 2: 港澳台 3: 亚太 4: 欧洲与美洲 5: 非洲与大洋洲,不填默认为0
|
|
684
737
|
*/
|
|
685
|
-
|
|
738
|
+
RegionID?: number;
|
|
686
739
|
/**
|
|
687
|
-
*
|
|
688
|
-
<li>1 = 页面浏览</li>
|
|
689
|
-
<li> 2 =文件上传 </li>
|
|
690
|
-
<li> 3 = 文件下载</li>
|
|
691
|
-
<li> 4 = 端口性能 </li>
|
|
692
|
-
<li> 5 = 网络质量 </li>
|
|
693
|
-
<li> 6 =流媒体 </li>
|
|
694
|
-
|
|
695
|
-
即使拨测只支持页面浏览,网络质量,文件下载
|
|
740
|
+
* 省份或国家ID。0表示全部,不填默认为0
|
|
696
741
|
*/
|
|
697
|
-
|
|
742
|
+
DistrictID?: number;
|
|
698
743
|
/**
|
|
699
|
-
*
|
|
744
|
+
* 运营商ID。0: 全部 1: 中国电信 2: 中国联通 3: 中国移动 99: 其他,不填默认为0
|
|
700
745
|
*/
|
|
701
|
-
|
|
746
|
+
NetServiceID?: number;
|
|
702
747
|
/**
|
|
703
|
-
*
|
|
748
|
+
* 节点组类型。0: 高级拨测点组 1: 可用性节点 2: 我的拨测点组,不填默认为0
|
|
704
749
|
*/
|
|
705
|
-
|
|
750
|
+
NodeGroupType?: number;
|
|
706
751
|
/**
|
|
707
|
-
*
|
|
752
|
+
* 任务类型,如1、2、3、4、5、6、7;1-页面性能、2-文件上传、3-文件下载、4-端口性能、5-网络质量、6-音视频体验、7-域名whois,不填默认为0,不对任务类型做过滤
|
|
708
753
|
*/
|
|
709
|
-
|
|
754
|
+
TaskType?: number;
|
|
710
755
|
/**
|
|
711
|
-
*
|
|
756
|
+
* 测试类型,包含定时测试与即时测试。0-定时拨测,其它表示即时拨测。
|
|
712
757
|
*/
|
|
713
|
-
|
|
758
|
+
ProbeType?: number;
|
|
714
759
|
}
|
|
715
760
|
/**
|
|
716
761
|
* ResumeProbeTask返回参数结构体
|
|
@@ -967,6 +1012,15 @@ export interface DescribeProbeMetricDataResponse {
|
|
|
967
1012
|
*/
|
|
968
1013
|
RequestId?: string;
|
|
969
1014
|
}
|
|
1015
|
+
/**
|
|
1016
|
+
* DescribeNodeGroups返回参数结构体
|
|
1017
|
+
*/
|
|
1018
|
+
export interface DescribeNodeGroupsResponse {
|
|
1019
|
+
/**
|
|
1020
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1021
|
+
*/
|
|
1022
|
+
RequestId?: string;
|
|
1023
|
+
}
|
|
970
1024
|
/**
|
|
971
1025
|
* UpdateProbeTaskConfigurationList返回参数结构体
|
|
972
1026
|
*/
|
|
@@ -590,9 +590,7 @@ export interface DescribeSnapshotsRequest {
|
|
|
590
590
|
*/
|
|
591
591
|
SnapshotIds?: Array<string>;
|
|
592
592
|
/**
|
|
593
|
-
*
|
|
594
|
-
<li>snapshot-type- Array of String - 是否必填:否 -(过滤条件)根据snapshot-type指定的快照类型查询对应的快照。
|
|
595
|
-
(SHARED_SNAPSHOT:表示共享过来的快照 | PRIVATE_SNAPSHOT:表示自己私有快照。)
|
|
593
|
+
* 过滤条件。参数不支持同时指定SnapshotIds和Filters。<br><ul><li>snapshot-id<ul><li>按照云硬盘快照ID进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-name<ul><li>按照云硬盘快照名称进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-state<ul><li>按照云硬盘快照状态进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>NORMAL</code>:正常 </li><li><code>CREATING</code>:创建中 </li><li><code>ROLLBACKING</code>:回滚中 </li><li><code>COPYING_FROM_REMOTE</code>:跨地域复制中 </li><li><code>CHECKING_COPIED</code>:复制校验中</li><li><code>TORECYCLE</code>:待回收</li></ul></li></ul></li><li>disk-usage<ul><li>按照云硬盘使用用途进行过滤</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SYSTEM_DISK</code>:代表系统盘</li><li><code>DATA_DISK</code>:代表数据盘</li></ul></li></ul></li><li>project-id<ul><li>按云硬盘所属项目ID过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>disk-id<ul><li>按照云硬盘ID进行过滤,一次最多只能传入10个值</li><li>类型:String</li><li>必选:否</li></ul></li><li>encrypt<ul><li>按是否加密进行过滤</li><li>类型:String</li><li>必选:否</li></ul></li><li>snapshot-type<ul><li>按快照归属类型查询</li><li>类型:String</li><li>必选:否</li><li>取值范围:<ul><li><code>SHARED_SNAPSHOT</code>:表示共享过来的快照</li><li><code>PRIVATE_SNAPSHOT</code>:表示自己的私有快照</li></ul></li></ul></li></ul>
|
|
596
594
|
*/
|
|
597
595
|
Filters?: Array<Filter>;
|
|
598
596
|
/**
|
|
@@ -600,7 +598,11 @@ export interface DescribeSnapshotsRequest {
|
|
|
600
598
|
*/
|
|
601
599
|
Limit?: number;
|
|
602
600
|
/**
|
|
603
|
-
*
|
|
601
|
+
* 快照列表排序的依据字段。取值范围:
|
|
602
|
+
<ul>
|
|
603
|
+
<li>CREATE_TIME:依据快照的创建时间排序</li>
|
|
604
|
+
<li>默认按创建时间排序</li>
|
|
605
|
+
</ul>
|
|
604
606
|
*/
|
|
605
607
|
OrderField?: string;
|
|
606
608
|
/**
|
|
@@ -608,7 +610,12 @@ export interface DescribeSnapshotsRequest {
|
|
|
608
610
|
*/
|
|
609
611
|
Offset?: number;
|
|
610
612
|
/**
|
|
611
|
-
*
|
|
613
|
+
* 输出云盘列表的排列顺序。取值范围:
|
|
614
|
+
<ul>
|
|
615
|
+
<li>ASC:升序排列</li>
|
|
616
|
+
<li>DESC:降序排列。</li>
|
|
617
|
+
</ul>
|
|
618
|
+
|
|
612
619
|
*/
|
|
613
620
|
Order?: string;
|
|
614
621
|
}
|
|
@@ -617,7 +624,7 @@ export interface DescribeSnapshotsRequest {
|
|
|
617
624
|
*/
|
|
618
625
|
export interface ModifyAutoSnapshotPolicyAttributeRequest {
|
|
619
626
|
/**
|
|
620
|
-
* 定期快照策略ID
|
|
627
|
+
* 定期快照策略ID。可以通过[查询定期快照策略](https://cloud.tencent.com/document/product/362/33556)API查询。
|
|
621
628
|
*/
|
|
622
629
|
AutoSnapshotPolicyId: string;
|
|
623
630
|
/**
|
|
@@ -3372,6 +3372,10 @@ export interface TelCdrInfo {
|
|
|
3372
3372
|
* 呼入呼出方向 0 呼入 1 呼出
|
|
3373
3373
|
*/
|
|
3374
3374
|
Direction?: number;
|
|
3375
|
+
/**
|
|
3376
|
+
* 通话类型 1 呼出 2 呼入 3 音频呼入 5 预测式外呼 6 内线呼叫
|
|
3377
|
+
*/
|
|
3378
|
+
CallType?: number;
|
|
3375
3379
|
/**
|
|
3376
3380
|
* 通话时长
|
|
3377
3381
|
*/
|
|
@@ -3393,15 +3397,15 @@ export interface TelCdrInfo {
|
|
|
3393
3397
|
|
|
3394
3398
|
**场景 EndStatus EndStatusString 状态说明**
|
|
3395
3399
|
|
|
3396
|
-
电话呼入&呼出 1 ok
|
|
3400
|
+
电话呼入&呼出 1 ok 正常通话
|
|
3397
3401
|
|
|
3398
|
-
电话呼入&呼出 0 error
|
|
3402
|
+
电话呼入&呼出 0 error 异常结束
|
|
3399
3403
|
|
|
3400
3404
|
电话呼入 102 ivrGiveUp IVR 期间用户放弃
|
|
3401
3405
|
|
|
3402
|
-
电话呼入 103 waitingGiveUp
|
|
3406
|
+
电话呼入 103 waitingGiveUp 排队时用户放弃
|
|
3403
3407
|
|
|
3404
|
-
电话呼入 104 ringingGiveUp
|
|
3408
|
+
电话呼入 104 ringingGiveUp 振铃时用户放弃
|
|
3405
3409
|
|
|
3406
3410
|
电话呼入 105 noSeatOnline 无座席在线
|
|
3407
3411
|
|
|
@@ -3409,37 +3413,37 @@ export interface TelCdrInfo {
|
|
|
3409
3413
|
|
|
3410
3414
|
电话呼入 107 ivrEnd IVR 后直接结束
|
|
3411
3415
|
|
|
3412
|
-
电话呼入 100 blackList
|
|
3416
|
+
电话呼入 100 blackList 黑名单
|
|
3413
3417
|
|
|
3414
3418
|
电话呼出 2 unconnected 未接通
|
|
3415
3419
|
|
|
3416
3420
|
电话呼出 108 restrictedCallee 被叫因高风险受限
|
|
3417
3421
|
|
|
3418
|
-
电话呼出 109 tooManyRequest
|
|
3422
|
+
电话呼出 109 tooManyRequest 外呼超频限制
|
|
3419
3423
|
|
|
3420
|
-
电话呼出 110 restrictedArea
|
|
3424
|
+
电话呼出 110 restrictedArea 外呼区域限制
|
|
3421
3425
|
|
|
3422
3426
|
电话呼出 111 restrictedTime 外呼时间限制
|
|
3423
3427
|
|
|
3424
3428
|
电话呼出 201 unknown 未知状态
|
|
3425
3429
|
|
|
3426
|
-
电话呼出 202 notAnswer
|
|
3430
|
+
电话呼出 202 notAnswer 被叫未接听
|
|
3427
3431
|
|
|
3428
|
-
电话呼出 203 userReject
|
|
3432
|
+
电话呼出 203 userReject 被叫拒接挂断
|
|
3429
3433
|
|
|
3430
|
-
电话呼出 204 powerOff
|
|
3434
|
+
电话呼出 204 powerOff 被叫关机
|
|
3431
3435
|
|
|
3432
|
-
电话呼出 205 numberNotExist
|
|
3436
|
+
电话呼出 205 numberNotExist 被叫空号
|
|
3433
3437
|
|
|
3434
|
-
电话呼出 206 busy
|
|
3438
|
+
电话呼出 206 busy 被叫忙
|
|
3435
3439
|
|
|
3436
|
-
电话呼出 207 outOfCredit
|
|
3440
|
+
电话呼出 207 outOfCredit 被叫欠费
|
|
3437
3441
|
|
|
3438
3442
|
电话呼出 208 operatorError 运营商线路异常
|
|
3439
3443
|
|
|
3440
3444
|
电话呼出 209 callerCancel 主叫取消
|
|
3441
3445
|
|
|
3442
|
-
电话呼出 210 notInService
|
|
3446
|
+
电话呼出 210 notInService 被叫不在服务区
|
|
3443
3447
|
|
|
3444
3448
|
电话呼入&呼出 211 clientError 客户端错误
|
|
3445
3449
|
电话呼出 212 carrierBlocked 运营商拦截
|
|
@@ -3490,15 +3494,15 @@ export interface TelCdrInfo {
|
|
|
3490
3494
|
|
|
3491
3495
|
**场景 EndStatus EndStatusString 状态说明**
|
|
3492
3496
|
|
|
3493
|
-
电话呼入&呼出 1 ok
|
|
3497
|
+
电话呼入&呼出 1 ok 正常通话
|
|
3494
3498
|
|
|
3495
|
-
电话呼入&呼出 0 error
|
|
3499
|
+
电话呼入&呼出 0 error 异常结束
|
|
3496
3500
|
|
|
3497
3501
|
电话呼入 102 ivrGiveUp IVR 期间用户放弃
|
|
3498
3502
|
|
|
3499
|
-
电话呼入 103 waitingGiveUp
|
|
3503
|
+
电话呼入 103 waitingGiveUp 排队时用户放弃
|
|
3500
3504
|
|
|
3501
|
-
电话呼入 104 ringingGiveUp
|
|
3505
|
+
电话呼入 104 ringingGiveUp 振铃时用户放弃
|
|
3502
3506
|
|
|
3503
3507
|
电话呼入 105 noSeatOnline 无座席在线
|
|
3504
3508
|
|
|
@@ -3506,37 +3510,37 @@ export interface TelCdrInfo {
|
|
|
3506
3510
|
|
|
3507
3511
|
电话呼入 107 ivrEnd IVR 后直接结束
|
|
3508
3512
|
|
|
3509
|
-
电话呼入 100 blackList
|
|
3513
|
+
电话呼入 100 blackList 黑名单
|
|
3510
3514
|
|
|
3511
3515
|
电话呼出 2 unconnected 未接通
|
|
3512
3516
|
|
|
3513
3517
|
电话呼出 108 restrictedCallee 被叫因高风险受限
|
|
3514
3518
|
|
|
3515
|
-
电话呼出 109 tooManyRequest
|
|
3519
|
+
电话呼出 109 tooManyRequest 外呼超频限制
|
|
3516
3520
|
|
|
3517
|
-
电话呼出 110 restrictedArea
|
|
3521
|
+
电话呼出 110 restrictedArea 外呼区域限制
|
|
3518
3522
|
|
|
3519
3523
|
电话呼出 111 restrictedTime 外呼时间限制
|
|
3520
3524
|
|
|
3521
3525
|
电话呼出 201 unknown 未知状态
|
|
3522
3526
|
|
|
3523
|
-
电话呼出 202 notAnswer
|
|
3527
|
+
电话呼出 202 notAnswer 被叫未接听
|
|
3524
3528
|
|
|
3525
|
-
电话呼出 203 userReject
|
|
3529
|
+
电话呼出 203 userReject 被叫拒接挂断
|
|
3526
3530
|
|
|
3527
|
-
电话呼出 204 powerOff
|
|
3531
|
+
电话呼出 204 powerOff 被叫关机
|
|
3528
3532
|
|
|
3529
|
-
电话呼出 205 numberNotExist
|
|
3533
|
+
电话呼出 205 numberNotExist 被叫空号
|
|
3530
3534
|
|
|
3531
|
-
电话呼出 206 busy
|
|
3535
|
+
电话呼出 206 busy 被叫忙
|
|
3532
3536
|
|
|
3533
|
-
电话呼出 207 outOfCredit
|
|
3537
|
+
电话呼出 207 outOfCredit 被叫欠费
|
|
3534
3538
|
|
|
3535
3539
|
电话呼出 208 operatorError 运营商线路异常
|
|
3536
3540
|
|
|
3537
3541
|
电话呼出 209 callerCancel 主叫取消
|
|
3538
3542
|
|
|
3539
|
-
电话呼出 210 notInService
|
|
3543
|
+
电话呼出 210 notInService 被叫不在服务区
|
|
3540
3544
|
|
|
3541
3545
|
电话呼入&呼出 211 clientError 客户端错误
|
|
3542
3546
|
电话呼出 212 carrierBlocked 运营商拦截
|
|
@@ -4,17 +4,14 @@
|
|
|
4
4
|
export interface ConfigParams {
|
|
5
5
|
/**
|
|
6
6
|
* 名字
|
|
7
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
8
7
|
*/
|
|
9
8
|
ParameterName?: string;
|
|
10
9
|
/**
|
|
11
10
|
* 值
|
|
12
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
13
11
|
*/
|
|
14
12
|
ParameterValue?: string;
|
|
15
13
|
/**
|
|
16
14
|
* 修改前的值
|
|
17
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
18
15
|
*/
|
|
19
16
|
ParameterOldValue?: string;
|
|
20
17
|
}
|
|
@@ -479,17 +476,14 @@ export interface DescribeDBParamsRequest {
|
|
|
479
476
|
export interface CBSSpec {
|
|
480
477
|
/**
|
|
481
478
|
* 盘类型
|
|
482
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
483
479
|
*/
|
|
484
480
|
DiskType: string;
|
|
485
481
|
/**
|
|
486
482
|
* 大小
|
|
487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
488
483
|
*/
|
|
489
484
|
DiskSize: number;
|
|
490
485
|
/**
|
|
491
486
|
* 个数
|
|
492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
493
487
|
*/
|
|
494
488
|
DiskCount: number;
|
|
495
489
|
}
|
|
@@ -326,7 +326,7 @@ export declare class Client extends AbstractClient {
|
|
|
326
326
|
*/
|
|
327
327
|
DescribeQuota(req?: DescribeQuotaRequest, cb?: (error: string, rep: DescribeQuotaResponse) => void): Promise<DescribeQuotaResponse>;
|
|
328
328
|
/**
|
|
329
|
-
* 本接口(CreateLoadBalancer)
|
|
329
|
+
* 本接口(CreateLoadBalancer)用来创建负载均衡实例。为了使用负载均衡服务,您必须购买一个或多个负载均衡实例。成功调用该接口后,会返回负载均衡实例的唯一 ID。负载均衡实例的类型分为:公网、内网。详情可参考产品说明中的产品类型。
|
|
330
330
|
注意:(1)可通过 [DescribeResources](https://cloud.tencent.com/document/api/214/70213) 接口查询一个地域是否支持创建IPv6实例;(2)一个账号在每个地域的默认购买配额为:公网100个,内网100个。
|
|
331
331
|
本接口为异步接口,接口成功返回后,可使用 DescribeLoadBalancers 接口查询负载均衡实例的状态(如创建中、正常),以确定是否创建成功。
|
|
332
332
|
*/
|