tencentcloud-sdk-nodejs 4.0.964 → 4.0.965

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +168 -0
  2. package/SERVICE_CHANGELOG.md +183 -506
  3. package/package.json +1 -1
  4. package/products.md +18 -18
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/acp/v20220105/acp_models.ts +2 -2
  7. package/src/services/as/v20180419/as_client.ts +9 -3
  8. package/src/services/as/v20180419/as_models.ts +10 -2
  9. package/src/services/ccc/v20200210/ccc_models.ts +3 -129
  10. package/src/services/cdb/v20170320/cdb_models.ts +1 -1
  11. package/src/services/cfw/v20190904/cfw_models.ts +2 -2
  12. package/src/services/clb/v20180317/clb_models.ts +1 -1
  13. package/src/services/csip/v20221121/csip_models.ts +0 -2
  14. package/src/services/cwp/v20180228/cwp_models.ts +3 -3
  15. package/src/services/essbasic/v20210526/essbasic_client.ts +4 -3
  16. package/src/services/hunyuan/v20230901/hunyuan_models.ts +4 -0
  17. package/src/services/iotvideo/v20191126/iotvideo_client.ts +47 -20
  18. package/src/services/iotvideo/v20191126/iotvideo_models.ts +142 -12
  19. package/src/services/mqtt/v20240516/mqtt_models.ts +2 -2
  20. package/src/services/privatedns/v20201028/privatedns_client.ts +73 -23
  21. package/src/services/privatedns/v20201028/privatedns_models.ts +361 -84
  22. package/src/services/tat/v20201028/tat_models.ts +11 -34
  23. package/src/services/tem/v20210701/tem_models.ts +12 -12
  24. package/src/services/vclm/v20240523/vclm_client.ts +11 -9
  25. package/src/services/vclm/v20240523/vclm_models.ts +252 -192
  26. package/tencentcloud/common/sdk_version.d.ts +1 -1
  27. package/tencentcloud/common/sdk_version.js +1 -1
  28. package/tencentcloud/services/acp/v20220105/acp_models.d.ts +2 -2
  29. package/tencentcloud/services/as/v20180419/as_client.d.ts +7 -1
  30. package/tencentcloud/services/as/v20180419/as_client.js +7 -1
  31. package/tencentcloud/services/as/v20180419/as_models.d.ts +10 -2
  32. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +2 -128
  33. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
  34. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +2 -2
  35. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
  36. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +0 -2
  37. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +3 -3
  38. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +4 -3
  39. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +4 -3
  40. package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +4 -0
  41. package/tencentcloud/services/iotvideo/v20191126/iotvideo_client.d.ts +15 -7
  42. package/tencentcloud/services/iotvideo/v20191126/iotvideo_client.js +21 -9
  43. package/tencentcloud/services/iotvideo/v20191126/iotvideo_models.d.ts +135 -12
  44. package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +2 -2
  45. package/tencentcloud/services/privatedns/v20201028/privatedns_client.d.ts +21 -5
  46. package/tencentcloud/services/privatedns/v20201028/privatedns_client.js +30 -6
  47. package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +350 -83
  48. package/tencentcloud/services/tat/v20201028/tat_models.d.ts +11 -34
  49. package/tencentcloud/services/tem/v20210701/tem_models.d.ts +12 -12
  50. package/tencentcloud/services/vclm/v20240523/vclm_client.d.ts +1 -1
  51. package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +246 -188
  52. package/test/iotvideo.v20191126.test.js +26 -6
  53. package/test/privatedns.v20201028.test.js +44 -4
@@ -40,10 +40,10 @@ 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 DeleteEndPoint(req, cb) {
46
- return this.request("DeleteEndPoint", req, cb);
45
+ async DescribePrivateZoneRecordList(req, cb) {
46
+ return this.request("DescribePrivateZoneRecordList", req, cb);
47
47
  }
48
48
  /**
49
49
  * 查询额度使用情况
@@ -63,6 +63,12 @@ class Client extends abstract_client_1.AbstractClient {
63
63
  async CreatePrivateZoneRecord(req, cb) {
64
64
  return this.request("CreatePrivateZoneRecord", req, cb);
65
65
  }
66
+ /**
67
+ * 获取终端节点列表
68
+ */
69
+ async DescribeEndPointList(req, cb) {
70
+ return this.request("DescribeEndPointList", req, cb);
71
+ }
66
72
  /**
67
73
  * 创建私有域
68
74
  */
@@ -88,10 +94,10 @@ class Client extends abstract_client_1.AbstractClient {
88
94
  return this.request("AddSpecifyPrivateZoneVpc", req, cb);
89
95
  }
90
96
  /**
91
- * 获取私有域记录列表
97
+ * 删除终端节点
92
98
  */
93
- async DescribePrivateZoneRecordList(req, cb) {
94
- return this.request("DescribePrivateZoneRecordList", req, cb);
99
+ async DeleteEndPoint(req, cb) {
100
+ return this.request("DeleteEndPoint", req, cb);
95
101
  }
96
102
  /**
97
103
  * 查询异步绑定vpc操作状态
@@ -147,6 +153,12 @@ class Client extends abstract_client_1.AbstractClient {
147
153
  async DescribeAccountVpcList(req, cb) {
148
154
  return this.request("DescribeAccountVpcList", req, cb);
149
155
  }
156
+ /**
157
+ * 同时创建终端节点和终端节点服务
158
+ */
159
+ async CreateEndPointAndEndPointService(req, cb) {
160
+ return this.request("CreateEndPointAndEndPointService", req, cb);
161
+ }
150
162
  /**
151
163
  * 修改解析记录状态
152
164
  */
@@ -159,12 +171,24 @@ class Client extends abstract_client_1.AbstractClient {
159
171
  async DeleteSpecifyPrivateZoneVpc(req, cb) {
160
172
  return this.request("DeleteSpecifyPrivateZoneVpc", req, cb);
161
173
  }
174
+ /**
175
+ * 创建自定义转发规则
176
+ */
177
+ async CreateForwardRule(req, cb) {
178
+ return this.request("CreateForwardRule", req, cb);
179
+ }
162
180
  /**
163
181
  * 查询私有域解析开通状态
164
182
  */
165
183
  async DescribePrivateZoneService(req, cb) {
166
184
  return this.request("DescribePrivateZoneService", req, cb);
167
185
  }
186
+ /**
187
+ * 查询转发规则列表
188
+ */
189
+ async DescribeForwardRuleList(req, cb) {
190
+ return this.request("DescribeForwardRuleList", req, cb);
191
+ }
168
192
  /**
169
193
  * 删除私有域解析记录
170
194
  */
@@ -29,13 +29,25 @@ export interface ModifyPrivateZoneVpcRequest {
29
29
  AccountVpcSet?: Array<AccountVpcInfo>;
30
30
  }
31
31
  /**
32
- * DescribeAuditLog返回参数结构体
32
+ * CreateEndPointAndEndPointService返回参数结构体
33
33
  */
34
- export interface DescribeAuditLogResponse {
34
+ export interface CreateEndPointAndEndPointServiceResponse {
35
35
  /**
36
- * 操作日志列表
36
+ * 终端节点id
37
37
  */
38
- Data?: Array<AuditLog>;
38
+ EndPointId?: string;
39
+ /**
40
+ * 终端节点名
41
+ */
42
+ EndPointName?: string;
43
+ /**
44
+ * 终端节点服务ID
45
+ */
46
+ EndPointServiceId?: string;
47
+ /**
48
+ * 终端节点的IP列表
49
+ */
50
+ EndPointVipSet?: Array<string>;
39
51
  /**
40
52
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
41
53
  */
@@ -59,25 +71,25 @@ export interface DescribePrivateDNSAccountListResponse {
59
71
  RequestId?: string;
60
72
  }
61
73
  /**
62
- * DescribePrivateZoneRecordList请求参数结构体
74
+ * CreateForwardRule请求参数结构体
63
75
  */
64
- export interface DescribePrivateZoneRecordListRequest {
76
+ export interface CreateForwardRuleRequest {
65
77
  /**
66
- * 私有域ID: zone-xxxxxx
78
+ * 转发规则名称
67
79
  */
68
- ZoneId: string;
80
+ RuleName: string;
69
81
  /**
70
- * 过滤参数(支持使用Value、RecordType过滤)
82
+ * 转发规则类型:云上到云下DOWN,云下到云上UP
71
83
  */
72
- Filters?: Array<Filter>;
84
+ RuleType: string;
73
85
  /**
74
- * 分页偏移量,从0开始
86
+ * 私有域ID,可在私有域列表页面查看
75
87
  */
76
- Offset?: number;
88
+ ZoneId: string;
77
89
  /**
78
- * 分页限制数目, 最大200,默认20
90
+ * 终端节点ID
79
91
  */
80
- Limit?: number;
92
+ EndPointId: string;
81
93
  }
82
94
  /**
83
95
  * 私有域解析账号
@@ -97,23 +109,34 @@ export interface PrivateDNSAccount {
97
109
  Nickname?: string;
98
110
  }
99
111
  /**
100
- * QueryAsyncBindVpcStatus返回参数结构体
112
+ * DeletePrivateDNSAccount请求参数结构体
101
113
  */
102
- export interface QueryAsyncBindVpcStatusResponse {
114
+ export interface DeletePrivateDNSAccountRequest {
103
115
  /**
104
- * processing 处理中,success 执行成功,
105
- failed 执行失败
116
+ * 私有域解析账号
106
117
  */
107
- Status?: string;
118
+ Account: PrivateDNSAccount;
119
+ }
120
+ /**
121
+ * DescribePrivateZoneRecordList请求参数结构体
122
+ */
123
+ export interface DescribePrivateZoneRecordListRequest {
108
124
  /**
109
- * 错误信息
110
- 注意:此字段可能返回 null,表示取不到有效值。
125
+ * 私有域ID: zone-xxxxxx
111
126
  */
112
- ErrorMsg?: string;
127
+ ZoneId: string;
113
128
  /**
114
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
129
+ * 过滤参数(支持使用Value、RecordType过滤)
115
130
  */
116
- RequestId?: string;
131
+ Filters?: Array<Filter>;
132
+ /**
133
+ * 分页偏移量,从0开始
134
+ */
135
+ Offset?: number;
136
+ /**
137
+ * 分页限制数目, 最大200,默认20
138
+ */
139
+ Limit?: number;
117
140
  }
118
141
  /**
119
142
  * DescribePrivateZoneRecordList返回参数结构体
@@ -167,13 +190,17 @@ export interface AccountVpcInfoOutput {
167
190
  Region: string;
168
191
  }
169
192
  /**
170
- * DescribePrivateZone请求参数结构体
193
+ * DescribeAuditLog返回参数结构体
171
194
  */
172
- export interface DescribePrivateZoneRequest {
195
+ export interface DescribeAuditLogResponse {
173
196
  /**
174
- * 域名,格式必须是标准的TLD
197
+ * 操作日志列表
175
198
  */
176
- ZoneId: string;
199
+ Data?: Array<AuditLog>;
200
+ /**
201
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
202
+ */
203
+ RequestId?: string;
177
204
  }
178
205
  /**
179
206
  * ModifyRecordsStatus返回参数结构体
@@ -399,6 +426,27 @@ export interface AddSpecifyPrivateZoneVpcRequest {
399
426
  */
400
427
  Sync?: boolean;
401
428
  }
429
+ /**
430
+ * ModifyPrivateZone请求参数结构体
431
+ */
432
+ export interface ModifyPrivateZoneRequest {
433
+ /**
434
+ * 私有域ID
435
+ */
436
+ ZoneId: string;
437
+ /**
438
+ * 备注
439
+ */
440
+ Remark?: string;
441
+ /**
442
+ * 是否开启子域名递归, ENABLED, DISABLED
443
+ */
444
+ DnsForwardStatus?: string;
445
+ /**
446
+ * 是否开启CNAME加速:ENABLED, DISABLED
447
+ */
448
+ CnameSpeedupStatus?: string;
449
+ }
402
450
  /**
403
451
  * DescribeRequestData请求参数结构体
404
452
  */
@@ -446,6 +494,10 @@ export interface DescribeAccountVpcListRequest {
446
494
  */
447
495
  Filters?: Array<Filter>;
448
496
  }
497
+ /**
498
+ * SubscribePrivateZoneService请求参数结构体
499
+ */
500
+ export declare type SubscribePrivateZoneServiceRequest = null;
449
501
  /**
450
502
  * DescribeRequestData返回参数结构体
451
503
  */
@@ -464,25 +516,35 @@ export interface DescribeRequestDataResponse {
464
516
  RequestId?: string;
465
517
  }
466
518
  /**
467
- * ModifyPrivateZone请求参数结构体
519
+ * DescribeEndPointList返回参数结构体
468
520
  */
469
- export interface ModifyPrivateZoneRequest {
521
+ export interface DescribeEndPointListResponse {
470
522
  /**
471
- * 私有域ID
523
+ * 终端节点总数
472
524
  */
473
- ZoneId: string;
525
+ TotalCount?: number;
474
526
  /**
475
- * 备注
527
+ * 终端节点列表
528
+ 注意:此字段可能返回 null,表示取不到有效值。
476
529
  */
477
- Remark?: string;
530
+ EndPointSet?: Array<EndPointInfo>;
478
531
  /**
479
- * 是否开启子域名递归, ENABLED, DISABLED
532
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
480
533
  */
481
- DnsForwardStatus?: string;
534
+ RequestId?: string;
535
+ }
536
+ /**
537
+ * Vpc信息
538
+ */
539
+ export interface VpcInfo {
482
540
  /**
483
- * 是否开启CNAME加速:ENABLED, DISABLED
541
+ * VpcId: vpc-xadsafsdasd
484
542
  */
485
- CnameSpeedupStatus?: string;
543
+ UniqVpcId: string;
544
+ /**
545
+ * Vpc所属地区: ap-guangzhou, ap-shanghai
546
+ */
547
+ Region: string;
486
548
  }
487
549
  /**
488
550
  * 标签
@@ -556,38 +618,21 @@ export interface CreatePrivateZoneRequest {
556
618
  CnameSpeedupStatus?: string;
557
619
  }
558
620
  /**
559
- * Vpc信息
621
+ * DescribeEndPointList请求参数结构体
560
622
  */
561
- export interface VpcInfo {
562
- /**
563
- * VpcId: vpc-xadsafsdasd
564
- */
565
- UniqVpcId: string;
623
+ export interface DescribeEndPointListRequest {
566
624
  /**
567
- * Vpc所属地区: ap-guangzhou, ap-shanghai
568
- */
569
- Region: string;
570
- }
571
- /**
572
- * 查询关联账号VPC列表出参
573
- */
574
- export interface AccountVpcInfoOut {
575
- /**
576
- * VpcId: vpc-xadsafsdasd
577
- */
578
- VpcId: string;
579
- /**
580
- * Vpc所属地区: ap-guangzhou, ap-shanghai
625
+ * 分页偏移量,从0开始
581
626
  */
582
- Region: string;
627
+ Offset?: number;
583
628
  /**
584
- * Vpc所属账号: 123456789
629
+ * 分页限制数目, 最大100,默认20
585
630
  */
586
- Uin: string;
631
+ Limit?: number;
587
632
  /**
588
- * vpc资源名称:testname
633
+ * 过滤参数,支持EndPointName,EndPointId,EndPointServiceId,EndPointVip
589
634
  */
590
- VpcName: string;
635
+ Filters?: Array<Filter>;
591
636
  }
592
637
  /**
593
638
  * 私有域解析账号Vpc信息
@@ -622,6 +667,61 @@ export interface ModifyPrivateZoneResponse {
622
667
  */
623
668
  RequestId?: string;
624
669
  }
670
+ /**
671
+ * 转发规则详情
672
+ */
673
+ export interface ForwardRule {
674
+ /**
675
+ * 私有域名
676
+ */
677
+ Domain?: string;
678
+ /**
679
+ * 转发规则名称
680
+ */
681
+ RuleName?: string;
682
+ /**
683
+ * 规则id
684
+ */
685
+ RuleId?: string;
686
+ /**
687
+ * 转发规则类型:云上到云下DOWN、云下到云上DOWN
688
+ */
689
+ RuleType?: string;
690
+ /**
691
+ * 创建时间
692
+ */
693
+ CreatedAt?: string;
694
+ /**
695
+ * 更新时间
696
+ */
697
+ UpdatedAt?: string;
698
+ /**
699
+ * 终端节点名称
700
+ */
701
+ EndPointName?: string;
702
+ /**
703
+ * 终端节点ID
704
+ */
705
+ EndPointId?: string;
706
+ /**
707
+ * 转发地址
708
+ */
709
+ ForwardAddress?: Array<string>;
710
+ /**
711
+ * 私有域绑定的vpc列表
712
+ 注意:此字段可能返回 null,表示取不到有效值。
713
+ */
714
+ VpcSet?: Array<VpcInfo>;
715
+ /**
716
+ * 绑定的私有域ID
717
+ */
718
+ ZoneId?: string;
719
+ /**
720
+ * 标签
721
+ 注意:此字段可能返回 null,表示取不到有效值。
722
+ */
723
+ Tags?: Array<TagInfo>;
724
+ }
625
725
  /**
626
726
  * DeleteSpecifyPrivateZoneVpc请求参数结构体
627
727
  */
@@ -644,9 +744,22 @@ export interface DeleteSpecifyPrivateZoneVpcRequest {
644
744
  Sync?: boolean;
645
745
  }
646
746
  /**
647
- * SubscribePrivateZoneService请求参数结构体
747
+ * DescribePrivateDNSAccountList请求参数结构体
648
748
  */
649
- export declare type SubscribePrivateZoneServiceRequest = null;
749
+ export interface DescribePrivateDNSAccountListRequest {
750
+ /**
751
+ * 分页偏移量,从0开始
752
+ */
753
+ Offset?: number;
754
+ /**
755
+ * 分页限制数目, 最大100,默认20
756
+ */
757
+ Limit?: number;
758
+ /**
759
+ * 过滤参数
760
+ */
761
+ Filters?: Array<Filter>;
762
+ }
650
763
  /**
651
764
  * DescribePrivateZone返回参数结构体
652
765
  */
@@ -715,6 +828,23 @@ export interface CreatePrivateZoneRecordResponse {
715
828
  */
716
829
  RequestId?: string;
717
830
  }
831
+ /**
832
+ * DescribeForwardRuleList请求参数结构体
833
+ */
834
+ export interface DescribeForwardRuleListRequest {
835
+ /**
836
+ * 分页偏移量,从0开始
837
+ */
838
+ Offset?: number;
839
+ /**
840
+ * 分页限制数目, 最大100,默认20
841
+ */
842
+ Limit?: number;
843
+ /**
844
+ * 过滤参数
845
+ */
846
+ Filters?: Array<Filter>;
847
+ }
718
848
  /**
719
849
  * DescribePrivateZoneService返回参数结构体
720
850
  */
@@ -728,6 +858,54 @@ export interface DescribePrivateZoneServiceResponse {
728
858
  */
729
859
  RequestId?: string;
730
860
  }
861
+ /**
862
+ * DescribeForwardRuleList返回参数结构体
863
+ */
864
+ export interface DescribeForwardRuleListResponse {
865
+ /**
866
+ * 私有域数量
867
+ */
868
+ TotalCount?: number;
869
+ /**
870
+ * 私有域列表
871
+ */
872
+ ForwardRuleSet?: Array<ForwardRule>;
873
+ /**
874
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
875
+ */
876
+ RequestId?: string;
877
+ }
878
+ /**
879
+ * 终端节点信息
880
+ */
881
+ export interface EndPointInfo {
882
+ /**
883
+ * 终端节点ID
884
+ */
885
+ EndPointId?: string;
886
+ /**
887
+ * 终端节点名称
888
+ */
889
+ EndPointName?: string;
890
+ /**
891
+ * 终端节点服务ID
892
+ */
893
+ EndPointServiceId?: string;
894
+ /**
895
+ * 终端节点VIP列表
896
+ */
897
+ EndPointVipSet?: Array<string>;
898
+ /**
899
+ * ap-guangzhou
900
+ 注意:此字段可能返回 null,表示取不到有效值。
901
+ */
902
+ RegionCode?: string;
903
+ /**
904
+ * 标签键值对集合
905
+ 注意:此字段可能返回 null,表示取不到有效值。
906
+ */
907
+ Tags?: Array<TagInfo>;
908
+ }
731
909
  /**
732
910
  * CreatePrivateDNSAccount返回参数结构体
733
911
  */
@@ -839,13 +1017,25 @@ export interface SubscribePrivateZoneServiceResponse {
839
1017
  RequestId?: string;
840
1018
  }
841
1019
  /**
842
- * DeletePrivateDNSAccount请求参数结构体
1020
+ * 查询关联账号VPC列表出参
843
1021
  */
844
- export interface DeletePrivateDNSAccountRequest {
1022
+ export interface AccountVpcInfoOut {
845
1023
  /**
846
- * 私有域解析账号
1024
+ * VpcId: vpc-xadsafsdasd
847
1025
  */
848
- Account: PrivateDNSAccount;
1026
+ VpcId: string;
1027
+ /**
1028
+ * Vpc所属地区: ap-guangzhou, ap-shanghai
1029
+ */
1030
+ Region: string;
1031
+ /**
1032
+ * Vpc所属账号: 123456789
1033
+ */
1034
+ Uin: string;
1035
+ /**
1036
+ * vpc资源名称:testname
1037
+ */
1038
+ VpcName: string;
849
1039
  }
850
1040
  /**
851
1041
  * DeletePrivateZoneRecord请求参数结构体
@@ -877,6 +1067,25 @@ export interface Filter {
877
1067
  */
878
1068
  Values: Array<string>;
879
1069
  }
1070
+ /**
1071
+ * QueryAsyncBindVpcStatus返回参数结构体
1072
+ */
1073
+ export interface QueryAsyncBindVpcStatusResponse {
1074
+ /**
1075
+ * processing 处理中,success 执行成功,
1076
+ failed 执行失败
1077
+ */
1078
+ Status?: string;
1079
+ /**
1080
+ * 错误信息
1081
+ 注意:此字段可能返回 null,表示取不到有效值。
1082
+ */
1083
+ ErrorMsg?: string;
1084
+ /**
1085
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1086
+ */
1087
+ RequestId?: string;
1088
+ }
880
1089
  /**
881
1090
  * CreateEndPoint请求参数结构体
882
1091
  */
@@ -965,21 +1174,13 @@ export interface MetricData {
965
1174
  MetricCount: number;
966
1175
  }
967
1176
  /**
968
- * DescribePrivateDNSAccountList请求参数结构体
1177
+ * DeletePrivateZoneRecord返回参数结构体
969
1178
  */
970
- export interface DescribePrivateDNSAccountListRequest {
971
- /**
972
- * 分页偏移量,从0开始
973
- */
974
- Offset?: number;
975
- /**
976
- * 分页限制数目, 最大100,默认20
977
- */
978
- Limit?: number;
1179
+ export interface DeletePrivateZoneRecordResponse {
979
1180
  /**
980
- * 过滤参数
1181
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
981
1182
  */
982
- Filters?: Array<Filter>;
1183
+ RequestId?: string;
983
1184
  }
984
1185
  /**
985
1186
  * 私有域信息
@@ -1104,10 +1305,56 @@ export interface CreatePrivateZoneRecordRequest {
1104
1305
  */
1105
1306
  TTL?: number;
1106
1307
  }
1308
+ /**
1309
+ * DescribePrivateZone请求参数结构体
1310
+ */
1311
+ export interface DescribePrivateZoneRequest {
1312
+ /**
1313
+ * 域名,格式必须是标准的TLD
1314
+ */
1315
+ ZoneId: string;
1316
+ }
1107
1317
  /**
1108
1318
  * DescribeQuotaUsage请求参数结构体
1109
1319
  */
1110
1320
  export declare type DescribeQuotaUsageRequest = null;
1321
+ /**
1322
+ * CreateEndPointAndEndPointService请求参数结构体
1323
+ */
1324
+ export interface CreateEndPointAndEndPointServiceRequest {
1325
+ /**
1326
+ * VPC实例ID
1327
+ */
1328
+ VpcId: string;
1329
+ /**
1330
+ * 是否自动接受
1331
+ */
1332
+ AutoAcceptFlag: boolean;
1333
+ /**
1334
+ * 后端服务ID
1335
+ */
1336
+ ServiceInstanceId: string;
1337
+ /**
1338
+ * 终端节点名称
1339
+ */
1340
+ EndPointName: string;
1341
+ /**
1342
+ * 终端节点地域,必须要和终端节点服务所属地域一致
1343
+ */
1344
+ EndPointRegion: string;
1345
+ /**
1346
+ * 终端节点服务名称
1347
+ */
1348
+ EndPointServiceName?: string;
1349
+ /**
1350
+ * 挂载的PAAS服务类型,CLB,CDB,CRS
1351
+ */
1352
+ ServiceType?: string;
1353
+ /**
1354
+ * 终端节点ip数量
1355
+ */
1356
+ IpNum?: number;
1357
+ }
1111
1358
  /**
1112
1359
  * ModifyPrivateZoneRecord请求参数结构体
1113
1360
  */
@@ -1189,9 +1436,29 @@ export interface FlowUsage {
1189
1436
  AvailableQuantity: number;
1190
1437
  }
1191
1438
  /**
1192
- * DeletePrivateZoneRecord返回参数结构体
1439
+ * CreateForwardRule返回参数结构体
1193
1440
  */
1194
- export interface DeletePrivateZoneRecordResponse {
1441
+ export interface CreateForwardRuleResponse {
1442
+ /**
1443
+ * 转发规则ID
1444
+ */
1445
+ RuleId: string;
1446
+ /**
1447
+ * 转发规则名称
1448
+ */
1449
+ RuleName: string;
1450
+ /**
1451
+ * 转发规则类型
1452
+ */
1453
+ RuleType: string;
1454
+ /**
1455
+ * 私有域ID
1456
+ */
1457
+ ZoneId: string;
1458
+ /**
1459
+ * 终端节点ID
1460
+ */
1461
+ EndPointId: string;
1195
1462
  /**
1196
1463
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1197
1464
  */