tencentcloud-sdk-nodejs 4.1.292 → 4.1.294

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.
@@ -1459,11 +1459,11 @@ export interface ActivateTWeTalkRequest {
1459
1459
  */
1460
1460
  export interface ListTWeSeeTasksResponse {
1461
1461
  /**
1462
- * 任务列表
1462
+ * <p>任务列表</p>
1463
1463
  */
1464
1464
  Tasks?: Array<SeeTaskInfo>;
1465
1465
  /**
1466
- * 任务数量
1466
+ * <p>任务数量</p>
1467
1467
  */
1468
1468
  Total?: number;
1469
1469
  /**
@@ -2000,6 +2000,10 @@ export interface CreateTWeSeeDirectUploadCredentialRequest {
2000
2000
  * <p>上传方式</p><p>枚举值:</p><ul><li>single: 单文件上传</li><li>manifest: 上传源文件与 Manifest(先上传多个源文件,然后上传 Manifest JSON 触发分析)</li></ul><p>默认值:single</p>
2001
2001
  */
2002
2002
  UploadMethod?: string;
2003
+ /**
2004
+ * <p>上传目标</p><p>枚举值:</p><ul><li>session: 一次性上传会话(默认,通过入参传递 ComprehensionConfig 等上传参数)</li><li>stream: 上传到指定设备(加载对应设备的 ComprehensionConfig 等配置)</li></ul><p>默认值:session</p>
2005
+ */
2006
+ UploadTarget?: string;
2003
2007
  }
2004
2008
  /**
2005
2009
  * Talk配置信息描述。
@@ -3410,63 +3414,53 @@ export interface CheckFirmwareUpdateResponse {
3410
3414
  */
3411
3415
  export interface ListTWeSeeTasksRequest {
3412
3416
  /**
3413
- * 产品 ID
3417
+ * <p>产品 ID</p>
3414
3418
  */
3415
3419
  ProductId: string;
3416
3420
  /**
3417
- * 设备名称
3421
+ * <p>设备名称</p>
3418
3422
  */
3419
3423
  DeviceName: string;
3420
3424
  /**
3421
- * 算法类目。可选值:
3422
- - `COMPREHENSION`:视觉理解
3423
- - `HIGHLIGHT`:视频浓缩
3425
+ * <p>算法类目。可选值:</p><ul><li><code>COMPREHENSION</code>:视觉理解</li><li><code>HIGHLIGHT</code>:视频浓缩</li></ul>
3424
3426
  */
3425
3427
  ServiceCategory: string;
3426
3428
  /**
3427
- * 分页拉取数量
3429
+ * <p>分页拉取数量</p>
3428
3430
  */
3429
3431
  Limit: number;
3430
3432
  /**
3431
- * 分页拉取偏移
3433
+ * <p>分页拉取偏移</p>
3432
3434
  */
3433
3435
  Offset?: number;
3434
3436
  /**
3435
- * 算法类型。
3436
-
3437
- 当 ServiceCategory 为 `COMPREHENSION` 时,可选值包括:
3438
- - `VID_COMP`:视频理解
3439
- - `IMG_COMP`:图片理解
3440
- - `CONT_PERSON_MOTIONLESS`:静姿检测
3441
-
3442
- 当 ServiceCategory 为 `HIGHLIGHT` 时,可选值包括:
3443
- - `COMP_HIGHLIGHT`:视频浓缩
3437
+ * <p>算法类型。</p><p>当 ServiceCategory 为 <code>COMPREHENSION</code> 时,可选值包括:</p><ul><li><code>VID_COMP</code>:视频理解</li><li><code>IMG_COMP</code>:图片理解</li><li><code>CONT_PERSON_MOTIONLESS</code>:静姿检测</li></ul><p>当 ServiceCategory 为 <code>HIGHLIGHT</code> 时,可选值包括:</p><ul><li><code>COMP_HIGHLIGHT</code>:视频浓缩</li></ul>
3444
3438
  */
3445
3439
  ServiceTypes?: Array<string>;
3446
3440
  /**
3447
- * 通道 ID
3441
+ * <p>通道 ID</p>
3448
3442
  */
3449
3443
  ChannelId?: number;
3450
3444
  /**
3451
- * 查询任务时间范围的起始时间(毫秒级 UNIX 时间戳)。不传则不生效时间范围条件。
3445
+ * <p>查询任务时间范围的起始时间(毫秒级 UNIX 时间戳)。不传则不生效时间范围条件。</p>
3452
3446
  */
3453
3447
  StartTimeMs?: number;
3454
3448
  /**
3455
- * 查询任务时间范围的结束时间(毫秒级 UNIX 时间戳)。不传则不生效时间范围条件。
3449
+ * <p>查询任务时间范围的结束时间(毫秒级 UNIX 时间戳)。不传则不生效时间范围条件。</p>
3456
3450
  */
3457
3451
  EndTimeMs?: number;
3458
3452
  /**
3459
- * 要查询的任务的状态条件。不传则不按照状态过滤,可选值:
3460
-
3461
- - `1`:失败
3462
- - `2`:空结果
3463
- - `3`:有效结果
3453
+ * <p>要查询的任务的状态条件。不传则不按照状态过滤,可选值:</p><ul><li><code>1</code>:失败</li><li><code>2</code>:空结果</li><li><code>3</code>:有效结果</li></ul>
3464
3454
  */
3465
3455
  Status?: number;
3466
3456
  /**
3467
- * 下载 URL 的过期时间(秒级 UNIX 时间戳)。若传入该参数,则响应中将包含所有文件的下载 URL
3457
+ * <p>下载 URL 的过期时间(秒级 UNIX 时间戳)。若传入该参数,则响应中将包含所有文件的下载 URL</p>
3468
3458
  */
3469
3459
  FileURLExpireTime?: number;
3460
+ /**
3461
+ * <p>任务结果过滤条件</p>
3462
+ */
3463
+ Filters?: Array<VisionRecognitionTaskFilter>;
3470
3464
  }
3471
3465
  /**
3472
3466
  * InquireTWeSeeSubscriptionRenewPrice返回参数结构体
@@ -7274,6 +7268,19 @@ export interface CreateDeviceSDPAnswerRequest {
7274
7268
  */
7275
7269
  EnableSubPub?: number;
7276
7270
  }
7271
+ /**
7272
+ * TWeSee 语义理解任务过滤条件
7273
+ */
7274
+ export interface VisionRecognitionTaskFilter {
7275
+ /**
7276
+ * 需要过滤的字段
7277
+ */
7278
+ Key: string;
7279
+ /**
7280
+ * 需要过滤的值
7281
+ */
7282
+ Values: Array<string>;
7283
+ }
7277
7284
  /**
7278
7285
  * ControlDeviceData请求参数结构体
7279
7286
  */
@@ -12746,80 +12753,69 @@ export interface CreatePositionFenceRequest {
12746
12753
  */
12747
12754
  export interface SeeTaskInfo {
12748
12755
  /**
12749
- * 任务 ID
12756
+ * <p>任务 ID</p>
12750
12757
  */
12751
12758
  TaskId?: string;
12752
12759
  /**
12753
- * 任务状态。可能取值:
12754
-
12755
- - `1`:失败
12756
- - `2`:空结果
12757
- - `3`:有效结果
12758
- - `4`:处理中
12760
+ * <p>任务状态。可能取值:</p><ul><li><code>1</code>:失败</li><li><code>2</code>:空结果</li><li><code>3</code>:有效结果</li><li><code>4</code>:处理中</li></ul>
12759
12761
  */
12760
12762
  Status?: number;
12761
12763
  /**
12762
- * 任务元数据
12764
+ * <p>任务元数据</p>
12763
12765
  */
12764
12766
  Metadata?: SeeTaskMetadata;
12765
12767
  /**
12766
- * 算法类目。可能取值:
12767
-
12768
- - `COMPREHENSION`:视觉理解
12769
- - `HIGHLIGHT`:视频浓缩
12768
+ * <p>算法类目。可能取值:</p><ul><li><code>COMPREHENSION</code>:视觉理解</li><li><code>HIGHLIGHT</code>:视频浓缩</li></ul>
12770
12769
  */
12771
12770
  ServiceCategory?: string;
12772
12771
  /**
12773
- * 算法类型。可能取值:
12774
-
12775
- - `VID_COMP`:视频理解
12776
- - `IMG_COMP`:图片理解
12777
- - `COMP_HIGHLIGHT`:视频浓缩
12772
+ * <p>算法类型。可能取值:</p><ul><li><code>VID_COMP</code>:视频理解</li><li><code>IMG_COMP</code>:图片理解</li><li><code>COMP_HIGHLIGHT</code>:视频浓缩</li></ul>
12778
12773
  */
12779
12774
  ServiceType?: string;
12780
12775
  /**
12781
- * 套餐规格。可能取值:
12782
-
12783
- - `POSTPAID`:后付费(适用于视频理解、图片理解)
12784
- - `BASIC`:包年包月基础版(适用于视频理解)
12776
+ * <p>套餐规格。可能取值:</p><ul><li><code>POSTPAID</code>:后付费(适用于视频理解、图片理解)</li><li><code>BASIC</code>:包年包月基础版(适用于视频理解)</li></ul>
12785
12777
  */
12786
12778
  ServiceTier?: string;
12787
12779
  /**
12788
- * 视觉理解结果(适用于视频理解、图片理解)
12780
+ * <p>视觉理解结果(适用于视频理解、图片理解)</p>
12789
12781
  */
12790
12782
  ComprehensionResult?: SeeComprehensionResult;
12791
12783
  /**
12792
- * 视频语义浓缩结果(适用于视频语义浓缩)
12784
+ * <p>视频语义浓缩结果(适用于视频语义浓缩)</p>
12793
12785
  */
12794
12786
  CompHighlightResult?: SeeCompHighlightResult;
12795
12787
  /**
12796
- * 标签持续检测结果
12788
+ * <p>标签持续检测结果</p>
12797
12789
  */
12798
12790
  DetectContinuousResult?: SeeDetectContinuousResult;
12799
12791
  /**
12800
- * 完成该任务所消耗的基础能力额度
12792
+ * <p>完成该任务所消耗的基础能力额度</p>
12801
12793
  */
12802
12794
  CostBasic?: number;
12803
12795
  /**
12804
- * 完成该任务所消耗的高级能力额度
12796
+ * <p>完成该任务所消耗的高级能力额度</p>
12805
12797
  */
12806
12798
  CostAdvanced?: number;
12807
12799
  /**
12808
- * 输出文件名列表
12800
+ * <p>输出文件名列表</p>
12809
12801
  */
12810
12802
  Files?: Array<string>;
12811
12803
  /**
12812
- * 输出文件详情列表
12804
+ * <p>输出文件详情列表</p>
12813
12805
  */
12814
12806
  FilesInfo?: Array<CloudStorageAIServiceTaskFileInfo>;
12815
12807
  /**
12816
- * 创建时间
12808
+ * <p>创建时间</p>
12817
12809
  */
12818
12810
  CreateTime?: number;
12819
12811
  /**
12820
- * 最后更新时间
12812
+ * <p>最后更新时间</p>
12821
12813
  */
12822
12814
  UpdateTime?: number;
12815
+ /**
12816
+ * <p>直传 COS 的对象 URI</p>
12817
+ */
12818
+ COSURI?: string;
12823
12819
  }
12824
12820
  /**
12825
12821
  * DescribeCloudStorageThumbnail返回参数结构体
@@ -1,12 +1,16 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { DeleteL3ConnResponse, GetDeviceResponse, GetMultiFlowStatisticResponse, UpdateApplicationKeyResponse, UpdateL3ConnResponse, UpdateHardwareResponse, UpdateL3SwitchRequest, AddL3ConnRequest, OrderPerLicenseResponse, GetFlowPackagesRequest, SetNotifyUrlResponse, UpdateL3CidrResponse, UpdateApplicationKeyRequest, AddApplicationRequest, ModifyPackageRenewFlagRequest, GetFlowPackagesResponse, ReportOrderRequest, DeleteL3ConnRequest, GetVendorHardwareResponse, GetApplicationResponse, GetActiveDeviceCountResponse, AddGroupRequest, GetGroupListRequest, DeleteApplicationResponse, GetGroupDetailRequest, GroupDeleteDeviceResponse, GroupAddDeviceRequest, GetStatisticDataResponse, UpdateApplicationInfoRequest, GetPublicKeyRequest, GetHardwareInfoRequest, GetFlowStatisticByGroupResponse, GetNetMonitorResponse, GetFlowStatisticByNameResponse, ReportOrderResponse, GetFlowAlarmInfoRequest, GetVendorHardwareRequest, CreateEncryptedKeyRequest, DeleteDeviceRequest, GetGatewayListRequest, DeleteGroupRequest, CreateEncryptedKeyResponse, UpdateL3SwitchResponse, DescribeAccessRegionsResponse, GetL3ConnListResponse, AddApplicationResponse, ModifyPackageRenewFlagResponse, ModifyDeviceAccessRegionsResponse, GetDestIPByNameResponse, DescribeAccessRegionsRequest, GetDeviceRequest, ActivateHardwareResponse, GetFlowStatisticByGroupRequest, GetDevicesResponse, AddL3ConnResponse, GetDestIPByNameRequest, GetDevicesRequest, GetStatisticDataByNameRequest, SetNotifyUrlRequest, GetDevicePayModeRequest, DeleteApplicationRequest, ModifyDeviceAccessRegionsRequest, DownloadActiveDeviceCountResponse, GetHardwareListRequest, GetFlowStatisticByNameRequest, GroupDeleteDeviceRequest, GetHardwareInfoResponse, GetFlowStatisticByRegionResponse, GetMultiFlowStatisticRequest, GetFlowAlarmInfoResponse, GetFlowStatisticByRegionRequest, OrderFlowPackageRequest, GetGroupDetailResponse, UpdateGroupResponse, GetL3ConnListRequest, DownloadActiveDeviceCountRequest, GetHardwareListResponse, AddDeviceRequest, GetNetMonitorByNameResponse, OrderPerLicenseRequest, UpdateGroupRequest, GetFlowStatisticResponse, UpdateHardwareRequest, GetNetMonitorRequest, GetNetMonitorByNameRequest, GetGroupListResponse, GetGatewayListResponse, UpdateApplicationInfoResponse, OrderFlowPackageResponse, UpdateDeviceResponse, ActivateHardwareRequest, GetMonitorDataByNameResponse, GroupAddDeviceResponse, GetStatisticDataRequest, GetApplicationRequest, UpdateDeviceRequest, DeleteGroupResponse, GetPublicKeyResponse, GetStatisticDataByNameResponse, AddHardwareResponse, GetFlowStatisticRequest, AddDeviceResponse, GetDevicePayModeResponse, GetActiveDeviceCountRequest, GetMonitorDataByNameRequest, UpdateL3ConnRequest, DeleteDeviceResponse, AddHardwareRequest, UpdateL3CidrRequest, AddGroupResponse } from "./mna_models";
3
+ import { DeleteL3ConnResponse, GetDeviceResponse, GetMultiFlowStatisticResponse, UpdateApplicationKeyResponse, UpdateL3ConnResponse, UpdateHardwareResponse, UpdateL3SwitchRequest, AddL3ConnRequest, OrderPerLicenseResponse, GroupDeleteDeviceRequest, GetFlowPackagesRequest, SetNotifyUrlResponse, GetCustomerGatewayClusterListResponse, UpdateL3CidrResponse, UpdateApplicationKeyRequest, AddApplicationRequest, GetFlowPackagesResponse, ReportOrderRequest, DeleteL3ConnRequest, GetVendorHardwareResponse, GetApplicationResponse, GetActiveDeviceCountResponse, ModifyPackageRenewFlagRequest, AddGroupRequest, ModifyDeviceAccessScopeRequest, GetGroupListRequest, DeleteApplicationResponse, GetGroupDetailRequest, GroupDeleteDeviceResponse, GroupAddDeviceRequest, GetStatisticDataResponse, UpdateApplicationInfoRequest, DescribeAccessPointListRequest, UpdateCustomerGatewayClusterResponse, AddL3ConnResponse, GetHardwareInfoRequest, GetFlowStatisticByGroupResponse, AddGatewayRequest, GetNetMonitorResponse, GetNetMonitorRequest, ModifyDeviceAccessScopeResponse, GetFlowStatisticByNameResponse, ReportOrderResponse, GetFlowAlarmInfoRequest, GetVendorHardwareRequest, CreateEncryptedKeyRequest, AddCustomerGatewayClusterRequest, DeleteDeviceRequest, GetGatewayListRequest, DeleteGroupRequest, CreateEncryptedKeyResponse, UpdateL3SwitchResponse, DescribeAccessRegionsResponse, UpdateCustomerGatewayClusterRequest, GetL3ConnListResponse, DeleteCustomerGatewayClusterRequest, AddApplicationResponse, ModifyPackageRenewFlagResponse, ModifyDeviceAccessRegionsResponse, GetDestIPByNameResponse, DescribeAccessRegionsRequest, DeleteGatewayRequest, GetDeviceRequest, ActivateHardwareResponse, GetFlowStatisticByGroupRequest, GetDevicesResponse, GetPublicKeyRequest, GetDestIPByNameRequest, GetDevicesRequest, GetStatisticDataByNameRequest, SetNotifyUrlRequest, GetDevicePayModeRequest, DeleteApplicationRequest, ModifyDeviceAccessRegionsRequest, DownloadActiveDeviceCountResponse, GetHardwareListRequest, GetFlowStatisticByNameRequest, DescribeAccessPointListResponse, AddCustomerGatewayClusterResponse, GetHardwareInfoResponse, GetFlowStatisticByRegionResponse, ActivateHardwareRequest, GetMultiFlowStatisticRequest, GetFlowAlarmInfoResponse, GetFlowStatisticByRegionRequest, OrderFlowPackageRequest, GetGroupDetailResponse, UpdateGroupResponse, GetL3ConnListRequest, DownloadActiveDeviceCountRequest, GetHardwareListResponse, AddDeviceRequest, GetNetMonitorByNameResponse, OrderPerLicenseRequest, UpdateGroupRequest, GetFlowStatisticResponse, UpdateHardwareRequest, GetNetMonitorByNameRequest, GetGroupListResponse, GetGatewayListResponse, UpdateApplicationInfoResponse, OrderFlowPackageResponse, UpdateDeviceResponse, GetCustomerGatewayClusterListRequest, DeleteCustomerGatewayClusterResponse, GetMonitorDataByNameResponse, GroupAddDeviceResponse, DeleteGatewayResponse, GetStatisticDataRequest, GetApplicationRequest, UpdateDeviceRequest, DeleteGroupResponse, GetPublicKeyResponse, GetStatisticDataByNameResponse, AddHardwareResponse, GetFlowStatisticRequest, AddDeviceResponse, GetDevicePayModeResponse, GetActiveDeviceCountRequest, GetMonitorDataByNameRequest, UpdateL3ConnRequest, DeleteDeviceResponse, AddGatewayResponse, AddHardwareRequest, UpdateL3CidrRequest, AddGroupResponse } from "./mna_models";
4
4
  /**
5
5
  * mna client
6
6
  * @class
7
7
  */
8
8
  export declare class Client extends AbstractClient {
9
9
  constructor(clientConfig: ClientConfig);
10
+ /**
11
+ * 更新互通规则CIDR
12
+ */
13
+ UpdateL3Cidr(req: UpdateL3CidrRequest, cb?: (error: string, rep: UpdateL3CidrResponse) => void): Promise<UpdateL3CidrResponse>;
10
14
  /**
11
15
  * 设置用户流量告警信息接口,通过该接口设置流量包告警阈值以及告警时回调的url和key
12
16
  */
@@ -63,6 +67,10 @@ export declare class Client extends AbstractClient {
63
67
  * 修改设备接入地域。
64
68
  */
65
69
  ModifyDeviceAccessRegions(req: ModifyDeviceAccessRegionsRequest, cb?: (error: string, rep: ModifyDeviceAccessRegionsResponse) => void): Promise<ModifyDeviceAccessRegionsResponse>;
70
+ /**
71
+ * 修改设备接入网关类型。
72
+ */
73
+ ModifyDeviceAccessScope(req: ModifyDeviceAccessScopeRequest, cb?: (error: string, rep: ModifyDeviceAccessScopeResponse) => void): Promise<ModifyDeviceAccessScopeResponse>;
66
74
  /**
67
75
  * 激活硬件设备
68
76
  */
@@ -99,6 +107,10 @@ export declare class Client extends AbstractClient {
99
107
  * 新建应用
100
108
  */
101
109
  AddApplication(req: AddApplicationRequest, cb?: (error: string, rep: AddApplicationResponse) => void): Promise<AddApplicationResponse>;
110
+ /**
111
+ * 用户上报自定义的订单信息,多网聚合加速(腾讯云聚通)服务将相关信息进行保存
112
+ */
113
+ ReportOrder(req: ReportOrderRequest, cb?: (error: string, rep: ReportOrderResponse) => void): Promise<ReportOrderResponse>;
102
114
  /**
103
115
  * 活跃设备数量统计
104
116
  */
@@ -107,6 +119,10 @@ export declare class Client extends AbstractClient {
107
119
  * 更新应用密钥
108
120
  */
109
121
  UpdateApplicationKey(req: UpdateApplicationKeyRequest, cb?: (error: string, rep: UpdateApplicationKeyResponse) => void): Promise<UpdateApplicationKeyResponse>;
122
+ /**
123
+ * 根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key
124
+ */
125
+ GetFlowAlarmInfo(req?: GetFlowAlarmInfoRequest, cb?: (error: string, rep: GetFlowAlarmInfoResponse) => void): Promise<GetFlowAlarmInfoResponse>;
110
126
  /**
111
127
  * 删除设备信息
112
128
  */
@@ -116,9 +132,9 @@ export declare class Client extends AbstractClient {
116
132
  */
117
133
  UpdateDevice(req: UpdateDeviceRequest, cb?: (error: string, rep: UpdateDeviceResponse) => void): Promise<UpdateDeviceResponse>;
118
134
  /**
119
- * 购买一次性授权License
135
+ * 获取指定设备Id,指定时间点数据流量使用情况
120
136
  */
121
- OrderPerLicense(req: OrderPerLicenseRequest, cb?: (error: string, rep: OrderPerLicenseResponse) => void): Promise<OrderPerLicenseResponse>;
137
+ GetFlowStatisticByName(req: GetFlowStatisticByNameRequest, cb?: (error: string, rep: GetFlowStatisticByNameResponse) => void): Promise<GetFlowStatisticByNameResponse>;
122
138
  /**
123
139
  * 获取单设备的实时流量统计指标
124
140
  */
@@ -132,13 +148,19 @@ export declare class Client extends AbstractClient {
132
148
  */
133
149
  GetGroupDetail(req: GetGroupDetailRequest, cb?: (error: string, rep: GetGroupDetailResponse) => void): Promise<GetGroupDetailResponse>;
134
150
  /**
135
- * 更新互通规则CIDR
151
+ * 获取互通规则列表
136
152
  */
137
- UpdateL3Cidr(req: UpdateL3CidrRequest, cb?: (error: string, rep: UpdateL3CidrResponse) => void): Promise<UpdateL3CidrResponse>;
153
+ GetL3ConnList(req: GetL3ConnListRequest, cb?: (error: string, rep: GetL3ConnListResponse) => void): Promise<GetL3ConnListResponse>;
138
154
  /**
139
- * 获取指定设备Id,指定时间点数据流量使用情况
155
+ * 更新客户自有网关集群配置。
156
+
157
+ 目前仅支持修改集群的公网访问 IP。
140
158
  */
141
- GetFlowStatisticByName(req: GetFlowStatisticByNameRequest, cb?: (error: string, rep: GetFlowStatisticByNameResponse) => void): Promise<GetFlowStatisticByNameResponse>;
159
+ UpdateCustomerGatewayCluster(req: UpdateCustomerGatewayClusterRequest, cb?: (error: string, rep: UpdateCustomerGatewayClusterResponse) => void): Promise<UpdateCustomerGatewayClusterResponse>;
160
+ /**
161
+ * 此接口用来查询接入点列表。
162
+ */
163
+ DescribeAccessPointList(req: DescribeAccessPointListRequest, cb?: (error: string, rep: DescribeAccessPointListResponse) => void): Promise<DescribeAccessPointListResponse>;
142
164
  /**
143
165
  * 获取厂商硬件设备列表
144
166
  */
@@ -148,9 +170,11 @@ export declare class Client extends AbstractClient {
148
170
  */
149
171
  GetNetMonitorByName(req: GetNetMonitorByNameRequest, cb?: (error: string, rep: GetNetMonitorByNameResponse) => void): Promise<GetNetMonitorByNameResponse>;
150
172
  /**
151
- * 新建互通规则
173
+ * 删除客户自有网关集群。
174
+
175
+ 删除指定的客户自有网关集群,操作不可逆。调用接口后,若通过 GetCustomerGatewayClusterList 接口查询不到对应集群,则表示删除成功。
152
176
  */
153
- AddL3Conn(req: AddL3ConnRequest, cb?: (error: string, rep: AddL3ConnResponse) => void): Promise<AddL3ConnResponse>;
177
+ DeleteCustomerGatewayCluster(req: DeleteCustomerGatewayClusterRequest, cb?: (error: string, rep: DeleteCustomerGatewayClusterResponse) => void): Promise<DeleteCustomerGatewayClusterResponse>;
154
178
  /**
155
179
  * 在用量统计页面下载流量数据
156
180
  */
@@ -160,13 +184,15 @@ export declare class Client extends AbstractClient {
160
184
  */
161
185
  CreateEncryptedKey(req?: CreateEncryptedKeyRequest, cb?: (error: string, rep: CreateEncryptedKeyResponse) => void): Promise<CreateEncryptedKeyResponse>;
162
186
  /**
163
- * 根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key
187
+ * 向指定的客户自有网关集群注册一个网关实例。
188
+
189
+ 注册成功后返回网关实例 ID、鉴权 Token 及 Agent 相关地址信息,用于后续网关 Agent 上报。
164
190
  */
165
- GetFlowAlarmInfo(req?: GetFlowAlarmInfoRequest, cb?: (error: string, rep: GetFlowAlarmInfoResponse) => void): Promise<GetFlowAlarmInfoResponse>;
191
+ AddGateway(req: AddGatewayRequest, cb?: (error: string, rep: AddGatewayResponse) => void): Promise<AddGatewayResponse>;
166
192
  /**
167
- * 用户上报自定义的订单信息,多网聚合加速(腾讯云聚通)服务将相关信息进行保存
193
+ * 购买一次性授权License
168
194
  */
169
- ReportOrder(req: ReportOrderRequest, cb?: (error: string, rep: ReportOrderResponse) => void): Promise<ReportOrderResponse>;
195
+ OrderPerLicense(req: OrderPerLicenseRequest, cb?: (error: string, rep: OrderPerLicenseResponse) => void): Promise<OrderPerLicenseResponse>;
170
196
  /**
171
197
  * 删除分组中的设备
172
198
  */
@@ -191,6 +217,16 @@ export declare class Client extends AbstractClient {
191
217
  * 更新互通规则开关
192
218
  */
193
219
  UpdateL3Switch(req: UpdateL3SwitchRequest, cb?: (error: string, rep: UpdateL3SwitchResponse) => void): Promise<UpdateL3SwitchResponse>;
220
+ /**
221
+ * 新建互通规则
222
+ */
223
+ AddL3Conn(req: AddL3ConnRequest, cb?: (error: string, rep: AddL3ConnResponse) => void): Promise<AddL3ConnResponse>;
224
+ /**
225
+ * 查询客户自有网关集群列表。
226
+
227
+ 支持按集群名称关键字过滤,使用 Offset/Limit 分页返回集群及其下网关实例信息。
228
+ */
229
+ GetCustomerGatewayClusterList(req: GetCustomerGatewayClusterListRequest, cb?: (error: string, rep: GetCustomerGatewayClusterListResponse) => void): Promise<GetCustomerGatewayClusterListResponse>;
194
230
  /**
195
231
  * 新建设备记录
196
232
  */
@@ -215,14 +251,22 @@ export declare class Client extends AbstractClient {
215
251
  * 更新分组备注
216
252
  */
217
253
  UpdateGroup(req: UpdateGroupRequest, cb?: (error: string, rep: UpdateGroupResponse) => void): Promise<UpdateGroupResponse>;
254
+ /**
255
+ * 从指定集群下删除一个客户自有网关实例。
256
+
257
+ 删除后,通过 GetCustomerGatewayClusterList 查询不到对应实例,则表示删除成功。
258
+ */
259
+ DeleteGateway(req: DeleteGatewayRequest, cb?: (error: string, rep: DeleteGatewayResponse) => void): Promise<DeleteGatewayResponse>;
218
260
  /**
219
261
  * 新建分组
220
262
  */
221
263
  AddGroup(req: AddGroupRequest, cb?: (error: string, rep: AddGroupResponse) => void): Promise<AddGroupResponse>;
222
264
  /**
223
- * 获取互通规则列表
265
+ * 创建客户自有网关集群。
266
+
267
+ 用于承载客户侧的自有网关实例,创建成功后返回集群 ID。
224
268
  */
225
- GetL3ConnList(req: GetL3ConnListRequest, cb?: (error: string, rep: GetL3ConnListResponse) => void): Promise<GetL3ConnListResponse>;
269
+ AddCustomerGatewayCluster(req: AddCustomerGatewayClusterRequest, cb?: (error: string, rep: AddCustomerGatewayClusterResponse) => void): Promise<AddCustomerGatewayClusterResponse>;
226
270
  /**
227
271
  * 更新互通规则备注
228
272
  */
@@ -27,6 +27,12 @@ class Client extends abstract_client_1.AbstractClient {
27
27
  constructor(clientConfig) {
28
28
  super("mna.tencentcloudapi.com", "2021-01-19", clientConfig);
29
29
  }
30
+ /**
31
+ * 更新互通规则CIDR
32
+ */
33
+ async UpdateL3Cidr(req, cb) {
34
+ return this.request("UpdateL3Cidr", req, cb);
35
+ }
30
36
  /**
31
37
  * 设置用户流量告警信息接口,通过该接口设置流量包告警阈值以及告警时回调的url和key
32
38
  */
@@ -111,6 +117,12 @@ class Client extends abstract_client_1.AbstractClient {
111
117
  async ModifyDeviceAccessRegions(req, cb) {
112
118
  return this.request("ModifyDeviceAccessRegions", req, cb);
113
119
  }
120
+ /**
121
+ * 修改设备接入网关类型。
122
+ */
123
+ async ModifyDeviceAccessScope(req, cb) {
124
+ return this.request("ModifyDeviceAccessScope", req, cb);
125
+ }
114
126
  /**
115
127
  * 激活硬件设备
116
128
  */
@@ -165,6 +177,12 @@ class Client extends abstract_client_1.AbstractClient {
165
177
  async AddApplication(req, cb) {
166
178
  return this.request("AddApplication", req, cb);
167
179
  }
180
+ /**
181
+ * 用户上报自定义的订单信息,多网聚合加速(腾讯云聚通)服务将相关信息进行保存
182
+ */
183
+ async ReportOrder(req, cb) {
184
+ return this.request("ReportOrder", req, cb);
185
+ }
168
186
  /**
169
187
  * 活跃设备数量统计
170
188
  */
@@ -177,6 +195,12 @@ class Client extends abstract_client_1.AbstractClient {
177
195
  async UpdateApplicationKey(req, cb) {
178
196
  return this.request("UpdateApplicationKey", req, cb);
179
197
  }
198
+ /**
199
+ * 根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key
200
+ */
201
+ async GetFlowAlarmInfo(req, cb) {
202
+ return this.request("GetFlowAlarmInfo", req, cb);
203
+ }
180
204
  /**
181
205
  * 删除设备信息
182
206
  */
@@ -190,10 +214,10 @@ class Client extends abstract_client_1.AbstractClient {
190
214
  return this.request("UpdateDevice", req, cb);
191
215
  }
192
216
  /**
193
- * 购买一次性授权License
217
+ * 获取指定设备Id,指定时间点数据流量使用情况
194
218
  */
195
- async OrderPerLicense(req, cb) {
196
- return this.request("OrderPerLicense", req, cb);
219
+ async GetFlowStatisticByName(req, cb) {
220
+ return this.request("GetFlowStatisticByName", req, cb);
197
221
  }
198
222
  /**
199
223
  * 获取单设备的实时流量统计指标
@@ -214,16 +238,24 @@ class Client extends abstract_client_1.AbstractClient {
214
238
  return this.request("GetGroupDetail", req, cb);
215
239
  }
216
240
  /**
217
- * 更新互通规则CIDR
241
+ * 获取互通规则列表
218
242
  */
219
- async UpdateL3Cidr(req, cb) {
220
- return this.request("UpdateL3Cidr", req, cb);
243
+ async GetL3ConnList(req, cb) {
244
+ return this.request("GetL3ConnList", req, cb);
221
245
  }
222
246
  /**
223
- * 获取指定设备Id,指定时间点数据流量使用情况
247
+ * 更新客户自有网关集群配置。
248
+
249
+ 目前仅支持修改集群的公网访问 IP。
224
250
  */
225
- async GetFlowStatisticByName(req, cb) {
226
- return this.request("GetFlowStatisticByName", req, cb);
251
+ async UpdateCustomerGatewayCluster(req, cb) {
252
+ return this.request("UpdateCustomerGatewayCluster", req, cb);
253
+ }
254
+ /**
255
+ * 此接口用来查询接入点列表。
256
+ */
257
+ async DescribeAccessPointList(req, cb) {
258
+ return this.request("DescribeAccessPointList", req, cb);
227
259
  }
228
260
  /**
229
261
  * 获取厂商硬件设备列表
@@ -238,10 +270,12 @@ class Client extends abstract_client_1.AbstractClient {
238
270
  return this.request("GetNetMonitorByName", req, cb);
239
271
  }
240
272
  /**
241
- * 新建互通规则
273
+ * 删除客户自有网关集群。
274
+
275
+ 删除指定的客户自有网关集群,操作不可逆。调用接口后,若通过 GetCustomerGatewayClusterList 接口查询不到对应集群,则表示删除成功。
242
276
  */
243
- async AddL3Conn(req, cb) {
244
- return this.request("AddL3Conn", req, cb);
277
+ async DeleteCustomerGatewayCluster(req, cb) {
278
+ return this.request("DeleteCustomerGatewayCluster", req, cb);
245
279
  }
246
280
  /**
247
281
  * 在用量统计页面下载流量数据
@@ -256,16 +290,18 @@ class Client extends abstract_client_1.AbstractClient {
256
290
  return this.request("CreateEncryptedKey", req, cb);
257
291
  }
258
292
  /**
259
- * 根据AppId查询用户设置的流量告警信息,包括阈值,回调url和key
293
+ * 向指定的客户自有网关集群注册一个网关实例。
294
+
295
+ 注册成功后返回网关实例 ID、鉴权 Token 及 Agent 相关地址信息,用于后续网关 Agent 上报。
260
296
  */
261
- async GetFlowAlarmInfo(req, cb) {
262
- return this.request("GetFlowAlarmInfo", req, cb);
297
+ async AddGateway(req, cb) {
298
+ return this.request("AddGateway", req, cb);
263
299
  }
264
300
  /**
265
- * 用户上报自定义的订单信息,多网聚合加速(腾讯云聚通)服务将相关信息进行保存
301
+ * 购买一次性授权License
266
302
  */
267
- async ReportOrder(req, cb) {
268
- return this.request("ReportOrder", req, cb);
303
+ async OrderPerLicense(req, cb) {
304
+ return this.request("OrderPerLicense", req, cb);
269
305
  }
270
306
  /**
271
307
  * 删除分组中的设备
@@ -303,6 +339,20 @@ class Client extends abstract_client_1.AbstractClient {
303
339
  async UpdateL3Switch(req, cb) {
304
340
  return this.request("UpdateL3Switch", req, cb);
305
341
  }
342
+ /**
343
+ * 新建互通规则
344
+ */
345
+ async AddL3Conn(req, cb) {
346
+ return this.request("AddL3Conn", req, cb);
347
+ }
348
+ /**
349
+ * 查询客户自有网关集群列表。
350
+
351
+ 支持按集群名称关键字过滤,使用 Offset/Limit 分页返回集群及其下网关实例信息。
352
+ */
353
+ async GetCustomerGatewayClusterList(req, cb) {
354
+ return this.request("GetCustomerGatewayClusterList", req, cb);
355
+ }
306
356
  /**
307
357
  * 新建设备记录
308
358
  */
@@ -339,6 +389,14 @@ class Client extends abstract_client_1.AbstractClient {
339
389
  async UpdateGroup(req, cb) {
340
390
  return this.request("UpdateGroup", req, cb);
341
391
  }
392
+ /**
393
+ * 从指定集群下删除一个客户自有网关实例。
394
+
395
+ 删除后,通过 GetCustomerGatewayClusterList 查询不到对应实例,则表示删除成功。
396
+ */
397
+ async DeleteGateway(req, cb) {
398
+ return this.request("DeleteGateway", req, cb);
399
+ }
342
400
  /**
343
401
  * 新建分组
344
402
  */
@@ -346,10 +404,12 @@ class Client extends abstract_client_1.AbstractClient {
346
404
  return this.request("AddGroup", req, cb);
347
405
  }
348
406
  /**
349
- * 获取互通规则列表
407
+ * 创建客户自有网关集群。
408
+
409
+ 用于承载客户侧的自有网关实例,创建成功后返回集群 ID。
350
410
  */
351
- async GetL3ConnList(req, cb) {
352
- return this.request("GetL3ConnList", req, cb);
411
+ async AddCustomerGatewayCluster(req, cb) {
412
+ return this.request("AddCustomerGatewayCluster", req, cb);
353
413
  }
354
414
  /**
355
415
  * 更新互通规则备注