tencentcloud-sdk-nodejs 4.1.129 → 4.1.131
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/ess/v20201111/ess_client.js +6 -0
- package/es/services/ioa/v20220601/ioa_client.js +12 -0
- package/es/services/privatedns/v20201028/privatedns_client.js +35 -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/cdb/v20170320/cdb_models.d.ts +28 -14
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +6 -1
- package/tencentcloud/services/cloudhsm/v20191112/cloudhsm_models.d.ts +6 -6
- package/tencentcloud/services/ctem/v20231128/ctem_models.d.ts +12 -0
- package/tencentcloud/services/dts/v20211206/dts_client.d.ts +1 -1
- package/tencentcloud/services/dts/v20211206/dts_client.js +1 -1
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +4 -2
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +10 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +13 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +232 -67
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +8 -2
- package/tencentcloud/services/ioa/v20220601/ioa_client.d.ts +17 -1
- package/tencentcloud/services/ioa/v20220601/ioa_client.js +24 -0
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +297 -14
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +9 -1
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +1 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_models.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +113 -47
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +13 -1
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +47 -3
- package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +69 -3
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +1026 -597
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +5 -0
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +1 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +1 -1
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +894 -556
- package/tencentcloud/services/wedata/v20250806/wedata_models.d.ts +4 -3
|
@@ -254,6 +254,48 @@ export interface FrameRateConfig {
|
|
|
254
254
|
*/
|
|
255
255
|
Fps?: number;
|
|
256
256
|
}
|
|
257
|
+
/**
|
|
258
|
+
* 视频(音频)理解结果
|
|
259
|
+
*/
|
|
260
|
+
export interface AiAnalysisTaskVideoComprehensionResult {
|
|
261
|
+
/**
|
|
262
|
+
* 任务状态,有 `PROCESSING`,`SUCCESS` 和 `FAIL` 三种。
|
|
263
|
+
*/
|
|
264
|
+
Status?: string;
|
|
265
|
+
/**
|
|
266
|
+
* 错误码,0:成功,其他值:失败
|
|
267
|
+
*/
|
|
268
|
+
ErrCode?: number;
|
|
269
|
+
/**
|
|
270
|
+
* 错误信息
|
|
271
|
+
*/
|
|
272
|
+
Message?: string;
|
|
273
|
+
/**
|
|
274
|
+
* 视频(音频)理解输入
|
|
275
|
+
*/
|
|
276
|
+
Input?: AiAnalysisTaskVideoComprehensionInput;
|
|
277
|
+
/**
|
|
278
|
+
* 视频(音频)理解输出
|
|
279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
280
|
+
*/
|
|
281
|
+
Output?: AiAnalysisTaskVideoComprehensionOutput;
|
|
282
|
+
/**
|
|
283
|
+
* 错误码,空字符串表示成功,其他值表示失败,取值请参考 媒体处理类错误码 列表
|
|
284
|
+
*/
|
|
285
|
+
ErrCodeExt?: string;
|
|
286
|
+
/**
|
|
287
|
+
* 任务进度
|
|
288
|
+
*/
|
|
289
|
+
Progress?: number;
|
|
290
|
+
/**
|
|
291
|
+
* 任务开始执行的时间,采用 ISO 日期格式。
|
|
292
|
+
*/
|
|
293
|
+
BeginProcessTime?: string;
|
|
294
|
+
/**
|
|
295
|
+
* 任务执行完毕时间,采用 ISO 日期格式。
|
|
296
|
+
*/
|
|
297
|
+
FinishTime?: string;
|
|
298
|
+
}
|
|
257
299
|
/**
|
|
258
300
|
* DeleteStreamLinkSecurityGroup返回参数结构体
|
|
259
301
|
*/
|
|
@@ -6533,50 +6575,31 @@ export interface AiReviewTaskPornOcrResult {
|
|
|
6533
6575
|
Output?: AiReviewPornOcrTaskOutput;
|
|
6534
6576
|
}
|
|
6535
6577
|
/**
|
|
6536
|
-
*
|
|
6578
|
+
* DescribeLiveRecordTemplates请求参数结构体
|
|
6537
6579
|
*/
|
|
6538
|
-
export interface
|
|
6539
|
-
/**
|
|
6540
|
-
* 媒体处理的文件输入信息。
|
|
6541
|
-
*/
|
|
6542
|
-
InputInfo: Array<MediaInputInfo>;
|
|
6543
|
-
/**
|
|
6544
|
-
* 媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
|
|
6545
|
-
注意:当InputInfo.Type为URL时,该参数是必填项
|
|
6546
|
-
*/
|
|
6547
|
-
OutputStorage?: TaskOutputStorage;
|
|
6548
|
-
/**
|
|
6549
|
-
* 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
|
|
6550
|
-
如果不填,表示与 InputInfo 中文件所在的目录一致。
|
|
6551
|
-
*/
|
|
6552
|
-
OutputDir?: string;
|
|
6553
|
-
/**
|
|
6554
|
-
* 智能字幕
|
|
6555
|
-
*/
|
|
6556
|
-
SmartSubtitlesTask?: SmartSubtitlesTaskInput;
|
|
6580
|
+
export interface DescribeLiveRecordTemplatesRequest {
|
|
6557
6581
|
/**
|
|
6558
|
-
*
|
|
6582
|
+
* 录制模板唯一标识过滤条件,数组长度限制:100。
|
|
6559
6583
|
*/
|
|
6560
|
-
|
|
6584
|
+
Definitions?: Array<number | bigint>;
|
|
6561
6585
|
/**
|
|
6562
|
-
*
|
|
6586
|
+
* 分页偏移量,默认值:0。
|
|
6563
6587
|
*/
|
|
6564
|
-
|
|
6588
|
+
Offset?: number;
|
|
6565
6589
|
/**
|
|
6566
|
-
*
|
|
6590
|
+
* 返回记录条数,默认值:10,最大值:100。
|
|
6567
6591
|
*/
|
|
6568
|
-
|
|
6592
|
+
Limit?: number;
|
|
6569
6593
|
/**
|
|
6570
|
-
*
|
|
6594
|
+
* 模板类型过滤条件,不填则返回所有,可选值:
|
|
6595
|
+
* Preset:系统预置模板;
|
|
6596
|
+
* Custom:用户自定义模板。
|
|
6571
6597
|
*/
|
|
6572
|
-
|
|
6598
|
+
Type?: string;
|
|
6573
6599
|
/**
|
|
6574
|
-
*
|
|
6575
|
-
0:表示不跳过
|
|
6576
|
-
1:表示跳过
|
|
6577
|
-
默认值:0
|
|
6600
|
+
* 录制模板标识过滤条件,长度限制:64 个字符。
|
|
6578
6601
|
*/
|
|
6579
|
-
|
|
6602
|
+
Name?: string;
|
|
6580
6603
|
}
|
|
6581
6604
|
/**
|
|
6582
6605
|
* DescribeWatermarkTemplates请求参数结构体
|
|
@@ -10386,6 +10409,7 @@ export interface AiAnalysisResult {
|
|
|
10386
10409
|
<li>Description:大模型摘要</li>
|
|
10387
10410
|
<li>Dubbing:智能译制</li>
|
|
10388
10411
|
<li>VideoRemake: 视频去重</li>
|
|
10412
|
+
<li>VideoComprehension: 视频(音频)理解</li>
|
|
10389
10413
|
*/
|
|
10390
10414
|
Type?: string;
|
|
10391
10415
|
/**
|
|
@@ -10448,6 +10472,11 @@ export interface AiAnalysisResult {
|
|
|
10448
10472
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10449
10473
|
*/
|
|
10450
10474
|
VideoRemakeTask?: AiAnalysisTaskVideoRemakeResult;
|
|
10475
|
+
/**
|
|
10476
|
+
* 视频(音频)理解任务的查询结果,当任务类型为 VideoComprehension 时有效。
|
|
10477
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10478
|
+
*/
|
|
10479
|
+
VideoComprehensionTask?: AiAnalysisTaskVideoComprehensionResult;
|
|
10451
10480
|
}
|
|
10452
10481
|
/**
|
|
10453
10482
|
* 智能字幕翻译的输入。
|
|
@@ -11658,6 +11687,15 @@ export interface ActionConfigInfo {
|
|
|
11658
11687
|
*/
|
|
11659
11688
|
Switch: string;
|
|
11660
11689
|
}
|
|
11690
|
+
/**
|
|
11691
|
+
* 视频(音频)理解任务输入
|
|
11692
|
+
*/
|
|
11693
|
+
export interface AiAnalysisTaskVideoComprehensionInput {
|
|
11694
|
+
/**
|
|
11695
|
+
* 视频(音频)理解模板ID
|
|
11696
|
+
*/
|
|
11697
|
+
Definition?: number;
|
|
11698
|
+
}
|
|
11661
11699
|
/**
|
|
11662
11700
|
* 智能标签结果信息
|
|
11663
11701
|
*/
|
|
@@ -13563,6 +13601,15 @@ export interface CreateWorkflowResponse {
|
|
|
13563
13601
|
*/
|
|
13564
13602
|
RequestId?: string;
|
|
13565
13603
|
}
|
|
13604
|
+
/**
|
|
13605
|
+
* 视频(音频)理解输出内容结果信息
|
|
13606
|
+
*/
|
|
13607
|
+
export interface AiAnalysisTaskVideoComprehensionOutput {
|
|
13608
|
+
/**
|
|
13609
|
+
* 视频(音频)理解内容详情
|
|
13610
|
+
*/
|
|
13611
|
+
VideoComprehensionAnalysisResult?: string;
|
|
13612
|
+
}
|
|
13566
13613
|
/**
|
|
13567
13614
|
* 语音全文识别结果。
|
|
13568
13615
|
*/
|
|
@@ -13771,31 +13818,50 @@ export interface AiRecognitionTaskOcrWordsSegmentItem {
|
|
|
13771
13818
|
AreaCoordSet?: Array<number | bigint>;
|
|
13772
13819
|
}
|
|
13773
13820
|
/**
|
|
13774
|
-
*
|
|
13821
|
+
* BatchProcessMedia请求参数结构体
|
|
13775
13822
|
*/
|
|
13776
|
-
export interface
|
|
13823
|
+
export interface BatchProcessMediaRequest {
|
|
13777
13824
|
/**
|
|
13778
|
-
*
|
|
13825
|
+
* 媒体处理的文件输入信息。
|
|
13779
13826
|
*/
|
|
13780
|
-
|
|
13827
|
+
InputInfo: Array<MediaInputInfo>;
|
|
13781
13828
|
/**
|
|
13782
|
-
*
|
|
13829
|
+
* 媒体处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
|
|
13830
|
+
注意:当InputInfo.Type为URL时,该参数是必填项
|
|
13783
13831
|
*/
|
|
13784
|
-
|
|
13832
|
+
OutputStorage?: TaskOutputStorage;
|
|
13785
13833
|
/**
|
|
13786
|
-
*
|
|
13834
|
+
* 媒体处理生成的文件输出的目标目录,必选以 / 开头和结尾,如`/movie/201907/`。
|
|
13835
|
+
如果不填,表示与 InputInfo 中文件所在的目录一致。
|
|
13787
13836
|
*/
|
|
13788
|
-
|
|
13837
|
+
OutputDir?: string;
|
|
13789
13838
|
/**
|
|
13790
|
-
*
|
|
13791
|
-
* Preset:系统预置模板;
|
|
13792
|
-
* Custom:用户自定义模板。
|
|
13839
|
+
* 智能字幕
|
|
13793
13840
|
*/
|
|
13794
|
-
|
|
13841
|
+
SmartSubtitlesTask?: SmartSubtitlesTaskInput;
|
|
13795
13842
|
/**
|
|
13796
|
-
*
|
|
13843
|
+
* 任务的事件通知信息,不填代表不获取事件通知。
|
|
13797
13844
|
*/
|
|
13798
|
-
|
|
13845
|
+
TaskNotifyConfig?: TaskNotifyConfig;
|
|
13846
|
+
/**
|
|
13847
|
+
* 任务流的优先级,数值越大优先级越高,取值范围是-10到 10,不填代表0。
|
|
13848
|
+
*/
|
|
13849
|
+
TasksPriority?: number;
|
|
13850
|
+
/**
|
|
13851
|
+
* 来源上下文,用于透传用户请求信息,任务流状态变更回调将返回该字段值,最长 1000 个字符。
|
|
13852
|
+
*/
|
|
13853
|
+
SessionContext?: string;
|
|
13854
|
+
/**
|
|
13855
|
+
* 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
|
|
13856
|
+
*/
|
|
13857
|
+
ResourceId?: string;
|
|
13858
|
+
/**
|
|
13859
|
+
* 是否跳过元信息获取,可选值:
|
|
13860
|
+
0:表示不跳过
|
|
13861
|
+
1:表示跳过
|
|
13862
|
+
默认值:0
|
|
13863
|
+
*/
|
|
13864
|
+
SkipMateData?: number;
|
|
13799
13865
|
}
|
|
13800
13866
|
/**
|
|
13801
13867
|
* 传输流日志信息。
|
|
@@ -845,6 +845,10 @@ export interface TreeJobSets {
|
|
|
845
845
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
846
846
|
*/
|
|
847
847
|
DecodeSqlCode?: string;
|
|
848
|
+
/**
|
|
849
|
+
* 发布版本配置id
|
|
850
|
+
*/
|
|
851
|
+
PublishedJobConfigId?: number;
|
|
848
852
|
}
|
|
849
853
|
/**
|
|
850
854
|
* 资源详细描述
|
|
@@ -3485,10 +3489,14 @@ export interface JobV1 {
|
|
|
3485
3489
|
*/
|
|
3486
3490
|
ClusterName?: string;
|
|
3487
3491
|
/**
|
|
3488
|
-
*
|
|
3492
|
+
* 最新配置版本号,包括已经删除的版本
|
|
3489
3493
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3490
3494
|
*/
|
|
3491
3495
|
LatestJobConfigVersion?: number;
|
|
3496
|
+
/**
|
|
3497
|
+
* 最新的版本号,不包括已经删除的版本号
|
|
3498
|
+
*/
|
|
3499
|
+
LatestValidJobConfigVersion?: number;
|
|
3492
3500
|
/**
|
|
3493
3501
|
* 已发布的配置版本
|
|
3494
3502
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -3599,6 +3607,10 @@ export interface JobV1 {
|
|
|
3599
3607
|
* 停止持续告警
|
|
3600
3608
|
*/
|
|
3601
3609
|
ContinueAlarm?: number;
|
|
3610
|
+
/**
|
|
3611
|
+
* 作业重启次数
|
|
3612
|
+
*/
|
|
3613
|
+
RestartCount?: number;
|
|
3602
3614
|
}
|
|
3603
3615
|
/**
|
|
3604
3616
|
* 作业配置详情
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import {
|
|
3
|
+
import { QueryAsyncBindVpcStatusResponse, DescribeAccountVpcListRequest, DescribePrivateZoneRequest, DescribeAccountVpcListResponse, DeletePrivateDNSAccountRequest, AddSpecifyPrivateZoneVpcRequest, ModifyInboundEndpointRequest, CreatePrivateDNSAccountResponse, SubscribePrivateZoneServiceRequest, CreatePrivateDNSAccountRequest, CreateForwardRuleResponse, ModifyPrivateZoneVpcRequest, DescribePrivateDNSAccountListResponse, CreateExtendEndpointRequest, CreatePrivateZoneRecordRequest, ModifyPrivateZoneRecordResponse, DescribePrivateZoneRecordListResponse, DescribeRequestDataResponse, DeleteInboundEndpointResponse, DescribeRecordRequest, DeleteForwardRuleRequest, ModifyPrivateZoneResponse, DeleteSpecifyPrivateZoneVpcRequest, ModifyPrivateZoneRequest, DescribeRecordResponse, DescribeDashboardResponse, ModifyForwardRuleResponse, SubscribePrivateZoneServiceResponse, ModifyRecordsStatusRequest, CreateInboundEndpointResponse, ModifyPrivateZoneRecordRequest, DescribePrivateDNSAccountListRequest, DescribePrivateZoneRecordListRequest, DescribeForwardRuleListRequest, ModifyRecordsStatusResponse, DeleteSpecifyPrivateZoneVpcResponse, DeleteEndPointResponse, DeleteEndPointRequest, DescribePrivateZoneListRequest, DescribeExtendEndpointListRequest, CreatePrivateZoneRequest, ModifyForwardRuleRequest, DescribePrivateZoneResponse, DescribeRequestDataRequest, DescribePrivateZoneServiceResponse, DescribeDashboardRequest, DescribeInboundEndpointListResponse, DeletePrivateZoneResponse, DescribePrivateZoneListResponse, DescribePrivateZoneServiceRequest, DeleteInboundEndpointRequest, ModifyPrivateZoneVpcResponse, DescribeQuotaUsageResponse, DescribeAuditLogResponse, CreateForwardRuleRequest, AddSpecifyPrivateZoneVpcResponse, CreateExtendEndpointResponse, CreateInboundEndpointRequest, CreatePrivateZoneResponse, CreatePrivateZoneRecordResponse, DescribeForwardRuleListResponse, DescribeExtendEndpointListResponse, DescribeAuditLogRequest, DescribeQuotaUsageRequest, DescribeInboundEndpointListRequest, DeletePrivateZoneRequest, DeletePrivateZoneRecordRequest, DeleteForwardRuleResponse, ModifyInboundEndpointResponse, DeletePrivateZoneRecordResponse, DeletePrivateDNSAccountResponse, QueryAsyncBindVpcStatusRequest } from "./privatedns_models";
|
|
4
4
|
/**
|
|
5
5
|
* privatedns client
|
|
6
6
|
* @class
|
|
@@ -16,9 +16,13 @@ export declare class Client extends AbstractClient {
|
|
|
16
16
|
*/
|
|
17
17
|
DescribePrivateZone(req: DescribePrivateZoneRequest, cb?: (error: string, rep: DescribePrivateZoneResponse) => void): Promise<DescribePrivateZoneResponse>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* 删除转发规则并停止转发
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
DeleteForwardRule(req: DeleteForwardRuleRequest, cb?: (error: string, rep: DeleteForwardRuleResponse) => void): Promise<DeleteForwardRuleResponse>;
|
|
22
|
+
/**
|
|
23
|
+
* 删除终端节点
|
|
24
|
+
*/
|
|
25
|
+
DeleteEndPoint(req: DeleteEndPointRequest, cb?: (error: string, rep: DeleteEndPointResponse) => void): Promise<DeleteEndPointResponse>;
|
|
22
26
|
/**
|
|
23
27
|
* 查询额度使用情况
|
|
24
28
|
*/
|
|
@@ -39,10 +43,22 @@ export declare class Client extends AbstractClient {
|
|
|
39
43
|
* 获取私有域列表
|
|
40
44
|
*/
|
|
41
45
|
DescribePrivateZoneList(req: DescribePrivateZoneListRequest, cb?: (error: string, rep: DescribePrivateZoneListResponse) => void): Promise<DescribePrivateZoneListResponse>;
|
|
46
|
+
/**
|
|
47
|
+
* 删除入站终端节点
|
|
48
|
+
*/
|
|
49
|
+
ModifyInboundEndpoint(req: ModifyInboundEndpointRequest, cb?: (error: string, rep: ModifyInboundEndpointResponse) => void): Promise<ModifyInboundEndpointResponse>;
|
|
50
|
+
/**
|
|
51
|
+
* 获取私有域记录列表
|
|
52
|
+
*/
|
|
53
|
+
DescribePrivateZoneRecordList(req: DescribePrivateZoneRecordListRequest, cb?: (error: string, rep: DescribePrivateZoneRecordListResponse) => void): Promise<DescribePrivateZoneRecordListResponse>;
|
|
42
54
|
/**
|
|
43
55
|
* 追加与私有域关联的VPC
|
|
44
56
|
*/
|
|
45
57
|
AddSpecifyPrivateZoneVpc(req: AddSpecifyPrivateZoneVpcRequest, cb?: (error: string, rep: AddSpecifyPrivateZoneVpcResponse) => void): Promise<AddSpecifyPrivateZoneVpcResponse>;
|
|
58
|
+
/**
|
|
59
|
+
* 修改转发规则
|
|
60
|
+
*/
|
|
61
|
+
ModifyForwardRule(req: ModifyForwardRuleRequest, cb?: (error: string, rep: ModifyForwardRuleResponse) => void): Promise<ModifyForwardRuleResponse>;
|
|
46
62
|
/**
|
|
47
63
|
* 查询异步绑定vpc操作状态
|
|
48
64
|
*/
|
|
@@ -59,6 +75,10 @@ export declare class Client extends AbstractClient {
|
|
|
59
75
|
* 删除私有域解析账号
|
|
60
76
|
*/
|
|
61
77
|
DeletePrivateDNSAccount(req: DeletePrivateDNSAccountRequest, cb?: (error: string, rep: DeletePrivateDNSAccountResponse) => void): Promise<DeletePrivateDNSAccountResponse>;
|
|
78
|
+
/**
|
|
79
|
+
* 创建终端节点
|
|
80
|
+
*/
|
|
81
|
+
CreateExtendEndpoint(req?: CreateExtendEndpointRequest, cb?: (error: string, rep: CreateExtendEndpointResponse) => void): Promise<CreateExtendEndpointResponse>;
|
|
62
82
|
/**
|
|
63
83
|
* 开通私有域解析
|
|
64
84
|
*/
|
|
@@ -83,6 +103,10 @@ export declare class Client extends AbstractClient {
|
|
|
83
103
|
* 获取私有域记录
|
|
84
104
|
*/
|
|
85
105
|
DescribeRecord(req: DescribeRecordRequest, cb?: (error: string, rep: DescribeRecordResponse) => void): Promise<DescribeRecordResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* 删除入站终端节点
|
|
108
|
+
*/
|
|
109
|
+
CreateInboundEndpoint(req: CreateInboundEndpointRequest, cb?: (error: string, rep: CreateInboundEndpointResponse) => void): Promise<CreateInboundEndpointResponse>;
|
|
86
110
|
/**
|
|
87
111
|
* 修改解析记录状态
|
|
88
112
|
*/
|
|
@@ -91,10 +115,26 @@ export declare class Client extends AbstractClient {
|
|
|
91
115
|
* 删除与私有域关联的VPC
|
|
92
116
|
*/
|
|
93
117
|
DeleteSpecifyPrivateZoneVpc(req: DeleteSpecifyPrivateZoneVpcRequest, cb?: (error: string, rep: DeleteSpecifyPrivateZoneVpcResponse) => void): Promise<DeleteSpecifyPrivateZoneVpcResponse>;
|
|
118
|
+
/**
|
|
119
|
+
* 创建自定义转发规则
|
|
120
|
+
*/
|
|
121
|
+
CreateForwardRule(req: CreateForwardRuleRequest, cb?: (error: string, rep: CreateForwardRuleResponse) => void): Promise<CreateForwardRuleResponse>;
|
|
94
122
|
/**
|
|
95
123
|
* 查询私有域解析开通状态
|
|
96
124
|
*/
|
|
97
125
|
DescribePrivateZoneService(req?: DescribePrivateZoneServiceRequest, cb?: (error: string, rep: DescribePrivateZoneServiceResponse) => void): Promise<DescribePrivateZoneServiceResponse>;
|
|
126
|
+
/**
|
|
127
|
+
* 获取终端节点列表
|
|
128
|
+
*/
|
|
129
|
+
DescribeExtendEndpointList(req: DescribeExtendEndpointListRequest, cb?: (error: string, rep: DescribeExtendEndpointListResponse) => void): Promise<DescribeExtendEndpointListResponse>;
|
|
130
|
+
/**
|
|
131
|
+
* 查询转发规则列表
|
|
132
|
+
*/
|
|
133
|
+
DescribeForwardRuleList(req: DescribeForwardRuleListRequest, cb?: (error: string, rep: DescribeForwardRuleListResponse) => void): Promise<DescribeForwardRuleListResponse>;
|
|
134
|
+
/**
|
|
135
|
+
* 获取入站终端节点列表
|
|
136
|
+
*/
|
|
137
|
+
DescribeInboundEndpointList(req: DescribeInboundEndpointListRequest, cb?: (error: string, rep: DescribeInboundEndpointListResponse) => void): Promise<DescribeInboundEndpointListResponse>;
|
|
98
138
|
/**
|
|
99
139
|
* 删除私有域解析记录
|
|
100
140
|
*/
|
|
@@ -103,6 +143,10 @@ export declare class Client extends AbstractClient {
|
|
|
103
143
|
* 获取私有域解析请求量
|
|
104
144
|
*/
|
|
105
145
|
DescribeRequestData(req: DescribeRequestDataRequest, cb?: (error: string, rep: DescribeRequestDataResponse) => void): Promise<DescribeRequestDataResponse>;
|
|
146
|
+
/**
|
|
147
|
+
* 删除入站终端节点
|
|
148
|
+
*/
|
|
149
|
+
DeleteInboundEndpoint(req: DeleteInboundEndpointRequest, cb?: (error: string, rep: DeleteInboundEndpointResponse) => void): Promise<DeleteInboundEndpointResponse>;
|
|
106
150
|
/**
|
|
107
151
|
* 获取私有域解析账号列表
|
|
108
152
|
*/
|
|
@@ -40,10 +40,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
40
40
|
return this.request("DescribePrivateZone", req, cb);
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 删除转发规则并停止转发
|
|
44
44
|
*/
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
45
|
+
async DeleteForwardRule(req, cb) {
|
|
46
|
+
return this.request("DeleteForwardRule", req, cb);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 删除终端节点
|
|
50
|
+
*/
|
|
51
|
+
async DeleteEndPoint(req, cb) {
|
|
52
|
+
return this.request("DeleteEndPoint", req, cb);
|
|
47
53
|
}
|
|
48
54
|
/**
|
|
49
55
|
* 查询额度使用情况
|
|
@@ -75,12 +81,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
75
81
|
async DescribePrivateZoneList(req, cb) {
|
|
76
82
|
return this.request("DescribePrivateZoneList", req, cb);
|
|
77
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* 删除入站终端节点
|
|
86
|
+
*/
|
|
87
|
+
async ModifyInboundEndpoint(req, cb) {
|
|
88
|
+
return this.request("ModifyInboundEndpoint", req, cb);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* 获取私有域记录列表
|
|
92
|
+
*/
|
|
93
|
+
async DescribePrivateZoneRecordList(req, cb) {
|
|
94
|
+
return this.request("DescribePrivateZoneRecordList", req, cb);
|
|
95
|
+
}
|
|
78
96
|
/**
|
|
79
97
|
* 追加与私有域关联的VPC
|
|
80
98
|
*/
|
|
81
99
|
async AddSpecifyPrivateZoneVpc(req, cb) {
|
|
82
100
|
return this.request("AddSpecifyPrivateZoneVpc", req, cb);
|
|
83
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* 修改转发规则
|
|
104
|
+
*/
|
|
105
|
+
async ModifyForwardRule(req, cb) {
|
|
106
|
+
return this.request("ModifyForwardRule", req, cb);
|
|
107
|
+
}
|
|
84
108
|
/**
|
|
85
109
|
* 查询异步绑定vpc操作状态
|
|
86
110
|
*/
|
|
@@ -105,6 +129,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
105
129
|
async DeletePrivateDNSAccount(req, cb) {
|
|
106
130
|
return this.request("DeletePrivateDNSAccount", req, cb);
|
|
107
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* 创建终端节点
|
|
134
|
+
*/
|
|
135
|
+
async CreateExtendEndpoint(req, cb) {
|
|
136
|
+
return this.request("CreateExtendEndpoint", req, cb);
|
|
137
|
+
}
|
|
108
138
|
/**
|
|
109
139
|
* 开通私有域解析
|
|
110
140
|
*/
|
|
@@ -141,6 +171,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
141
171
|
async DescribeRecord(req, cb) {
|
|
142
172
|
return this.request("DescribeRecord", req, cb);
|
|
143
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* 删除入站终端节点
|
|
176
|
+
*/
|
|
177
|
+
async CreateInboundEndpoint(req, cb) {
|
|
178
|
+
return this.request("CreateInboundEndpoint", req, cb);
|
|
179
|
+
}
|
|
144
180
|
/**
|
|
145
181
|
* 修改解析记录状态
|
|
146
182
|
*/
|
|
@@ -153,12 +189,36 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
153
189
|
async DeleteSpecifyPrivateZoneVpc(req, cb) {
|
|
154
190
|
return this.request("DeleteSpecifyPrivateZoneVpc", req, cb);
|
|
155
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* 创建自定义转发规则
|
|
194
|
+
*/
|
|
195
|
+
async CreateForwardRule(req, cb) {
|
|
196
|
+
return this.request("CreateForwardRule", req, cb);
|
|
197
|
+
}
|
|
156
198
|
/**
|
|
157
199
|
* 查询私有域解析开通状态
|
|
158
200
|
*/
|
|
159
201
|
async DescribePrivateZoneService(req, cb) {
|
|
160
202
|
return this.request("DescribePrivateZoneService", req, cb);
|
|
161
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* 获取终端节点列表
|
|
206
|
+
*/
|
|
207
|
+
async DescribeExtendEndpointList(req, cb) {
|
|
208
|
+
return this.request("DescribeExtendEndpointList", req, cb);
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* 查询转发规则列表
|
|
212
|
+
*/
|
|
213
|
+
async DescribeForwardRuleList(req, cb) {
|
|
214
|
+
return this.request("DescribeForwardRuleList", req, cb);
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* 获取入站终端节点列表
|
|
218
|
+
*/
|
|
219
|
+
async DescribeInboundEndpointList(req, cb) {
|
|
220
|
+
return this.request("DescribeInboundEndpointList", req, cb);
|
|
221
|
+
}
|
|
162
222
|
/**
|
|
163
223
|
* 删除私有域解析记录
|
|
164
224
|
*/
|
|
@@ -171,6 +231,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
171
231
|
async DescribeRequestData(req, cb) {
|
|
172
232
|
return this.request("DescribeRequestData", req, cb);
|
|
173
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 删除入站终端节点
|
|
236
|
+
*/
|
|
237
|
+
async DeleteInboundEndpoint(req, cb) {
|
|
238
|
+
return this.request("DeleteInboundEndpoint", req, cb);
|
|
239
|
+
}
|
|
174
240
|
/**
|
|
175
241
|
* 获取私有域解析账号列表
|
|
176
242
|
*/
|