tencentcloud-sdk-nodejs 4.0.683 → 4.0.685

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 (65) hide show
  1. package/CHANGELOG.md +266 -0
  2. package/SERVICE_CHANGELOG.md +247 -100
  3. package/package.json +1 -1
  4. package/products.md +12 -12
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/cdwch/v20200915/cdwch_client.ts +27 -15
  7. package/src/services/cdwch/v20200915/cdwch_models.ts +70 -46
  8. package/src/services/cfw/v20190904/cfw_client.ts +849 -496
  9. package/src/services/cfw/v20190904/cfw_models.ts +2327 -381
  10. package/src/services/eb/v20210416/eb_client.ts +110 -59
  11. package/src/services/eb/v20210416/eb_models.ts +917 -780
  12. package/src/services/ess/v20201111/ess_client.ts +45 -20
  13. package/src/services/ess/v20201111/ess_models.ts +301 -177
  14. package/src/services/facefusion/v20181201/facefusion_client.ts +4 -2
  15. package/src/services/iai/v20180301/iai_client.ts +0 -2
  16. package/src/services/iai/v20180301/iai_models.ts +26 -30
  17. package/src/services/iai/v20200303/iai_models.ts +16 -20
  18. package/src/services/sqlserver/v20180328/sqlserver_client.ts +25 -0
  19. package/src/services/sqlserver/v20180328/sqlserver_models.ts +107 -0
  20. package/src/services/tcr/v20190924/tcr_client.ts +1 -1
  21. package/src/services/tcr/v20190924/tcr_models.ts +9 -3
  22. package/src/services/trocket/v20230308/trocket_client.ts +68 -17
  23. package/src/services/trocket/v20230308/trocket_models.ts +371 -35
  24. package/src/services/trtc/v20190722/trtc_models.ts +1 -1
  25. package/src/services/waf/v20180125/waf_client.ts +25 -38
  26. package/src/services/waf/v20180125/waf_models.ts +45 -73
  27. package/tencentcloud/common/sdk_version.d.ts +1 -1
  28. package/tencentcloud/common/sdk_version.js +1 -1
  29. package/tencentcloud/services/cdwch/v20200915/cdwch_client.d.ts +9 -5
  30. package/tencentcloud/services/cdwch/v20200915/cdwch_client.js +12 -6
  31. package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +68 -46
  32. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +258 -146
  33. package/tencentcloud/services/cfw/v20190904/cfw_client.js +382 -214
  34. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +2197 -324
  35. package/tencentcloud/services/eb/v20210416/eb_client.d.ts +17 -1
  36. package/tencentcloud/services/eb/v20210416/eb_client.js +24 -0
  37. package/tencentcloud/services/eb/v20210416/eb_models.d.ts +896 -770
  38. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +41 -16
  39. package/tencentcloud/services/ess/v20201111/ess_client.js +41 -16
  40. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +301 -177
  41. package/tencentcloud/services/facefusion/v20181201/facefusion_client.d.ts +3 -1
  42. package/tencentcloud/services/facefusion/v20181201/facefusion_client.js +3 -1
  43. package/tencentcloud/services/iai/v20180301/iai_client.d.ts +0 -2
  44. package/tencentcloud/services/iai/v20180301/iai_client.js +0 -2
  45. package/tencentcloud/services/iai/v20180301/iai_models.d.ts +26 -30
  46. package/tencentcloud/services/iai/v20200303/iai_models.d.ts +16 -20
  47. package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.d.ts +9 -1
  48. package/tencentcloud/services/sqlserver/v20180328/sqlserver_client.js +12 -0
  49. package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +102 -0
  50. package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +1 -1
  51. package/tencentcloud/services/tcr/v20190924/tcr_client.js +1 -1
  52. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +9 -3
  53. package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +24 -8
  54. package/tencentcloud/services/trocket/v20230308/trocket_client.js +33 -9
  55. package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +359 -34
  56. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
  57. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +9 -13
  58. package/tencentcloud/services/waf/v20180125/waf_client.js +12 -18
  59. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +43 -68
  60. package/test/cdwch.v20200915.test.js +14 -4
  61. package/test/cfw.v20190904.test.js +418 -138
  62. package/test/eb.v20210416.test.js +40 -0
  63. package/test/sqlserver.v20180328.test.js +20 -0
  64. package/test/trocket.v20230308.test.js +42 -2
  65. package/test/waf.v20180125.test.js +14 -24
@@ -52,6 +52,72 @@ export interface DescribeLogsRequest {
52
52
  */
53
53
  Filters?: Array<CommonFilter>;
54
54
  }
55
+ /**
56
+ * ModifyFwGroupSwitch请求参数结构体
57
+ */
58
+ export interface ModifyFwGroupSwitchRequest {
59
+ /**
60
+ * 打开或关闭开关
61
+ 0:关闭开关
62
+ 1:打开开关
63
+ */
64
+ Enable: number;
65
+ /**
66
+ * 是否操作全部开关 0 不操作全部开关,1 操作全部开关
67
+ */
68
+ AllSwitch: number;
69
+ /**
70
+ * 开关列表
71
+ */
72
+ SwitchList?: Array<FwGroupSwitch>;
73
+ }
74
+ /**
75
+ * ModifySecurityGroupRule请求参数结构体
76
+ */
77
+ export interface ModifySecurityGroupRuleRequest {
78
+ /**
79
+ * 方向,0:出站,1:入站,默认1
80
+ */
81
+ Direction: number;
82
+ /**
83
+ * 编辑后是否启用规则,0:不启用,1:启用,默认1
84
+ */
85
+ Enable: number;
86
+ /**
87
+ * 编辑的企业安全组规则数据
88
+ */
89
+ Data: Array<SecurityGroupListData>;
90
+ /**
91
+ * 编辑的企业安全组规则的原始执行顺序
92
+ */
93
+ SgRuleOriginSequence: number;
94
+ }
95
+ /**
96
+ * ModifyAssetSync返回参数结构体
97
+ */
98
+ export interface ModifyAssetSyncResponse {
99
+ /**
100
+ * 返回状态
101
+ 0 请求成功
102
+ 2 请求失败
103
+ 3 请求失败-频率限制
104
+ */
105
+ Status?: number;
106
+ /**
107
+ * success 成功
108
+ 其他失败
109
+ */
110
+ ReturnMsg?: string;
111
+ /**
112
+ * 0 成功
113
+ 非0 失败
114
+ */
115
+ ReturnCode?: number;
116
+ /**
117
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
118
+ */
119
+ RequestId?: string;
120
+ }
55
121
  /**
56
122
  * ModifyNatFwVpcDnsSwitch返回参数结构体
57
123
  */
@@ -71,17 +137,31 @@ export interface ModifyNatFwVpcDnsSwitchResponse {
71
137
  */
72
138
  export declare type DescribeNatFwInstanceWithRegionRequest = null;
73
139
  /**
74
- * ModifyNatAcRule返回参数结构体
140
+ * ModifyAddressTemplate请求参数结构体
75
141
  */
76
- export interface ModifyNatAcRuleResponse {
142
+ export interface ModifyAddressTemplateRequest {
77
143
  /**
78
- * 编辑成功后返回新策略ID列表
144
+ * 地址模板唯一Id
79
145
  */
80
- RuleUuid?: Array<number | bigint>;
146
+ Uuid: string;
81
147
  /**
82
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
148
+ * 模板名称
83
149
  */
84
- RequestId?: string;
150
+ Name: string;
151
+ /**
152
+ * 模板描述
153
+ */
154
+ Detail: string;
155
+ /**
156
+ * Type为1,ip模板eg:1.1.1.1,2.2.2.2;
157
+ Type为5,域名模板eg:www.qq.com,www.tencent.com
158
+ */
159
+ IpString: string;
160
+ /**
161
+ * 1 ip模板
162
+ 5 域名模板
163
+ */
164
+ Type: number;
85
165
  }
86
166
  /**
87
167
  * DescribeRuleOverview返回参数结构体
@@ -146,6 +226,44 @@ export interface CfwNatDnatRule {
146
226
  */
147
227
  Description: string;
148
228
  }
229
+ /**
230
+ * 新手引导扫描信息
231
+ */
232
+ export interface ScanInfo {
233
+ /**
234
+ * 扫描结果信息
235
+ */
236
+ ScanResultInfo: ScanResultInfo;
237
+ /**
238
+ * 扫描状态 0扫描中 1完成 2未勾选自动扫描
239
+ */
240
+ ScanStatus: number;
241
+ /**
242
+ * 进度
243
+ */
244
+ ScanPercent: number;
245
+ /**
246
+ * 预计完成时间
247
+ */
248
+ ScanTime: string;
249
+ }
250
+ /**
251
+ * ModifyEnterpriseSecurityGroupRule返回参数结构体
252
+ */
253
+ export interface ModifyEnterpriseSecurityGroupRuleResponse {
254
+ /**
255
+ * 状态值,0:编辑成功,非0:编辑失败
256
+ */
257
+ Status: number;
258
+ /**
259
+ * 编辑后新生成规则的Id
260
+ */
261
+ NewRuleUuid: number;
262
+ /**
263
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
264
+ */
265
+ RequestId?: string;
266
+ }
149
267
  /**
150
268
  * 防火墙网段信息
151
269
  */
@@ -193,6 +311,15 @@ export interface StaticInfo {
193
311
  */
194
312
  InsName: string;
195
313
  }
314
+ /**
315
+ * SyncFwOperate返回参数结构体
316
+ */
317
+ export interface SyncFwOperateResponse {
318
+ /**
319
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
320
+ */
321
+ RequestId?: string;
322
+ }
196
323
  /**
197
324
  * DescribeNatAcRule返回参数结构体
198
325
  */
@@ -233,6 +360,94 @@ export interface ModifyPublicIPSwitchStatusResponse {
233
360
  */
234
361
  RequestId?: string;
235
362
  }
363
+ /**
364
+ * AddAclRule请求参数结构体
365
+ */
366
+ export interface AddAclRuleRequest {
367
+ /**
368
+ * 需要添加的访问控制规则列表
369
+ */
370
+ Rules: Array<CreateRuleItem>;
371
+ /**
372
+ * 添加规则的来源,一般不需要使用,值insert_rule 表示插入指定位置的规则;值batch_import 表示批量导入规则;为空时表示添加规则
373
+ */
374
+ From?: string;
375
+ }
376
+ /**
377
+ * DescribeVpcFwGroupSwitch请求参数结构体
378
+ */
379
+ export interface DescribeVpcFwGroupSwitchRequest {
380
+ /**
381
+ * 每页条数
382
+ */
383
+ Limit: number;
384
+ /**
385
+ * 偏移值
386
+ */
387
+ Offset: number;
388
+ /**
389
+ * 过滤条件组合
390
+ */
391
+ Filters?: Array<CommonFilter>;
392
+ /**
393
+ * 检索的起始时间,可不传
394
+ */
395
+ StartTime?: string;
396
+ /**
397
+ * 检索的截止时间,可不传
398
+ */
399
+ EndTime?: string;
400
+ /**
401
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
402
+ */
403
+ Order?: string;
404
+ /**
405
+ * 排序所用到的字段
406
+ */
407
+ By?: string;
408
+ }
409
+ /**
410
+ * 防火墙部署输入参数列表
411
+ */
412
+ export interface FwDeploy {
413
+ /**
414
+ * 防火墙部署地域
415
+ */
416
+ DeployRegion: string;
417
+ /**
418
+ * 带宽,单位:Mbps
419
+ */
420
+ Width: number;
421
+ /**
422
+ * 异地灾备 1:使用异地灾备;0:不使用异地灾备;为空则默认不使用异地灾备
423
+ */
424
+ CrossAZone?: number;
425
+ /**
426
+ * 主可用区,为空则选择默认可用区
427
+ */
428
+ Zone?: string;
429
+ /**
430
+ * 备可用区,为空则选择默认可用区
431
+ */
432
+ ZoneBak?: string;
433
+ /**
434
+ * 若为cdc防火墙时填充该id
435
+ */
436
+ CdcId?: string;
437
+ }
438
+ /**
439
+ * SyncFwOperate请求参数结构体
440
+ */
441
+ export interface SyncFwOperateRequest {
442
+ /**
443
+ * 同步操作类型:Route,同步防火墙路由
444
+ */
445
+ SyncType: string;
446
+ /**
447
+ * 防火墙类型;nat,nat防火墙;ew,vpc间防火墙
448
+ */
449
+ FwType?: string;
450
+ }
236
451
  /**
237
452
  * ModifyNatAcRule请求参数结构体
238
453
  */
@@ -242,6 +457,15 @@ export interface ModifyNatAcRuleRequest {
242
457
  */
243
458
  Rules: Array<CreateNatRuleItem>;
244
459
  }
460
+ /**
461
+ * ModifyAclRule请求参数结构体
462
+ */
463
+ export interface ModifyAclRuleRequest {
464
+ /**
465
+ * 需要编辑的规则数组
466
+ */
467
+ Rules: Array<CreateRuleItem>;
468
+ }
245
469
  /**
246
470
  * ModifyAcRule返回参数结构体
247
471
  */
@@ -260,6 +484,29 @@ export interface ModifyAcRuleResponse {
260
484
  */
261
485
  RequestId?: string;
262
486
  }
487
+ /**
488
+ * ModifyAssetScan返回参数结构体
489
+ */
490
+ export interface ModifyAssetScanResponse {
491
+ /**
492
+ * 接口返回信息
493
+ 注意:此字段可能返回 null,表示取不到有效值。
494
+ */
495
+ ReturnMsg: string;
496
+ /**
497
+ * 接口返回错误码,0请求成功 非0失败
498
+ 注意:此字段可能返回 null,表示取不到有效值。
499
+ */
500
+ ReturnCode: number;
501
+ /**
502
+ * 状态值 0:成功,1 执行扫描中,其他:失败
503
+ */
504
+ Status: number;
505
+ /**
506
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
507
+ */
508
+ RequestId?: string;
509
+ }
263
510
  /**
264
511
  * ModifyNatSequenceRules请求参数结构体
265
512
  */
@@ -274,14 +521,22 @@ export interface ModifyNatSequenceRulesRequest {
274
521
  Direction: number;
275
522
  }
276
523
  /**
277
- * DescribeTableStatus返回参数结构体
524
+ * DescribeAclRule返回参数结构体
278
525
  */
279
- export interface DescribeTableStatusResponse {
526
+ export interface DescribeAclRuleResponse {
280
527
  /**
281
- * 0:正常,其它:不正常
528
+ * 总条数
529
+ */
530
+ Total?: number;
531
+ /**
532
+ * nat访问控制列表数据
282
533
  注意:此字段可能返回 null,表示取不到有效值。
283
534
  */
284
- Status: number;
535
+ Data?: Array<DescAcItem>;
536
+ /**
537
+ * 未过滤的总条数
538
+ */
539
+ AllTotal?: number;
285
540
  /**
286
541
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
287
542
  */
@@ -391,17 +646,25 @@ export interface AddAcRuleRequest {
391
646
  Enable?: string;
392
647
  }
393
648
  /**
394
- * ip防护状态
649
+ * DescribeTLogInfo请求参数结构体
395
650
  */
396
- export interface IPDefendStatus {
651
+ export interface DescribeTLogInfoRequest {
397
652
  /**
398
- * ip地址
653
+ * 开始时间
399
654
  */
400
- IP: string;
655
+ StartTime: string;
401
656
  /**
402
- * 防护状态 1:防护打开; -1:地址错误; 其他:未防护
657
+ * 结束时间
403
658
  */
404
- Status: number;
659
+ EndTime: string;
660
+ /**
661
+ * 类型 1 告警 2阻断
662
+ */
663
+ QueryType: string;
664
+ /**
665
+ * 查询条件
666
+ */
667
+ SearchValue?: string;
405
668
  }
406
669
  /**
407
670
  * 入侵防御放通封禁规则
@@ -511,42 +774,83 @@ export interface DeleteNatFwInstanceResponse {
511
774
  RequestId?: string;
512
775
  }
513
776
  /**
514
- * DeleteAllAccessControlRule请求参数结构体
777
+ * DescribeNatSwitchList请求参数结构体
515
778
  */
516
- export interface DeleteAllAccessControlRuleRequest {
779
+ export interface DescribeNatSwitchListRequest {
517
780
  /**
518
- * 方向,0:出站,1:入站 默认值是 0
781
+ * 偏移量,分页用
519
782
  */
520
- Direction?: number;
783
+ Offset: number;
521
784
  /**
522
- * VPC间防火墙开关ID 全部删除 EdgeId和Area只填写一个,不填写则不删除vpc间防火墙开关 ,默认值为‘’
785
+ * 条数,分页用
523
786
  */
524
- EdgeId?: string;
787
+ Limit: number;
525
788
  /**
526
- * nat地域 全部删除 EdgeId和Area只填写一个,不填写则不删除nat防火墙开关 默认值为‘’
789
+ * 搜索值
790
+ */
791
+ SearchValue?: string;
792
+ /**
793
+ * 开关,1打开,0关闭
794
+ */
795
+ Status?: number;
796
+ /**
797
+ * 筛选NAT防火墙子网开关所属VPC
798
+ */
799
+ VpcId?: string;
800
+ /**
801
+ * 筛选NAT防火墙子网开关所属NAT网关
802
+ */
803
+ NatId?: string;
804
+ /**
805
+ * 筛选NAT防火墙子网开关所属NAT防火墙实例
806
+ */
807
+ NatInsId?: string;
808
+ /**
809
+ * 筛选NAT防火墙子网开关所属地域
527
810
  */
528
811
  Area?: string;
529
812
  }
530
813
  /**
531
- * ModifySecurityGroupRule请求参数结构体
814
+ * DeleteAllAccessControlRule请求参数结构体
532
815
  */
533
- export interface ModifySecurityGroupRuleRequest {
816
+ export interface DeleteAllAccessControlRuleRequest {
534
817
  /**
535
- * 方向,0:出站,1:入站,默认1
818
+ * 方向,0:出站,1:入站 默认值是 0
536
819
  */
537
- Direction: number;
820
+ Direction?: number;
538
821
  /**
539
- * 编辑后是否启用规则,0:不启用,1:启用,默认1
822
+ * VPC间防火墙开关ID 全部删除 EdgeId和Area只填写一个,不填写则不删除vpc间防火墙开关 ,默认值为‘’
540
823
  */
541
- Enable: number;
824
+ EdgeId?: string;
542
825
  /**
543
- * 编辑的企业安全组规则数据
826
+ * nat地域 全部删除 EdgeId和Area只填写一个,不填写则不删除nat防火墙开关 默认值为‘’
544
827
  */
545
- Data: Array<SecurityGroupListData>;
828
+ Area?: string;
829
+ }
830
+ /**
831
+ * ModifyBlockIgnoreList请求参数结构体
832
+ */
833
+ export interface ModifyBlockIgnoreListRequest {
546
834
  /**
547
- * 编辑的企业安全组规则的原始执行顺序
835
+ * 1封禁列表 2 放通列表
548
836
  */
549
- SgRuleOriginSequence: number;
837
+ RuleType: number;
838
+ /**
839
+ * IP、Domain二选一(注:封禁列表,只能填写IP),不能同时为空
840
+ */
841
+ IOC: Array<IocListData>;
842
+ /**
843
+ * 可选值:delete(删除)、edit(编辑)、add(添加) 其他值无效
844
+ */
845
+ IocAction: string;
846
+ /**
847
+ * 时间格式:yyyy-MM-dd HH:mm:ss,IocAction 为edit或add时必填
848
+ */
849
+ StartTime?: string;
850
+ /**
851
+ * 时间格式:yyyy-MM-dd HH:mm:ss,IocAction 为edit或add时必填,必须大于当前时间且大于StartTime
852
+ */
853
+ EndTime?: string;
550
854
  }
551
855
  /**
552
856
  * ModifyAllVPCSwitchStatus返回参数结构体
@@ -700,6 +1004,19 @@ export interface DescribeUnHandleEventTabListRequest {
700
1004
  */
701
1005
  AssetID?: string;
702
1006
  }
1007
+ /**
1008
+ * ModifyNatInstance请求参数结构体
1009
+ */
1010
+ export interface ModifyNatInstanceRequest {
1011
+ /**
1012
+ * NAT防火墙实例名称
1013
+ */
1014
+ InstanceName: string;
1015
+ /**
1016
+ * NAT防火墙实例ID
1017
+ */
1018
+ NatInstanceId?: string;
1019
+ }
703
1020
  /**
704
1021
  * DescribeAssociatedInstanceList返回参数结构体
705
1022
  */
@@ -843,6 +1160,56 @@ export interface NatFwInstance {
843
1160
  */
844
1161
  NatIp: string;
845
1162
  }
1163
+ /**
1164
+ * ModifyNatAcRule返回参数结构体
1165
+ */
1166
+ export interface ModifyNatAcRuleResponse {
1167
+ /**
1168
+ * 编辑成功后返回新策略ID列表
1169
+ */
1170
+ RuleUuid?: Array<number | bigint>;
1171
+ /**
1172
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1173
+ */
1174
+ RequestId?: string;
1175
+ }
1176
+ /**
1177
+ * DescribeAclRule请求参数结构体
1178
+ */
1179
+ export interface DescribeAclRuleRequest {
1180
+ /**
1181
+ * 每页条数
1182
+ */
1183
+ Limit: number;
1184
+ /**
1185
+ * 偏移值
1186
+ */
1187
+ Offset: number;
1188
+ /**
1189
+ * 需要查询的索引,特定场景使用,可不填
1190
+ */
1191
+ Index?: string;
1192
+ /**
1193
+ * 过滤条件组合
1194
+ */
1195
+ Filters?: Array<CommonFilter>;
1196
+ /**
1197
+ * 检索的起始时间,可不传
1198
+ */
1199
+ StartTime?: string;
1200
+ /**
1201
+ * 检索的截止时间,可不传
1202
+ */
1203
+ EndTime?: string;
1204
+ /**
1205
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
1206
+ */
1207
+ Order?: string;
1208
+ /**
1209
+ * 排序所用到的字段
1210
+ */
1211
+ By?: string;
1212
+ }
846
1213
  /**
847
1214
  * CreateSecurityGroupRules返回参数结构体
848
1215
  */
@@ -931,29 +1298,17 @@ export interface ModifyAssetScanRequest {
931
1298
  ScanType?: number;
932
1299
  }
933
1300
  /**
934
- * ModifyBlockIgnoreList请求参数结构体
1301
+ * 设置nat防火墙的vpc dns 接入开关
935
1302
  */
936
- export interface ModifyBlockIgnoreListRequest {
937
- /**
938
- * 1封禁列表 2 放通列表
939
- */
940
- RuleType: number;
941
- /**
942
- * IP、Domain二选一(注:封禁列表,只能填写IP),不能同时为空
943
- */
944
- IOC: Array<IocListData>;
945
- /**
946
- * 可选值:delete(删除)、edit(编辑)、add(添加) 其他值无效
947
- */
948
- IocAction: string;
1303
+ export interface DnsVpcSwitch {
949
1304
  /**
950
- * 时间格式:yyyy-MM-dd HH:mm:ss,IocAction 为edit或add时必填
1305
+ * vpc id
951
1306
  */
952
- StartTime?: string;
1307
+ VpcId: string;
953
1308
  /**
954
- * 时间格式:yyyy-MM-dd HH:mm:ss,IocAction 为edit或add时必填,必须大于当前时间且大于StartTime
1309
+ * 0:设置为关闭 1:设置为打开
955
1310
  */
956
- EndTime?: string;
1311
+ Status: number;
957
1312
  }
958
1313
  /**
959
1314
  * AddEnterpriseSecurityGroupRules请求参数结构体
@@ -976,6 +1331,25 @@ export interface AddEnterpriseSecurityGroupRulesRequest {
976
1331
  */
977
1332
  IsDelay?: number;
978
1333
  }
1334
+ /**
1335
+ * 防火墙引流网关信息
1336
+ */
1337
+ export interface FwGateway {
1338
+ /**
1339
+ * 防火墙网关id
1340
+ */
1341
+ GatewayId: string;
1342
+ /**
1343
+ * 网关所属vpc id
1344
+ 注意:此字段可能返回 null,表示取不到有效值。
1345
+ */
1346
+ VpcId: string;
1347
+ /**
1348
+ * 网关ip地址
1349
+ 注意:此字段可能返回 null,表示取不到有效值。
1350
+ */
1351
+ IpAddress: string;
1352
+ }
979
1353
  /**
980
1354
  * ModifySecurityGroupSequenceRules返回参数结构体
981
1355
  */
@@ -1101,6 +1475,19 @@ export interface ModifySequenceRulesRequest {
1101
1475
  */
1102
1476
  Direction?: number;
1103
1477
  }
1478
+ /**
1479
+ * ModifyAclRule返回参数结构体
1480
+ */
1481
+ export interface ModifyAclRuleResponse {
1482
+ /**
1483
+ * 编辑成功后返回新策略ID列表
1484
+ */
1485
+ RuleUuid?: Array<number | bigint>;
1486
+ /**
1487
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1488
+ */
1489
+ RequestId?: string;
1490
+ }
1104
1491
  /**
1105
1492
  * 执行顺序对象
1106
1493
  */
@@ -1170,53 +1557,145 @@ export interface DescribeEnterpriseSecurityGroupRuleResponse {
1170
1557
  RequestId?: string;
1171
1558
  }
1172
1559
  /**
1173
- * nat防火墙 vpc dns 开关信息
1560
+ * VPC防火墙(组)及防火墙实例详情信息
1174
1561
  */
1175
- export interface VpcDnsInfo {
1562
+ export interface VpcFwGroupInfo {
1176
1563
  /**
1177
- * vpc id
1564
+ * 防火墙(组)ID
1565
+ 注意:此字段可能返回 null,表示取不到有效值。
1178
1566
  */
1179
- VpcId: string;
1567
+ FwGroupId?: string;
1180
1568
  /**
1181
- * vpc 名称
1569
+ * 防火墙(组)名称
1570
+ 注意:此字段可能返回 null,表示取不到有效值。
1182
1571
  */
1183
- VpcName: string;
1572
+ FwGroupName?: string;
1184
1573
  /**
1185
- * nat 防火墙模式 0:新增模式, 1: 接入模式
1574
+ * 防火墙组涉及到的开关个数
1575
+ 注意:此字段可能返回 null,表示取不到有效值。
1186
1576
  */
1187
- FwMode: number;
1577
+ FwSwitchNum?: number;
1188
1578
  /**
1189
- * vpc ipv4网段范围 CIDR(Classless Inter-Domain Routing,无类域间路由选择)
1579
+ * 防火墙(组)部署的地域
1580
+ 注意:此字段可能返回 null,表示取不到有效值。
1190
1581
  */
1191
- VpcIpv4Cidr: string;
1582
+ RegionLst?: Array<string>;
1192
1583
  /**
1193
- * 外网弹性ip,防火墙 dns解析地址
1584
+ * 模式 1:CCN云联网模式;0:私有网络模式 2: sase 模式 3:ccn 高级模式 4: 私有网络(跨租户单边模式)
1585
+ 注意:此字段可能返回 null,表示取不到有效值。
1194
1586
  */
1195
- DNSEip: string;
1587
+ Mode?: number;
1196
1588
  /**
1197
- * nat网关id
1589
+ * 防火墙实例的开关模式 1: 单点互通 2: 多点互通 3: 全互通 4: 自定义路由
1198
1590
  注意:此字段可能返回 null,表示取不到有效值。
1199
1591
  */
1200
- NatInsId: string;
1592
+ SwitchMode?: number;
1201
1593
  /**
1202
- * nat网关名称
1594
+ * VPC防火墙实例卡片信息数组
1203
1595
  注意:此字段可能返回 null,表示取不到有效值。
1204
1596
  */
1205
- NatInsName: string;
1597
+ FwInstanceLst?: Array<VpcFwInstanceInfo>;
1206
1598
  /**
1207
- * 0:开关关闭 1: 开关打开
1599
+ * 防火墙(状态) 0:正常 1: 初始化或操作中
1600
+ 注意:此字段可能返回 null,表示取不到有效值。
1208
1601
  */
1209
- SwitchStatus: number;
1602
+ Status?: number;
1210
1603
  /**
1211
- * 0:未防护, 1: 已防护,2:忽略此字段
1604
+ * auto :自动选择
1605
+ 如果为网段,则为用户自定义 192.168.0.0/20
1606
+ */
1607
+ FwVpcCidr?: string;
1608
+ /**
1609
+ * cdc专用集群场景时表示部署所属的cdc
1212
1610
  注意:此字段可能返回 null,表示取不到有效值。
1213
1611
  */
1214
- ProtectedStatus?: number;
1612
+ CdcId?: string;
1215
1613
  /**
1216
- * 是否支持DNS FW,0-不支持、1-支持
1614
+ * cdc专用集群场景时表示cdc名称
1217
1615
  注意:此字段可能返回 null,表示取不到有效值。
1218
1616
  */
1219
- SupportDNSFW?: number;
1617
+ CdcName?: string;
1618
+ /**
1619
+ * 跨租户模式 1管理员 2单边 0 非跨租户
1620
+ 注意:此字段可能返回 null,表示取不到有效值。
1621
+ */
1622
+ CrossUserMode?: string;
1623
+ }
1624
+ /**
1625
+ * DeleteBlockIgnoreRuleList返回参数结构体
1626
+ */
1627
+ export interface DeleteBlockIgnoreRuleListResponse {
1628
+ /**
1629
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1630
+ */
1631
+ RequestId?: string;
1632
+ }
1633
+ /**
1634
+ * 统计折线图通用结构体
1635
+ */
1636
+ export interface IpStatic {
1637
+ /**
1638
+ * 值
1639
+ */
1640
+ Num: number;
1641
+ /**
1642
+ * 折线图横坐标时间
1643
+ */
1644
+ StatTime: string;
1645
+ }
1646
+ /**
1647
+ * CreateVpcFwGroup返回参数结构体
1648
+ */
1649
+ export interface CreateVpcFwGroupResponse {
1650
+ /**
1651
+ * 防火墙组ID
1652
+ 注意:此字段可能返回 null,表示取不到有效值。
1653
+ */
1654
+ FwGroupId?: string;
1655
+ /**
1656
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1657
+ */
1658
+ RequestId?: string;
1659
+ }
1660
+ /**
1661
+ * VPC防火墙实例的CVM信息
1662
+ */
1663
+ export interface VpcFwCvmInsInfo {
1664
+ /**
1665
+ * VPC防火墙实例ID
1666
+ 注意:此字段可能返回 null,表示取不到有效值。
1667
+ */
1668
+ FwInsId: string;
1669
+ /**
1670
+ * CVM所在地域
1671
+ 注意:此字段可能返回 null,表示取不到有效值。
1672
+ */
1673
+ Region?: string;
1674
+ /**
1675
+ * CVM所在地域中文
1676
+ 注意:此字段可能返回 null,表示取不到有效值。
1677
+ */
1678
+ RegionZh?: string;
1679
+ /**
1680
+ * CVM所在地域详情
1681
+ 注意:此字段可能返回 null,表示取不到有效值。
1682
+ */
1683
+ RegionDetail?: string;
1684
+ /**
1685
+ * 主机所在可用区
1686
+ 注意:此字段可能返回 null,表示取不到有效值。
1687
+ */
1688
+ ZoneZh?: string;
1689
+ /**
1690
+ * 备机所在可用区
1691
+ 注意:此字段可能返回 null,表示取不到有效值。
1692
+ */
1693
+ ZoneZhBack?: string;
1694
+ /**
1695
+ * 防火墙CVM带宽值
1696
+ 注意:此字段可能返回 null,表示取不到有效值。
1697
+ */
1698
+ BandWidth?: number;
1220
1699
  }
1221
1700
  /**
1222
1701
  * DescribeEnterpriseSecurityGroupRule请求参数结构体
@@ -1291,14 +1770,277 @@ export interface DescribeEnterpriseSecurityGroupRuleRequest {
1291
1770
  RuleUuid?: number;
1292
1771
  }
1293
1772
  /**
1294
- * ModifyNatFwReSelect返回参数结构体
1773
+ * VPC内网间规则
1295
1774
  */
1296
- export interface ModifyNatFwReSelectResponse {
1775
+ export interface VpcRuleItem {
1297
1776
  /**
1298
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1777
+ * 访问源示例:
1778
+ net:IP/CIDR(192.168.0.2)
1779
+ */
1780
+ SourceContent: string;
1781
+ /**
1782
+ * 访问源类型,类型可以为:net
1783
+ */
1784
+ SourceType: string;
1785
+ /**
1786
+ * 访问目的示例:
1787
+ net:IP/CIDR(192.168.0.2)
1788
+ domain:域名规则,例如*.qq.com
1789
+ */
1790
+ DestContent: string;
1791
+ /**
1792
+ * 访问目的类型,类型可以为:net,domain
1793
+ */
1794
+ DestType: string;
1795
+ /**
1796
+ * 协议,可选的值:
1797
+ TCP
1798
+ UDP
1799
+ ICMP
1800
+ ANY
1801
+ HTTP
1802
+ HTTPS
1803
+ HTTP/HTTPS
1804
+ SMTP
1805
+ SMTPS
1806
+ SMTP/SMTPS
1807
+ FTP
1808
+ DNS
1809
+ TLS/SSL
1810
+ 注意:此字段可能返回 null,表示取不到有效值。
1811
+ */
1812
+ Protocol: string;
1813
+ /**
1814
+ * 访问控制策略中设置的流量通过云防火墙的方式。取值:
1815
+ accept:放行
1816
+ drop:拒绝
1817
+ log:观察
1818
+ */
1819
+ RuleAction: string;
1820
+ /**
1821
+ * 访问控制策略的端口。取值:
1822
+ -1/-1:全部端口
1823
+ 80:80端口
1824
+ 注意:此字段可能返回 null,表示取不到有效值。
1825
+ */
1826
+ Port: string;
1827
+ /**
1828
+ * 描述
1829
+ */
1830
+ Description: string;
1831
+ /**
1832
+ * 规则顺序,-1表示最低,1表示最高
1833
+ */
1834
+ OrderIndex: number;
1835
+ /**
1836
+ * 规则对应的唯一id
1837
+ */
1838
+ Uuid: number;
1839
+ /**
1840
+ * 规则状态,true表示启用,false表示禁用
1841
+ */
1842
+ Enable: string;
1843
+ /**
1844
+ * 规则生效的范围,是在哪对vpc之间还是针对所有vpc间生效
1845
+ */
1846
+ EdgeId: string;
1847
+ /**
1848
+ * 规则的命中次数,增删改查规则时无需传入此参数,主要用于返回查询结果数据
1849
+ */
1850
+ DetectedTimes?: number;
1851
+ /**
1852
+ * EdgeId对应的这对VPC间防火墙的描述
1853
+ */
1854
+ EdgeName?: string;
1855
+ /**
1856
+ * 内部使用的uuid,一般情况下不会使用到该字段
1857
+ */
1858
+ InternalUuid?: number;
1859
+ /**
1860
+ * 规则被删除:1,已删除;0,未删除
1861
+ */
1862
+ Deleted?: number;
1863
+ /**
1864
+ * 规则生效的防火墙实例ID
1865
+ 注意:此字段可能返回 null,表示取不到有效值。
1866
+ */
1867
+ FwGroupId?: string;
1868
+ /**
1869
+ * 防火墙名称
1870
+ 注意:此字段可能返回 null,表示取不到有效值。
1871
+ */
1872
+ FwGroupName?: string;
1873
+ /**
1874
+ * beta任务详情
1875
+ 注意:此字段可能返回 null,表示取不到有效值。
1876
+ */
1877
+ BetaList?: Array<BetaInfoByACL>;
1878
+ }
1879
+ /**
1880
+ * ModifyNatFwReSelect返回参数结构体
1881
+ */
1882
+ export interface ModifyNatFwReSelectResponse {
1883
+ /**
1884
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1299
1885
  */
1300
1886
  RequestId?: string;
1301
1887
  }
1888
+ /**
1889
+ * DescribeVpcAcRule请求参数结构体
1890
+ */
1891
+ export interface DescribeVpcAcRuleRequest {
1892
+ /**
1893
+ * 每页条数
1894
+ */
1895
+ Limit: number;
1896
+ /**
1897
+ * 偏移值
1898
+ */
1899
+ Offset: number;
1900
+ /**
1901
+ * 需要查询的索引,特定场景使用,可不填
1902
+ */
1903
+ Index?: string;
1904
+ /**
1905
+ * 过滤条件组合
1906
+ */
1907
+ Filters?: Array<CommonFilter>;
1908
+ /**
1909
+ * 检索的起始时间,可不传
1910
+ */
1911
+ StartTime?: string;
1912
+ /**
1913
+ * 检索的截止时间,可不传
1914
+ */
1915
+ EndTime?: string;
1916
+ /**
1917
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
1918
+ */
1919
+ Order?: string;
1920
+ /**
1921
+ * 排序所用到的字段
1922
+ */
1923
+ By?: string;
1924
+ }
1925
+ /**
1926
+ * VPC防火墙实例卡片信息
1927
+ */
1928
+ export interface VpcFwInstanceInfo {
1929
+ /**
1930
+ * VPC防火墙实例名称
1931
+ 注意:此字段可能返回 null,表示取不到有效值。
1932
+ */
1933
+ FwInsName: string;
1934
+ /**
1935
+ * VPC防火墙实例ID
1936
+ 注意:此字段可能返回 null,表示取不到有效值。
1937
+ */
1938
+ FwInsId: string;
1939
+ /**
1940
+ * VPC防火墙实例模式 0: 旧VPC模式防火墙 1: CCN模式防火墙
1941
+ 注意:此字段可能返回 null,表示取不到有效值。
1942
+ */
1943
+ FwMode: number;
1944
+ /**
1945
+ * VPC防火墙接入网络实例个数
1946
+ 注意:此字段可能返回 null,表示取不到有效值。
1947
+ */
1948
+ JoinInsNum: number;
1949
+ /**
1950
+ * VPC防火墙开关个数
1951
+ 注意:此字段可能返回 null,表示取不到有效值。
1952
+ */
1953
+ FwSwitchNum: number;
1954
+ /**
1955
+ * VPC防火墙状态 0:正常 , 1:创建中 2: 变更中
1956
+ 注意:此字段可能返回 null,表示取不到有效值。
1957
+ */
1958
+ Status: number;
1959
+ /**
1960
+ * VPC防火墙创建时间
1961
+ 注意:此字段可能返回 null,表示取不到有效值。
1962
+ */
1963
+ Time: string;
1964
+ /**
1965
+ * VPC 相关云联网ID列表
1966
+ 注意:此字段可能返回 null,表示取不到有效值。
1967
+ */
1968
+ CcnId?: Array<string>;
1969
+ /**
1970
+ * VPC 相关云联网名称列表
1971
+ 注意:此字段可能返回 null,表示取不到有效值。
1972
+ */
1973
+ CcnName?: Array<string>;
1974
+ /**
1975
+ * VPC 相关对等连接ID列表
1976
+ 注意:此字段可能返回 null,表示取不到有效值。
1977
+ */
1978
+ PeerConnectionId?: Array<string>;
1979
+ /**
1980
+ * VPC 相关对等连接名称列表
1981
+ 注意:此字段可能返回 null,表示取不到有效值。
1982
+ */
1983
+ PeerConnectionName?: Array<string>;
1984
+ /**
1985
+ * VPC防火墙CVM的列表
1986
+ 注意:此字段可能返回 null,表示取不到有效值。
1987
+ */
1988
+ FwCvmLst?: Array<VpcFwCvmInsInfo>;
1989
+ /**
1990
+ * VPC防火墙接入网络实例类型列表
1991
+ 注意:此字段可能返回 null,表示取不到有效值。
1992
+ */
1993
+ JoinInsLst?: Array<VpcFwJoinInstanceType>;
1994
+ /**
1995
+ * 防火墙网关信息
1996
+ 注意:此字段可能返回 null,表示取不到有效值。
1997
+ */
1998
+ FwGateway?: Array<FwGateway>;
1999
+ /**
2000
+ * 防火墙(组)ID
2001
+ 注意:此字段可能返回 null,表示取不到有效值。
2002
+ */
2003
+ FwGroupId?: string;
2004
+ /**
2005
+ * 已使用规则数
2006
+ 注意:此字段可能返回 null,表示取不到有效值。
2007
+ */
2008
+ RuleUsed?: number;
2009
+ /**
2010
+ * 最大规则数
2011
+ 注意:此字段可能返回 null,表示取不到有效值。
2012
+ */
2013
+ RuleMax?: number;
2014
+ /**
2015
+ * 防火墙实例带宽
2016
+ 注意:此字段可能返回 null,表示取不到有效值。
2017
+ */
2018
+ Width?: number;
2019
+ /**
2020
+ * 用户VPC墙总带宽
2021
+ 注意:此字段可能返回 null,表示取不到有效值。
2022
+ */
2023
+ UserVpcWidth?: number;
2024
+ /**
2025
+ * 接入的vpc列表
2026
+ 注意:此字段可能返回 null,表示取不到有效值。
2027
+ */
2028
+ JoinInsIdLst?: Array<string>;
2029
+ /**
2030
+ * 内网间峰值带宽 (单位 bps )
2031
+ */
2032
+ FlowMax?: number;
2033
+ /**
2034
+ * 实例引擎版本
2035
+ 注意:此字段可能返回 null,表示取不到有效值。
2036
+ */
2037
+ EngineVersion?: string;
2038
+ /**
2039
+ * 引擎是否可升级:0,不可升级;1,可升级
2040
+ 注意:此字段可能返回 null,表示取不到有效值。
2041
+ */
2042
+ UpdateEnable?: number;
2043
+ }
1302
2044
  /**
1303
2045
  * DescribeSwitchLists请求参数结构体
1304
2046
  */
@@ -1337,21 +2079,128 @@ export interface DescribeSwitchListsRequest {
1337
2079
  By?: string;
1338
2080
  }
1339
2081
  /**
1340
- * SetNatFwEip请求参数结构体
2082
+ * Nat防火墙弹性公网ip列表
1341
2083
  */
1342
- export interface SetNatFwEipRequest {
2084
+ export interface NatFwEipsInfo {
1343
2085
  /**
1344
- * bind:绑定eip;unbind:解绑eip;newAdd:新增防火墙弹性公网ip
2086
+ * 弹性公网ip
1345
2087
  */
1346
- OperationType: string;
2088
+ Eip: string;
1347
2089
  /**
1348
- * 防火墙实例id
2090
+ * 所属的Nat网关Id
2091
+ 注意:此字段可能返回 null,表示取不到有效值。
1349
2092
  */
1350
- CfwInstance: string;
2093
+ NatGatewayId: string;
1351
2094
  /**
1352
- * 当OperationType 为bind或unbind操作时,使用该字段。
2095
+ * Nat网关名称
2096
+ 注意:此字段可能返回 null,表示取不到有效值。
1353
2097
  */
1354
- EipList?: Array<string>;
2098
+ NatGatewayName: string;
2099
+ }
2100
+ /**
2101
+ * AddAclRule返回参数结构体
2102
+ */
2103
+ export interface AddAclRuleResponse {
2104
+ /**
2105
+ * 创建成功后返回新策略ID列表
2106
+ */
2107
+ RuleUuid?: Array<number | bigint>;
2108
+ /**
2109
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2110
+ */
2111
+ RequestId?: string;
2112
+ }
2113
+ /**
2114
+ * Nat实例卡片详细信息
2115
+ */
2116
+ export interface NatInstanceInfo {
2117
+ /**
2118
+ * nat实例id
2119
+ */
2120
+ NatinsId?: string;
2121
+ /**
2122
+ * nat实例名称
2123
+ */
2124
+ NatinsName?: string;
2125
+ /**
2126
+ * 实例所在地域
2127
+ */
2128
+ Region?: string;
2129
+ /**
2130
+ * 0: 新增模式,1:接入模式
2131
+ */
2132
+ FwMode?: number;
2133
+ /**
2134
+ * 实例带宽大小 Mbps
2135
+ */
2136
+ BandWidth?: number;
2137
+ /**
2138
+ * 入向带宽峰值 bps
2139
+ */
2140
+ InFlowMax?: number;
2141
+ /**
2142
+ * 出向带宽峰值 bps
2143
+ */
2144
+ OutFlowMax?: number;
2145
+ /**
2146
+ * 地域中文信息
2147
+ */
2148
+ RegionZh?: string;
2149
+ /**
2150
+ * 公网ip数组
2151
+ 注意:此字段可能返回 null,表示取不到有效值。
2152
+ */
2153
+ EipAddress?: Array<string>;
2154
+ /**
2155
+ * 内外使用ip数组
2156
+ 注意:此字段可能返回 null,表示取不到有效值。
2157
+ */
2158
+ VpcIp?: Array<string>;
2159
+ /**
2160
+ * 实例关联子网数组
2161
+ 注意:此字段可能返回 null,表示取不到有效值。
2162
+ */
2163
+ Subnets?: Array<string>;
2164
+ /**
2165
+ * 0 :正常 1:正在初始化
2166
+ 注意:此字段可能返回 null,表示取不到有效值。
2167
+ */
2168
+ Status?: number;
2169
+ /**
2170
+ * 地域区域信息
2171
+ 注意:此字段可能返回 null,表示取不到有效值。
2172
+ */
2173
+ RegionDetail?: string;
2174
+ /**
2175
+ * 实例所在可用区
2176
+ 注意:此字段可能返回 null,表示取不到有效值。
2177
+ */
2178
+ ZoneZh?: string;
2179
+ /**
2180
+ * 实例所在可用区
2181
+ 注意:此字段可能返回 null,表示取不到有效值。
2182
+ */
2183
+ ZoneZhBak?: string;
2184
+ /**
2185
+ * 已使用规则数
2186
+ 注意:此字段可能返回 null,表示取不到有效值。
2187
+ */
2188
+ RuleUsed?: number;
2189
+ /**
2190
+ * 实例的规则限制最大规格数
2191
+ 注意:此字段可能返回 null,表示取不到有效值。
2192
+ */
2193
+ RuleMax?: number;
2194
+ /**
2195
+ * 实例引擎版本
2196
+ 注意:此字段可能返回 null,表示取不到有效值。
2197
+ */
2198
+ EngineVersion?: string;
2199
+ /**
2200
+ * 引擎是否可升级:0,不可升级;1,可升级
2201
+ 注意:此字段可能返回 null,表示取不到有效值。
2202
+ */
2203
+ UpdateEnable?: number;
1355
2204
  }
1356
2205
  /**
1357
2206
  * SetNatFwEip返回参数结构体
@@ -1506,6 +2355,21 @@ export interface ModifySecurityGroupItemRuleStatusRequest {
1506
2355
  */
1507
2356
  RuleSequence: number;
1508
2357
  }
2358
+ /**
2359
+ * VPC防火墙接入的网络实例类型及数量
2360
+ */
2361
+ export interface VpcFwJoinInstanceType {
2362
+ /**
2363
+ * 接入实例类型,VPC、DIRECTCONNECT、 VPNGW 等
2364
+ 注意:此字段可能返回 null,表示取不到有效值。
2365
+ */
2366
+ JoinType: string;
2367
+ /**
2368
+ * 接入的对应网络实例类型的数量
2369
+ 注意:此字段可能返回 null,表示取不到有效值。
2370
+ */
2371
+ Num: number;
2372
+ }
1509
2373
  /**
1510
2374
  * DescribeSourceAsset请求参数结构体
1511
2375
  */
@@ -1542,58 +2406,214 @@ export interface SecurityGroupOrderIndexData {
1542
2406
  /**
1543
2407
  * 企业安全组规则当前执行顺序
1544
2408
  */
1545
- OrderIndex: number;
2409
+ OrderIndex: number;
2410
+ /**
2411
+ * 企业安全组规则更新目标执行顺序
2412
+ */
2413
+ NewOrderIndex: number;
2414
+ }
2415
+ /**
2416
+ * AddVpcAcRule请求参数结构体
2417
+ */
2418
+ export interface AddVpcAcRuleRequest {
2419
+ /**
2420
+ * 需要添加的vpc内网间规则列表
2421
+ */
2422
+ Rules: Array<VpcRuleItem>;
2423
+ /**
2424
+ * 添加规则的来源,一般不需要使用,值insert_rule 表示插入指定位置的规则;值batch_import 表示批量导入规则;为空时表示添加规则
2425
+ */
2426
+ From?: string;
2427
+ }
2428
+ /**
2429
+ * DescribeSourceAsset返回参数结构体
2430
+ */
2431
+ export interface DescribeSourceAssetResponse {
2432
+ /**
2433
+ * 地域集合
2434
+ */
2435
+ ZoneList: Array<AssetZone>;
2436
+ /**
2437
+ * 数据
2438
+ */
2439
+ Data: Array<InstanceInfo>;
2440
+ /**
2441
+ * 返回数据总数
2442
+ */
2443
+ Total: number;
2444
+ /**
2445
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2446
+ */
2447
+ RequestId?: string;
2448
+ }
2449
+ /**
2450
+ * DescribeFwGroupInstanceInfo请求参数结构体
2451
+ */
2452
+ export interface DescribeFwGroupInstanceInfoRequest {
2453
+ /**
2454
+ * 每页条数
2455
+ */
2456
+ Limit: number;
2457
+ /**
2458
+ * 偏移值
2459
+ */
2460
+ Offset: number;
2461
+ /**
2462
+ * 过滤条件组合
2463
+ */
2464
+ Filters?: Array<CommonFilter>;
2465
+ /**
2466
+ * 检索的起始时间,可不传
2467
+ */
2468
+ StartTime?: string;
2469
+ /**
2470
+ * 检索的截止时间,可不传
2471
+ */
2472
+ EndTime?: string;
2473
+ /**
2474
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
2475
+ */
2476
+ Order?: string;
2477
+ /**
2478
+ * 排序所用到的字段
2479
+ */
2480
+ By?: string;
2481
+ }
2482
+ /**
2483
+ * ModifyBlockIgnoreRule请求参数结构体
2484
+ */
2485
+ export interface ModifyBlockIgnoreRuleRequest {
2486
+ /**
2487
+ * 规则
2488
+ */
2489
+ Rule: IntrusionDefenseRule;
2490
+ /**
2491
+ * 规则类型,1封禁,2放通
2492
+ */
2493
+ RuleType: number;
2494
+ }
2495
+ /**
2496
+ * DescribeEnterpriseSGRuleProgress请求参数结构体
2497
+ */
2498
+ export declare type DescribeEnterpriseSGRuleProgressRequest = null;
2499
+ /**
2500
+ * 边界防火墙公网IP开关列表
2501
+ */
2502
+ export interface EdgeIpInfo {
2503
+ /**
2504
+ * 公网IP
2505
+ */
2506
+ PublicIp?: string;
2507
+ /**
2508
+ * 公网 IP 类型
2509
+ 注意:此字段可能返回 null,表示取不到有效值。
2510
+ */
2511
+ PublicIpType?: number;
2512
+ /**
2513
+ * 实例ID
2514
+ 注意:此字段可能返回 null,表示取不到有效值。
2515
+ */
2516
+ InstanceId?: string;
2517
+ /**
2518
+ * 实例名
2519
+ 注意:此字段可能返回 null,表示取不到有效值。
2520
+ */
2521
+ InstanceName?: string;
2522
+ /**
2523
+ * 内网IP
2524
+ 注意:此字段可能返回 null,表示取不到有效值。
2525
+ */
2526
+ IntranetIp?: string;
2527
+ /**
2528
+ * 资产类型
2529
+ 注意:此字段可能返回 null,表示取不到有效值。
2530
+ */
2531
+ AssetType?: string;
2532
+ /**
2533
+ * 地域
2534
+ 注意:此字段可能返回 null,表示取不到有效值。
2535
+ */
2536
+ Region?: string;
2537
+ /**
2538
+ * 风险端口数
2539
+ 注意:此字段可能返回 null,表示取不到有效值。
2540
+ */
2541
+ PortRiskCount?: number;
2542
+ /**
2543
+ * 最近扫描时间
2544
+ 注意:此字段可能返回 null,表示取不到有效值。
2545
+ */
2546
+ LastScanTime?: string;
2547
+ /**
2548
+ * 是否为region eip
2549
+ 0 不为region eip,不能选择串行
2550
+ 1 为region eip 可以选择串行
2551
+ 注意:此字段可能返回 null,表示取不到有效值。
2552
+ */
2553
+ IsRegionEip?: number;
2554
+ /**
2555
+ * EIP 所关联的VPC
2556
+ 注意:此字段可能返回 null,表示取不到有效值。
2557
+ */
2558
+ VpcId?: string;
1546
2559
  /**
1547
- * 企业安全组规则更新目标执行顺序
2560
+ * 0: 该地域暂未支持串行
2561
+ 1: 该用户未在该地域配置串行带宽
2562
+ 2: 该用户已在该地域配置串行带宽,可以开启串行开关
2563
+ 注意:此字段可能返回 null,表示取不到有效值。
1548
2564
  */
1549
- NewOrderIndex: number;
1550
- }
1551
- /**
1552
- * DescribeSourceAsset返回参数结构体
1553
- */
1554
- export interface DescribeSourceAssetResponse {
2565
+ IsSerialRegion?: number;
1555
2566
  /**
1556
- * 地域集合
2567
+ * 0: 不是公网CLB 可以开启串行开关
2568
+ 1: 是公网CLB 不可以开启串行开关
2569
+
2570
+ 注意:此字段可能返回 null,表示取不到有效值。
1557
2571
  */
1558
- ZoneList: Array<AssetZone>;
2572
+ IsPublicClb?: number;
1559
2573
  /**
1560
- * 数据
2574
+ * 0: 开启开关时提示要创建私有连接。
2575
+ 1: 关闭该开关是提示删除私有连接。
2576
+ 如果大于 1: 关闭开关 、开启开关不需提示创建删除私有连接。
2577
+ 注意:此字段可能返回 null,表示取不到有效值。
1561
2578
  */
1562
- Data: Array<InstanceInfo>;
2579
+ EndpointBindEipNum?: number;
1563
2580
  /**
1564
- * 返回数据总数
2581
+ * 扫描深度
2582
+ 注意:此字段可能返回 null,表示取不到有效值。
1565
2583
  */
1566
- Total: number;
2584
+ ScanMode?: string;
1567
2585
  /**
1568
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2586
+ * 扫描状态
2587
+ 注意:此字段可能返回 null,表示取不到有效值。
1569
2588
  */
1570
- RequestId?: string;
1571
- }
1572
- /**
1573
- * DescribeTLogInfo请求参数结构体
1574
- */
1575
- export interface DescribeTLogInfoRequest {
2589
+ ScanStatus?: number;
1576
2590
  /**
1577
- * 开始时间
2591
+ * 开关状态
2592
+ 0 : 关闭
2593
+ 1 : 开启
2594
+ 2 : 开启中
2595
+ 3 : 关闭中
2596
+ 4 : 异常
2597
+ 注意:此字段可能返回 null,表示取不到有效值。
1578
2598
  */
1579
- StartTime: string;
2599
+ Status?: number;
1580
2600
  /**
1581
- * 结束时间
2601
+ * 私有连接ID
2602
+ 注意:此字段可能返回 null,表示取不到有效值。
1582
2603
  */
1583
- EndTime: string;
2604
+ EndpointId?: string;
1584
2605
  /**
1585
- * 类型 1 告警 2阻断
2606
+ * 私有连接IP
2607
+ 注意:此字段可能返回 null,表示取不到有效值。
1586
2608
  */
1587
- QueryType: string;
2609
+ EndpointIp?: string;
1588
2610
  /**
1589
- * 查询条件
2611
+ * 0 : 旁路
2612
+ 1 : 串行
2613
+ 2 : 正在模式切换
1590
2614
  */
1591
- SearchValue?: string;
2615
+ SwitchMode?: number;
1592
2616
  }
1593
- /**
1594
- * DescribeEnterpriseSGRuleProgress请求参数结构体
1595
- */
1596
- export declare type DescribeEnterpriseSGRuleProgressRequest = null;
1597
2617
  /**
1598
2618
  * AssetZone
1599
2619
  */
@@ -1727,9 +2747,19 @@ export interface DescribeNatFwInstancesInfoRequest {
1727
2747
  Limit?: number;
1728
2748
  }
1729
2749
  /**
1730
- * ModifyNatSequenceRules返回参数结构体
2750
+ * DescribeFwGroupInstanceInfo返回参数结构体
1731
2751
  */
1732
- export interface ModifyNatSequenceRulesResponse {
2752
+ export interface DescribeFwGroupInstanceInfoResponse {
2753
+ /**
2754
+ * 防火墙(组)
2755
+ 注意:此字段可能返回 null,表示取不到有效值。
2756
+ */
2757
+ VpcFwGroupLst?: Array<VpcFwGroupInfo>;
2758
+ /**
2759
+ * 防火墙(组)个数
2760
+ 注意:此字段可能返回 null,表示取不到有效值。
2761
+ */
2762
+ Total?: number;
1733
2763
  /**
1734
2764
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1735
2765
  */
@@ -1756,6 +2786,42 @@ export interface DescribeTableStatusRequest {
1756
2786
  */
1757
2787
  Direction?: number;
1758
2788
  }
2789
+ /**
2790
+ * ModifyNatSequenceRules返回参数结构体
2791
+ */
2792
+ export interface ModifyNatSequenceRulesResponse {
2793
+ /**
2794
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2795
+ */
2796
+ RequestId?: string;
2797
+ }
2798
+ /**
2799
+ * DescribeAssetSync返回参数结构体
2800
+ */
2801
+ export interface DescribeAssetSyncResponse {
2802
+ /**
2803
+ * 返回状态
2804
+ 1 更新中
2805
+ 2 更新完成
2806
+ 3 更新失败
2807
+ 4 更新失败
2808
+ */
2809
+ Status?: number;
2810
+ /**
2811
+ * success 成功
2812
+ 其他失败
2813
+ */
2814
+ ReturnMsg?: string;
2815
+ /**
2816
+ * 0 成功
2817
+ 非0 失败
2818
+ */
2819
+ ReturnCode?: number;
2820
+ /**
2821
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2822
+ */
2823
+ RequestId?: string;
2824
+ }
1759
2825
  /**
1760
2826
  * DescribeSecurityGroupList请求参数结构体
1761
2827
  */
@@ -1790,21 +2856,21 @@ export interface DescribeSecurityGroupListRequest {
1790
2856
  Filter?: number;
1791
2857
  }
1792
2858
  /**
1793
- * ModifyResourceGroup请求参数结构体
2859
+ * ModifyAddressTemplate返回参数结构体
1794
2860
  */
1795
- export interface ModifyResourceGroupRequest {
2861
+ export interface ModifyAddressTemplateResponse {
1796
2862
  /**
1797
- * 组id
2863
+ * 创建结果,0成功
1798
2864
  */
1799
- GroupId: string;
2865
+ Status?: number;
1800
2866
  /**
1801
- * 组名称
2867
+ * 唯一Id
1802
2868
  */
1803
- GroupName: string;
2869
+ Uuid?: string;
1804
2870
  /**
1805
- * 上级组id
2871
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1806
2872
  */
1807
- ParentId: string;
2873
+ RequestId?: string;
1808
2874
  }
1809
2875
  /**
1810
2876
  * CreateNatFwInstance返回参数结构体
@@ -1869,6 +2935,27 @@ export interface DescribeNatFwInfoCountResponse {
1869
2935
  * DescribeDefenseSwitch请求参数结构体
1870
2936
  */
1871
2937
  export declare type DescribeDefenseSwitchRequest = null;
2938
+ /**
2939
+ * ModifyVpcFwGroup请求参数结构体
2940
+ */
2941
+ export interface ModifyVpcFwGroupRequest {
2942
+ /**
2943
+ * 编辑的防火墙(组)ID
2944
+ */
2945
+ FwGroupId: string;
2946
+ /**
2947
+ * 修改防火墙(组)名称
2948
+ */
2949
+ Name?: string;
2950
+ /**
2951
+ * 编辑的防火墙实例列表
2952
+ */
2953
+ VpcFwInstances?: Array<VpcFwInstance>;
2954
+ /**
2955
+ * 指定防火墙使用网段信息
2956
+ */
2957
+ FwCidrInfo?: FwCidrInfo;
2958
+ }
1872
2959
  /**
1873
2960
  * ModifyEnterpriseSecurityDispatchStatus返回参数结构体
1874
2961
  */
@@ -1883,6 +2970,23 @@ export interface ModifyEnterpriseSecurityDispatchStatusResponse {
1883
2970
  */
1884
2971
  RequestId?: string;
1885
2972
  }
2973
+ /**
2974
+ * ModifyResourceGroup请求参数结构体
2975
+ */
2976
+ export interface ModifyResourceGroupRequest {
2977
+ /**
2978
+ * 组id
2979
+ */
2980
+ GroupId: string;
2981
+ /**
2982
+ * 组名称
2983
+ */
2984
+ GroupName: string;
2985
+ /**
2986
+ * 上级组id
2987
+ */
2988
+ ParentId: string;
2989
+ }
1886
2990
  /**
1887
2991
  * 安全组列表数据
1888
2992
  */
@@ -2014,17 +3118,47 @@ export interface SecurityGroupListData {
2014
3118
  ParameterName?: string;
2015
3119
  }
2016
3120
  /**
2017
- * RemoveNatAcRule返回参数结构体
3121
+ * 开启、关闭 防火墙互联网边界开关
2018
3122
  */
2019
- export interface RemoveNatAcRuleResponse {
3123
+ export interface EdgeIpSwitch {
2020
3124
  /**
2021
- * 删除成功后返回被删除策略的uuid列表
3125
+ * 公网IP
2022
3126
  */
2023
- RuleUuid?: Array<number | bigint>;
3127
+ PublicIp: string;
2024
3128
  /**
2025
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3129
+ * vpc 中第一个EIP开关打开,需要指定子网创建私有连接
2026
3130
  */
2027
- RequestId?: string;
3131
+ SubnetId?: string;
3132
+ /**
3133
+ * 创建私有连接指定IP
3134
+ */
3135
+ EndpointIp?: string;
3136
+ /**
3137
+ * 0 : 旁路 1 : 串行
3138
+ */
3139
+ SwitchMode?: number;
3140
+ }
3141
+ /**
3142
+ * ModifySequenceAclRules请求参数结构体
3143
+ */
3144
+ export interface ModifySequenceAclRulesRequest {
3145
+ /**
3146
+ * 规则快速排序:OrderIndex,原始序号;NewOrderIndex:新序号
3147
+ */
3148
+ RuleChangeItems: Array<RuleChangeItem>;
3149
+ /**
3150
+ * 规则方向:1,入站;0,出站
3151
+ */
3152
+ Direction: number;
3153
+ }
3154
+ /**
3155
+ * ModifyVpcAcRule请求参数结构体
3156
+ */
3157
+ export interface ModifyVpcAcRuleRequest {
3158
+ /**
3159
+ * 需要编辑的规则数组
3160
+ */
3161
+ Rules: Array<VpcRuleItem>;
2028
3162
  }
2029
3163
  /**
2030
3164
  * CreateNatFwInstanceWithDomain返回参数结构体
@@ -2041,13 +3175,34 @@ export interface CreateNatFwInstanceWithDomainResponse {
2041
3175
  RequestId?: string;
2042
3176
  }
2043
3177
  /**
2044
- * RemoveAcRule请求参数结构体
3178
+ * DescribeFwSyncStatus请求参数结构体
2045
3179
  */
2046
- export interface RemoveAcRuleRequest {
3180
+ export interface DescribeFwSyncStatusRequest {
3181
+ /**
3182
+ * 查询的同步状态类型:Route,同步路由状态
3183
+ */
3184
+ SyncType?: string;
3185
+ }
3186
+ /**
3187
+ * ModifyEnterpriseSecurityGroupRule请求参数结构体
3188
+ */
3189
+ export interface ModifyEnterpriseSecurityGroupRuleRequest {
2047
3190
  /**
2048
3191
  * 规则的uuid,可通过查询规则列表获取
2049
3192
  */
2050
3193
  RuleUuid: number;
3194
+ /**
3195
+ * 修改类型,0:修改规则内容;1:修改单条规则开关状态;2:修改所有规则开关状态
3196
+ */
3197
+ ModifyType: number;
3198
+ /**
3199
+ * 编辑后的企业安全组规则数据;修改规则状态不用填该字段
3200
+ */
3201
+ Data?: SecurityGroupRule;
3202
+ /**
3203
+ * 0是关闭,1是开启
3204
+ */
3205
+ Enable?: number;
2051
3206
  }
2052
3207
  /**
2053
3208
  * 规则关联的beta任务
@@ -2083,22 +3238,13 @@ export interface RemoveNatAcRuleRequest {
2083
3238
  Direction?: number;
2084
3239
  }
2085
3240
  /**
2086
- * ModifyAssetScan返回参数结构体
3241
+ * ModifySequenceRules返回参数结构体
2087
3242
  */
2088
- export interface ModifyAssetScanResponse {
2089
- /**
2090
- * 接口返回信息
2091
- 注意:此字段可能返回 null,表示取不到有效值。
2092
- */
2093
- ReturnMsg: string;
3243
+ export interface ModifySequenceRulesResponse {
2094
3244
  /**
2095
- * 接口返回错误码,0请求成功 非0失败
3245
+ * 0: 修改成功, 非0: 修改失败
2096
3246
  注意:此字段可能返回 null,表示取不到有效值。
2097
3247
  */
2098
- ReturnCode: number;
2099
- /**
2100
- * 状态值 0:成功,1 执行扫描中,其他:失败
2101
- */
2102
3248
  Status: number;
2103
3249
  /**
2104
3250
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2106,25 +3252,40 @@ export interface ModifyAssetScanResponse {
2106
3252
  RequestId?: string;
2107
3253
  }
2108
3254
  /**
2109
- * ModifyAllRuleStatus请求参数结构体
3255
+ * DescribeAssetSync请求参数结构体
2110
3256
  */
2111
- export interface ModifyAllRuleStatusRequest {
3257
+ export declare type DescribeAssetSyncRequest = null;
3258
+ /**
3259
+ * DeleteVpcFwGroup请求参数结构体
3260
+ */
3261
+ export interface DeleteVpcFwGroupRequest {
2112
3262
  /**
2113
- * 状态,0:全部停用,1:全部启用
3263
+ * 防火墙(组)Id
2114
3264
  */
2115
- Status: number;
3265
+ FwGroupId?: string;
2116
3266
  /**
2117
- * 方向,0:出站,1:入站
3267
+ * 是否删除整个防火墙(组)
3268
+ 0:不删除防火墙(组),只删除单独实例
3269
+ 1:删除整个防火墙(组)
2118
3270
  */
2119
- Direction?: number;
3271
+ DeleteFwGroup?: number;
2120
3272
  /**
2121
- * Edge ID值
3273
+ * 待删除的防火墙实例数组
2122
3274
  */
2123
- EdgeId?: string;
3275
+ VpcFwInsList?: Array<string>;
3276
+ }
3277
+ /**
3278
+ * ip防护状态
3279
+ */
3280
+ export interface IPDefendStatus {
2124
3281
  /**
2125
- * NAT地域
3282
+ * ip地址
2126
3283
  */
2127
- Area?: string;
3284
+ IP: string;
3285
+ /**
3286
+ * 防护状态 1:防护打开; -1:地址错误; 其他:未防护
3287
+ */
3288
+ Status: number;
2128
3289
  }
2129
3290
  /**
2130
3291
  * 规则输入对象
@@ -2246,6 +3407,15 @@ export interface ModifyAllPublicIPSwitchStatusRequest {
2246
3407
  */
2247
3408
  FireWallPublicIPs?: Array<string>;
2248
3409
  }
3410
+ /**
3411
+ * ModifySequenceAclRules返回参数结构体
3412
+ */
3413
+ export interface ModifySequenceAclRulesResponse {
3414
+ /**
3415
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3416
+ */
3417
+ RequestId?: string;
3418
+ }
2249
3419
  /**
2250
3420
  * CreateAddressTemplate请求参数结构体
2251
3421
  */
@@ -2322,25 +3492,43 @@ export interface CreateDatabaseWhiteListRulesResponse {
2322
3492
  RequestId?: string;
2323
3493
  }
2324
3494
  /**
2325
- * 新手引导扫描信息
3495
+ * DeleteBlockIgnoreRuleList请求参数结构体
2326
3496
  */
2327
- export interface ScanInfo {
3497
+ export interface DeleteBlockIgnoreRuleListRequest {
2328
3498
  /**
2329
- * 扫描结果信息
3499
+ * 规则列表
2330
3500
  */
2331
- ScanResultInfo: ScanResultInfo;
3501
+ Rules: Array<IocListData>;
2332
3502
  /**
2333
- * 扫描状态 0扫描中 1完成 2未勾选自动扫描
3503
+ * 规则类型,1封禁,2放通,不支持域名封禁
2334
3504
  */
2335
- ScanStatus: number;
3505
+ RuleType: number;
3506
+ }
3507
+ /**
3508
+ * DescribeNatSwitchList返回参数结构体
3509
+ */
3510
+ export interface DescribeNatSwitchListResponse {
2336
3511
  /**
2337
- * 进度
3512
+ * 总数
2338
3513
  */
2339
- ScanPercent: number;
3514
+ Total?: number;
2340
3515
  /**
2341
- * 预计完成时间
3516
+ * NAT边界防火墙开关列表数据
2342
3517
  */
2343
- ScanTime: string;
3518
+ Data?: Array<NatSwitchListData>;
3519
+ /**
3520
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3521
+ */
3522
+ RequestId?: string;
3523
+ }
3524
+ /**
3525
+ * DeleteVpcFwGroup返回参数结构体
3526
+ */
3527
+ export interface DeleteVpcFwGroupResponse {
3528
+ /**
3529
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3530
+ */
3531
+ RequestId?: string;
2344
3532
  }
2345
3533
  /**
2346
3534
  * CreateChooseVpcs返回参数结构体
@@ -2432,19 +3620,15 @@ export interface ModifyRunSyncAssetResponse {
2432
3620
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2433
3621
  */
2434
3622
  RequestId?: string;
2435
- }
2436
- /**
2437
- * ModifyEnterpriseSecurityGroupRule返回参数结构体
2438
- */
2439
- export interface ModifyEnterpriseSecurityGroupRuleResponse {
2440
- /**
2441
- * 状态值,0:编辑成功,非0:编辑失败
2442
- */
2443
- Status: number;
3623
+ }
3624
+ /**
3625
+ * AddVpcAcRule返回参数结构体
3626
+ */
3627
+ export interface AddVpcAcRuleResponse {
2444
3628
  /**
2445
- * 编辑后新生成规则的Id
3629
+ * 创建成功后返回新策略ID列表
2446
3630
  */
2447
- NewRuleUuid: number;
3631
+ RuleUuids?: Array<number | bigint>;
2448
3632
  /**
2449
3633
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2450
3634
  */
@@ -2477,17 +3661,21 @@ export interface DescribeSecurityGroupListResponse {
2477
3661
  RequestId?: string;
2478
3662
  }
2479
3663
  /**
2480
- * 统计折线图通用结构体
3664
+ * DescribeVpcAcRule返回参数结构体
2481
3665
  */
2482
- export interface IpStatic {
3666
+ export interface DescribeVpcAcRuleResponse {
2483
3667
  /**
2484
- *
3668
+ * 总条数
2485
3669
  */
2486
- Num: number;
3670
+ Total?: number;
2487
3671
  /**
2488
- * 折线图横坐标时间
3672
+ * 内网间访问控制列表数据
2489
3673
  */
2490
- StatTime: string;
3674
+ Data?: Array<VpcRuleItem>;
3675
+ /**
3676
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3677
+ */
3678
+ RequestId?: string;
2491
3679
  }
2492
3680
  /**
2493
3681
  * AddEnterpriseSecurityGroupRules返回参数结构体
@@ -2620,6 +3808,19 @@ export interface DescribeBlockByIpTimesListRequest {
2620
3808
  */
2621
3809
  LogSource?: string;
2622
3810
  }
3811
+ /**
3812
+ * ModifyBlockTop请求参数结构体
3813
+ */
3814
+ export interface ModifyBlockTopRequest {
3815
+ /**
3816
+ * 记录id
3817
+ */
3818
+ UniqueId: string;
3819
+ /**
3820
+ * 操作类型 1 置顶 0取消
3821
+ */
3822
+ OpeType: string;
3823
+ }
2623
3824
  /**
2624
3825
  * RemoveEnterpriseSecurityGroupRule返回参数结构体
2625
3826
  */
@@ -2639,45 +3840,99 @@ export interface RemoveEnterpriseSecurityGroupRuleResponse {
2639
3840
  RequestId?: string;
2640
3841
  }
2641
3842
  /**
2642
- * CreateAddressTemplate返回参数结构体
3843
+ * 网络实例信息
2643
3844
  */
2644
- export interface CreateAddressTemplateResponse {
3845
+ export interface NetInstancesInfo {
2645
3846
  /**
2646
- * 创建结果,0成功
3847
+ * 网络实例ID
3848
+ 注意:此字段可能返回 null,表示取不到有效值。
2647
3849
  */
2648
- Status?: number;
3850
+ InstanceId: string;
2649
3851
  /**
2650
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3852
+ * 网络实例名称
2651
3853
  */
2652
- RequestId?: string;
3854
+ InstanceName?: string;
3855
+ /**
3856
+ * 网络cidr (多段以逗号分隔)
3857
+ */
3858
+ InstanceCidr?: string;
3859
+ /**
3860
+ * 网络实例所在地域
3861
+ */
3862
+ Region?: string;
2653
3863
  }
2654
3864
  /**
2655
- * ModifyEnterpriseSecurityGroupRule请求参数结构体
3865
+ * nat防火墙 vpc dns 开关信息
2656
3866
  */
2657
- export interface ModifyEnterpriseSecurityGroupRuleRequest {
3867
+ export interface VpcDnsInfo {
2658
3868
  /**
2659
- * 规则的uuid,可通过查询规则列表获取
3869
+ * vpc id
2660
3870
  */
2661
- RuleUuid: number;
3871
+ VpcId: string;
2662
3872
  /**
2663
- * 修改类型,0:修改规则内容;1:修改单条规则开关状态;2:修改所有规则开关状态
3873
+ * vpc 名称
2664
3874
  */
2665
- ModifyType: number;
3875
+ VpcName: string;
2666
3876
  /**
2667
- * 编辑后的企业安全组规则数据;修改规则状态不用填该字段
3877
+ * nat 防火墙模式 0:新增模式, 1: 接入模式
2668
3878
  */
2669
- Data?: SecurityGroupRule;
3879
+ FwMode: number;
2670
3880
  /**
2671
- * 0是关闭,1是开启
3881
+ * vpc ipv4网段范围 CIDR(Classless Inter-Domain Routing,无类域间路由选择)
2672
3882
  */
2673
- Enable?: number;
3883
+ VpcIpv4Cidr: string;
3884
+ /**
3885
+ * 外网弹性ip,防火墙 dns解析地址
3886
+ */
3887
+ DNSEip: string;
3888
+ /**
3889
+ * nat网关id
3890
+ 注意:此字段可能返回 null,表示取不到有效值。
3891
+ */
3892
+ NatInsId: string;
3893
+ /**
3894
+ * nat网关名称
3895
+ 注意:此字段可能返回 null,表示取不到有效值。
3896
+ */
3897
+ NatInsName: string;
3898
+ /**
3899
+ * 0:开关关闭 , 1: 开关打开
3900
+ */
3901
+ SwitchStatus: number;
3902
+ /**
3903
+ * 0:未防护, 1: 已防护,2:忽略此字段
3904
+ 注意:此字段可能返回 null,表示取不到有效值。
3905
+ */
3906
+ ProtectedStatus?: number;
3907
+ /**
3908
+ * 是否支持DNS FW,0-不支持、1-支持
3909
+ 注意:此字段可能返回 null,表示取不到有效值。
3910
+ */
3911
+ SupportDNSFW?: number;
2674
3912
  }
2675
3913
  /**
2676
- * ModifySequenceRules返回参数结构体
3914
+ * CreateAddressTemplate返回参数结构体
2677
3915
  */
2678
- export interface ModifySequenceRulesResponse {
3916
+ export interface CreateAddressTemplateResponse {
2679
3917
  /**
2680
- * 0: 修改成功, 非0: 修改失败
3918
+ * 创建结果,0成功
3919
+ */
3920
+ Status?: number;
3921
+ /**
3922
+ * 唯一Id
3923
+ */
3924
+ Uuid?: string;
3925
+ /**
3926
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3927
+ */
3928
+ RequestId?: string;
3929
+ }
3930
+ /**
3931
+ * DescribeTableStatus返回参数结构体
3932
+ */
3933
+ export interface DescribeTableStatusResponse {
3934
+ /**
3935
+ * 0:正常,其它:不正常
2681
3936
  注意:此字段可能返回 null,表示取不到有效值。
2682
3937
  */
2683
3938
  Status: number;
@@ -2686,6 +3941,20 @@ export interface ModifySequenceRulesResponse {
2686
3941
  */
2687
3942
  RequestId?: string;
2688
3943
  }
3944
+ /**
3945
+ * ModifyEdgeIpSwitch请求参数结构体
3946
+ */
3947
+ export interface ModifyEdgeIpSwitchRequest {
3948
+ /**
3949
+ * 0 关闭开关
3950
+ 1 打开开关
3951
+ */
3952
+ Enable: number;
3953
+ /**
3954
+ * 操作开关详情
3955
+ */
3956
+ EdgeIpSwitchLst?: Array<EdgeIpSwitch>;
3957
+ }
2689
3958
  /**
2690
3959
  * DescribeResourceGroupNew返回参数结构体
2691
3960
  */
@@ -2743,17 +4012,46 @@ export interface DescribeResourceGroupNewRequest {
2743
4012
  ShowType?: string;
2744
4013
  }
2745
4014
  /**
2746
- * ModifyBlockTop请求参数结构体
4015
+ * DescribeAddressTemplateList请求参数结构体
2747
4016
  */
2748
- export interface ModifyBlockTopRequest {
4017
+ export interface DescribeAddressTemplateListRequest {
2749
4018
  /**
2750
- * 记录id
4019
+ * 偏移量,分页用
2751
4020
  */
2752
- UniqueId: string;
4021
+ Offset?: number;
2753
4022
  /**
2754
- * 操作类型 1 置顶 0取消
4023
+ * 条数,分页用
2755
4024
  */
2756
- OpeType: string;
4025
+ Limit?: number;
4026
+ /**
4027
+ * 排序字段,取值 'UpdateTime' | 'RulesNum'
4028
+ */
4029
+ By?: string;
4030
+ /**
4031
+ * 排序,取值 'asc'|'desc'
4032
+ */
4033
+ Order?: string;
4034
+ /**
4035
+ * 搜索值
4036
+ */
4037
+ SearchValue?: string;
4038
+ /**
4039
+ * 检索地址模板唯一id
4040
+ */
4041
+ Uuid?: string;
4042
+ }
4043
+ /**
4044
+ * RemoveAclRule请求参数结构体
4045
+ */
4046
+ export interface RemoveAclRuleRequest {
4047
+ /**
4048
+ * 规则的uuid列表,可通过查询规则列表获取,注意:如果传入的是[-1]将删除所有规则
4049
+ */
4050
+ RuleUuid: Array<number | bigint>;
4051
+ /**
4052
+ * 规则方向:1,入站;0,出站
4053
+ */
4054
+ Direction?: number;
2757
4055
  }
2758
4056
  /**
2759
4057
  * DeleteAcRule返回参数结构体
@@ -2821,19 +4119,22 @@ export interface SecurityGroupSimplifyRule {
2821
4119
  Sequence?: number;
2822
4120
  }
2823
4121
  /**
2824
- * 黑白名单IOC列表
4122
+ * 封禁放通IOC列表
2825
4123
  */
2826
4124
  export interface IocListData {
2827
4125
  /**
2828
4126
  * 待处置IP地址,IP/Domain字段二选一
4127
+ 注意:此字段可能返回 null,表示取不到有效值。
2829
4128
  */
2830
4129
  IP: string;
2831
4130
  /**
2832
4131
  * 只能为0或者1 0代表出站 1代表入站
4132
+ 注意:此字段可能返回 null,表示取不到有效值。
2833
4133
  */
2834
4134
  Direction: number;
2835
4135
  /**
2836
4136
  * 待处置域名,IP/Domain字段二选一
4137
+ 注意:此字段可能返回 null,表示取不到有效值。
2837
4138
  */
2838
4139
  Domain?: string;
2839
4140
  }
@@ -2946,6 +4247,19 @@ export interface ModifyNatFwSwitchResponse {
2946
4247
  */
2947
4248
  RequestId?: string;
2948
4249
  }
4250
+ /**
4251
+ * DescribeFwSyncStatus返回参数结构体
4252
+ */
4253
+ export interface DescribeFwSyncStatusResponse {
4254
+ /**
4255
+ * 同步状态:1,同步中;0,同步完成
4256
+ */
4257
+ SyncStatus?: number;
4258
+ /**
4259
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4260
+ */
4261
+ RequestId?: string;
4262
+ }
2949
4263
  /**
2950
4264
  * DescribeBlockByIpTimesList返回参数结构体
2951
4265
  */
@@ -2959,6 +4273,27 @@ export interface DescribeBlockByIpTimesListResponse {
2959
4273
  */
2960
4274
  RequestId?: string;
2961
4275
  }
4276
+ /**
4277
+ * ModifyAllRuleStatus请求参数结构体
4278
+ */
4279
+ export interface ModifyAllRuleStatusRequest {
4280
+ /**
4281
+ * 状态,0:全部停用,1:全部启用
4282
+ */
4283
+ Status: number;
4284
+ /**
4285
+ * 方向,0:出站,1:入站
4286
+ */
4287
+ Direction?: number;
4288
+ /**
4289
+ * Edge ID值
4290
+ */
4291
+ EdgeId?: string;
4292
+ /**
4293
+ * NAT地域
4294
+ */
4295
+ Area?: string;
4296
+ }
2962
4297
  /**
2963
4298
  * SetNatFwDnatRule返回参数结构体
2964
4299
  */
@@ -2968,6 +4303,25 @@ export interface SetNatFwDnatRuleResponse {
2968
4303
  */
2969
4304
  RequestId?: string;
2970
4305
  }
4306
+ /**
4307
+ * VPC防火墙实例信息
4308
+ */
4309
+ export interface VpcFwInstanceShow {
4310
+ /**
4311
+ * VPC防火墙实例ID
4312
+ */
4313
+ FwInsId?: string;
4314
+ /**
4315
+ * VPC防火墙实例名称
4316
+ 注意:此字段可能返回 null,表示取不到有效值。
4317
+ */
4318
+ FwInsName?: string;
4319
+ /**
4320
+ * 网络经过VPC防火墙CVM所在地域
4321
+ 注意:此字段可能返回 null,表示取不到有效值。
4322
+ */
4323
+ FwInsRegion?: string;
4324
+ }
2971
4325
  /**
2972
4326
  * DescribeRuleOverview请求参数结构体
2973
4327
  */
@@ -3118,6 +4472,28 @@ export interface DescribeBlockIgnoreListResponse {
3118
4472
  */
3119
4473
  RequestId?: string;
3120
4474
  }
4475
+ /**
4476
+ * ModifyVpcAcRule返回参数结构体
4477
+ */
4478
+ export interface ModifyVpcAcRuleResponse {
4479
+ /**
4480
+ * 编辑成功后返回新策略ID列表
4481
+ */
4482
+ RuleUuids?: Array<number | bigint>;
4483
+ /**
4484
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4485
+ */
4486
+ RequestId?: string;
4487
+ }
4488
+ /**
4489
+ * ModifyEdgeIpSwitch返回参数结构体
4490
+ */
4491
+ export interface ModifyEdgeIpSwitchResponse {
4492
+ /**
4493
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4494
+ */
4495
+ RequestId?: string;
4496
+ }
3121
4497
  /**
3122
4498
  * ModifyEWRuleStatus请求参数结构体
3123
4499
  */
@@ -3201,7 +4577,58 @@ export interface ModifyNatFwSwitchRequest {
3201
4577
  /**
3202
4578
  * 路由表id列表,其中CfwInsIdList,SubnetIdList和RouteTableIdList只能传递一种。
3203
4579
  */
3204
- RouteTableIdList?: Array<string>;
4580
+ RouteTableIdList?: Array<string>;
4581
+ }
4582
+ /**
4583
+ * ModifyFwGroupSwitch返回参数结构体
4584
+ */
4585
+ export interface ModifyFwGroupSwitchResponse {
4586
+ /**
4587
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4588
+ */
4589
+ RequestId?: string;
4590
+ }
4591
+ /**
4592
+ * RemoveNatAcRule返回参数结构体
4593
+ */
4594
+ export interface RemoveNatAcRuleResponse {
4595
+ /**
4596
+ * 删除成功后返回被删除策略的uuid列表
4597
+ */
4598
+ RuleUuid?: Array<number | bigint>;
4599
+ /**
4600
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4601
+ */
4602
+ RequestId?: string;
4603
+ }
4604
+ /**
4605
+ * DescribeFwEdgeIps返回参数结构体
4606
+ */
4607
+ export interface DescribeFwEdgeIpsResponse {
4608
+ /**
4609
+ * ip 开关列表
4610
+ 注意:此字段可能返回 null,表示取不到有效值。
4611
+ */
4612
+ Data?: Array<EdgeIpInfo>;
4613
+ /**
4614
+ * ip 开关列表个数
4615
+ 注意:此字段可能返回 null,表示取不到有效值。
4616
+ */
4617
+ Total?: number;
4618
+ /**
4619
+ * 地域列表
4620
+ 注意:此字段可能返回 null,表示取不到有效值。
4621
+ */
4622
+ RegionLst?: Array<string>;
4623
+ /**
4624
+ * 实例类型列表
4625
+ 注意:此字段可能返回 null,表示取不到有效值。
4626
+ */
4627
+ InstanceTypeLst?: Array<string>;
4628
+ /**
4629
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4630
+ */
4631
+ RequestId?: string;
3205
4632
  }
3206
4633
  /**
3207
4634
  * DescribeIPStatusList返回参数结构体
@@ -3234,115 +4661,94 @@ export interface CreateDatabaseWhiteListRulesRequest {
3234
4661
  DatabaseWhiteListRuleData: Array<DatabaseWhiteListRuleData>;
3235
4662
  }
3236
4663
  /**
3237
- * Nat实例卡片详细信息
4664
+ * 多种VPC墙模式开关结构
3238
4665
  */
3239
- export interface NatInstanceInfo {
3240
- /**
3241
- * nat实例id
3242
- */
3243
- NatinsId?: string;
3244
- /**
3245
- * nat实例名称
3246
- */
3247
- NatinsName?: string;
3248
- /**
3249
- * 实例所在地域
3250
- */
3251
- Region?: string;
4666
+ export interface FwGroupSwitch {
3252
4667
  /**
3253
- * 0: 新增模式,1:接入模式
3254
- */
3255
- FwMode?: number;
3256
- /**
3257
- * 实例带宽大小 Mbps
3258
- */
3259
- BandWidth?: number;
3260
- /**
3261
- * 入向带宽峰值 bps
3262
- */
3263
- InFlowMax?: number;
3264
- /**
3265
- * 出向带宽峰值 bps
4668
+ * 防火墙实例的开关模式 1: 单点互通 2: 多点互通 3: 全互通 4: 自定义路由
3266
4669
  */
3267
- OutFlowMax?: number;
4670
+ SwitchMode?: number;
3268
4671
  /**
3269
- * 地域中文信息
4672
+ * 防火墙开关ID
4673
+ 支持三种类型
4674
+ 1. 边开关(单点互通)
4675
+ 2. 点开关(多点互通)
4676
+ 3. 全开关(全互通)
3270
4677
  */
3271
- RegionZh?: string;
4678
+ SwitchId?: string;
4679
+ }
4680
+ /**
4681
+ * 地址模版列表数据
4682
+ */
4683
+ export interface TemplateListInfo {
3272
4684
  /**
3273
- * 公网ip数组
4685
+ * 模版ID
3274
4686
  注意:此字段可能返回 null,表示取不到有效值。
3275
4687
  */
3276
- EipAddress?: Array<string>;
4688
+ Uuid: string;
3277
4689
  /**
3278
- * 内外使用ip数组
4690
+ * 模版名称
3279
4691
  注意:此字段可能返回 null,表示取不到有效值。
3280
4692
  */
3281
- VpcIp?: Array<string>;
4693
+ Name: string;
3282
4694
  /**
3283
- * 实例关联子网数组
4695
+ * 描述
3284
4696
  注意:此字段可能返回 null,表示取不到有效值。
3285
4697
  */
3286
- Subnets?: Array<string>;
4698
+ Detail: string;
3287
4699
  /**
3288
- * 0 :正常 1:正在初始化
4700
+ * IP模版
3289
4701
  注意:此字段可能返回 null,表示取不到有效值。
3290
4702
  */
3291
- Status?: number;
4703
+ IpString: string;
3292
4704
  /**
3293
- * 地域区域信息
4705
+ * 插入时间
3294
4706
  注意:此字段可能返回 null,表示取不到有效值。
3295
4707
  */
3296
- RegionDetail?: string;
4708
+ InsertTime: string;
3297
4709
  /**
3298
- * 实例所在可用区
4710
+ * 修改时间
3299
4711
  注意:此字段可能返回 null,表示取不到有效值。
3300
4712
  */
3301
- ZoneZh?: string;
4713
+ UpdateTime: string;
3302
4714
  /**
3303
- * 实例所在可用区
4715
+ * 模版类型
3304
4716
  注意:此字段可能返回 null,表示取不到有效值。
3305
4717
  */
3306
- ZoneZhBak?: string;
4718
+ Type: number;
3307
4719
  /**
3308
- * 已使用规则数
4720
+ * 关联规则条数
3309
4721
  注意:此字段可能返回 null,表示取不到有效值。
3310
4722
  */
3311
- RuleUsed?: number;
4723
+ RulesNum: number;
4724
+ }
4725
+ /**
4726
+ * DescribeVpcFwGroupSwitch返回参数结构体
4727
+ */
4728
+ export interface DescribeVpcFwGroupSwitchResponse {
3312
4729
  /**
3313
- * 实例的规则限制最大规格数
4730
+ * 开关列表
3314
4731
  注意:此字段可能返回 null,表示取不到有效值。
3315
4732
  */
3316
- RuleMax?: number;
4733
+ SwitchList?: Array<FwGroupSwitchShow>;
3317
4734
  /**
3318
- * 实例引擎版本
4735
+ * 开关总个数
3319
4736
  注意:此字段可能返回 null,表示取不到有效值。
3320
4737
  */
3321
- EngineVersion?: string;
4738
+ Total?: number;
3322
4739
  /**
3323
- * 引擎是否可升级:0,不可升级;1,可升级
3324
- 注意:此字段可能返回 null,表示取不到有效值。
4740
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3325
4741
  */
3326
- UpdateEnable?: number;
4742
+ RequestId?: string;
3327
4743
  }
3328
4744
  /**
3329
- * Nat防火墙弹性公网ip列表
4745
+ * ModifyBlockIgnoreRule返回参数结构体
3330
4746
  */
3331
- export interface NatFwEipsInfo {
3332
- /**
3333
- * 弹性公网ip
3334
- */
3335
- Eip: string;
3336
- /**
3337
- * 所属的Nat网关Id
3338
- 注意:此字段可能返回 null,表示取不到有效值。
3339
- */
3340
- NatGatewayId: string;
4747
+ export interface ModifyBlockIgnoreRuleResponse {
3341
4748
  /**
3342
- * Nat网关名称
3343
- 注意:此字段可能返回 null,表示取不到有效值。
4749
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3344
4750
  */
3345
- NatGatewayName: string;
4751
+ RequestId?: string;
3346
4752
  }
3347
4753
  /**
3348
4754
  * DescribeTLogIpList返回参数结构体
@@ -3375,6 +4781,15 @@ export interface StopSecurityGroupRuleDispatchResponse {
3375
4781
  * DescribeNatFwInfoCount请求参数结构体
3376
4782
  */
3377
4783
  export declare type DescribeNatFwInfoCountRequest = null;
4784
+ /**
4785
+ * RemoveAcRule请求参数结构体
4786
+ */
4787
+ export interface RemoveAcRuleRequest {
4788
+ /**
4789
+ * 规则的uuid,可通过查询规则列表获取
4790
+ */
4791
+ RuleUuid: number;
4792
+ }
3378
4793
  /**
3379
4794
  * AddAcRule返回参数结构体
3380
4795
  */
@@ -3396,6 +4811,101 @@ export interface AddAcRuleResponse {
3396
4811
  */
3397
4812
  RequestId?: string;
3398
4813
  }
4814
+ /**
4815
+ * VPC防火墙(组)四种开关展示
4816
+ */
4817
+ export interface FwGroupSwitchShow {
4818
+ /**
4819
+ * 防火墙开关ID
4820
+ */
4821
+ SwitchId: string;
4822
+ /**
4823
+ * 防火墙开关NAME
4824
+ 注意:此字段可能返回 null,表示取不到有效值。
4825
+ */
4826
+ SwitchName?: string;
4827
+ /**
4828
+ * 互通模式
4829
+ */
4830
+ SwitchMode?: number;
4831
+ /**
4832
+ * 开关边连接类型 0:对等连接, 1:云连网
4833
+ 注意:此字段可能返回 null,表示取不到有效值。
4834
+ */
4835
+ ConnectType?: number;
4836
+ /**
4837
+ * 连接ID
4838
+ 注意:此字段可能返回 null,表示取不到有效值。
4839
+ */
4840
+ ConnectId?: string;
4841
+ /**
4842
+ * 连接名称
4843
+ 注意:此字段可能返回 null,表示取不到有效值。
4844
+ */
4845
+ ConnectName?: string;
4846
+ /**
4847
+ * 源实例信息
4848
+ 注意:此字段可能返回 null,表示取不到有效值。
4849
+ */
4850
+ SrcInstancesInfo?: Array<NetInstancesInfo>;
4851
+ /**
4852
+ * 目的实例信息
4853
+ 注意:此字段可能返回 null,表示取不到有效值。
4854
+ */
4855
+ DstInstancesInfo?: Array<NetInstancesInfo>;
4856
+ /**
4857
+ * 防火墙(组)数据
4858
+ 注意:此字段可能返回 null,表示取不到有效值。
4859
+ */
4860
+ FwGroupId?: string;
4861
+ /**
4862
+ * 防火墙(组)名称
4863
+ 注意:此字段可能返回 null,表示取不到有效值。
4864
+ */
4865
+ FwGroupName?: string;
4866
+ /**
4867
+ * 开关状态 0:关 , 1:开
4868
+ 注意:此字段可能返回 null,表示取不到有效值。
4869
+ */
4870
+ Enable?: number;
4871
+ /**
4872
+ * 开关的状态 0:正常, 1:转换中
4873
+ 注意:此字段可能返回 null,表示取不到有效值。
4874
+ */
4875
+ Status?: number;
4876
+ /**
4877
+ * 0-非sase实例,忽略,1-未绑定状态,2-已绑定
4878
+ 注意:此字段可能返回 null,表示取不到有效值。
4879
+ */
4880
+ AttachWithEdge?: number;
4881
+ /**
4882
+ * 对等防火墙和开关状态 0:正常, 1:对等未创建防火墙,2:对等已创建防火墙,未打开开关
4883
+ 注意:此字段可能返回 null,表示取不到有效值。
4884
+ */
4885
+ CrossEdgeStatus?: number;
4886
+ /**
4887
+ * 网络经过VPC防火墙CVM所在地域
4888
+ 注意:此字段可能返回 null,表示取不到有效值。
4889
+ */
4890
+ FwInsRegion?: Array<string>;
4891
+ /**
4892
+ * 0 观察 1 拦截 2 严格 3 关闭
4893
+ 注意:此字段可能返回 null,表示取不到有效值。
4894
+ */
4895
+ IpsAction?: number;
4896
+ /**
4897
+ * 开关关联的防火墙实例列表
4898
+ 注意:此字段可能返回 null,表示取不到有效值。
4899
+ */
4900
+ FwInsLst?: Array<VpcFwInstanceShow>;
4901
+ /**
4902
+ * 开关是否处于bypass状态
4903
+ 0:正常状态
4904
+ 1:bypass状态
4905
+ 注意:此字段可能返回 null,表示取不到有效值。
4906
+ */
4907
+ BypassStatus?: number;
4908
+ }
3399
4909
  /**
3400
4910
  * ModifyNatFwReSelect请求参数结构体
3401
4911
  */
@@ -3421,6 +4931,15 @@ export interface ModifyNatFwReSelectRequest {
3421
4931
  */
3422
4932
  FwCidrInfo?: FwCidrInfo;
3423
4933
  }
4934
+ /**
4935
+ * ModifyVpcFwSequenceRules返回参数结构体
4936
+ */
4937
+ export interface ModifyVpcFwSequenceRulesResponse {
4938
+ /**
4939
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4940
+ */
4941
+ RequestId?: string;
4942
+ }
3424
4943
  /**
3425
4944
  * SetNatFwDnatRule请求参数结构体
3426
4945
  */
@@ -3599,6 +5118,23 @@ export interface StopSecurityGroupRuleDispatchRequest {
3599
5118
  */
3600
5119
  StopType?: number;
3601
5120
  }
5121
+ /**
5122
+ * SetNatFwEip请求参数结构体
5123
+ */
5124
+ export interface SetNatFwEipRequest {
5125
+ /**
5126
+ * bind:绑定eip;unbind:解绑eip;newAdd:新增防火墙弹性公网ip
5127
+ */
5128
+ OperationType: string;
5129
+ /**
5130
+ * 防火墙实例id
5131
+ */
5132
+ CfwInstance: string;
5133
+ /**
5134
+ * 当OperationType 为bind或unbind操作时,使用该字段。
5135
+ */
5136
+ EipList?: Array<string>;
5137
+ }
3602
5138
  /**
3603
5139
  * DescribeBlockIgnoreList请求参数结构体
3604
5140
  */
@@ -3641,6 +5177,19 @@ export interface ModifyBlockTopResponse {
3641
5177
  */
3642
5178
  RequestId?: string;
3643
5179
  }
5180
+ /**
5181
+ * RemoveAclRule返回参数结构体
5182
+ */
5183
+ export interface RemoveAclRuleResponse {
5184
+ /**
5185
+ * 删除成功后返回被删除策略的uuid列表
5186
+ */
5187
+ RuleUuid?: Array<number | bigint>;
5188
+ /**
5189
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5190
+ */
5191
+ RequestId?: string;
5192
+ }
3644
5193
  /**
3645
5194
  * DeleteNatFwInstance请求参数结构体
3646
5195
  */
@@ -3650,10 +5199,23 @@ export interface DeleteNatFwInstanceRequest {
3650
5199
  */
3651
5200
  CfwInstance: string;
3652
5201
  }
5202
+ /**
5203
+ * ModifyVpcFwSequenceRules请求参数结构体
5204
+ */
5205
+ export interface ModifyVpcFwSequenceRulesRequest {
5206
+ /**
5207
+ * 规则快速排序:OrderIndex,原始序号;NewOrderIndex:新序号
5208
+ */
5209
+ RuleChangeItems?: Array<RuleChangeItem>;
5210
+ }
3653
5211
  /**
3654
5212
  * ModifyStorageSetting请求参数结构体
3655
5213
  */
3656
5214
  export declare type ModifyStorageSettingRequest = null;
5215
+ /**
5216
+ * ModifyAssetSync请求参数结构体
5217
+ */
5218
+ export declare type ModifyAssetSyncRequest = null;
3657
5219
  /**
3658
5220
  * DescribeNatFwVpcDnsLst返回参数结构体
3659
5221
  */
@@ -3839,41 +5401,29 @@ export interface ExpandCfwVerticalResponse {
3839
5401
  RequestId?: string;
3840
5402
  }
3841
5403
  /**
3842
- * DescribeNatAcRule请求参数结构体
5404
+ * DescribeBlockStaticList请求参数结构体
3843
5405
  */
3844
- export interface DescribeNatAcRuleRequest {
3845
- /**
3846
- * 每页条数
3847
- */
3848
- Limit: number;
3849
- /**
3850
- * 偏移值
3851
- */
3852
- Offset: number;
3853
- /**
3854
- * 需要查询的索引,特定场景使用,可不填
3855
- */
3856
- Index?: string;
5406
+ export interface DescribeBlockStaticListRequest {
3857
5407
  /**
3858
- * 过滤条件组合
5408
+ * 开始时间
3859
5409
  */
3860
- Filters?: Array<CommonFilter>;
5410
+ StartTime: string;
3861
5411
  /**
3862
- * 检索的起始时间,可不传
5412
+ * 结束时间
3863
5413
  */
3864
- StartTime?: string;
5414
+ EndTime: string;
3865
5415
  /**
3866
- * 检索的截止时间,可不传
5416
+ * 列表类型,只能是下面三种之一:port、address、ip
3867
5417
  */
3868
- EndTime?: string;
5418
+ QueryType: string;
3869
5419
  /**
3870
- * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
5420
+ * top数
3871
5421
  */
3872
- Order?: string;
5422
+ Top: number;
3873
5423
  /**
3874
- * 排序所用到的字段
5424
+ * 查询条件
3875
5425
  */
3876
- By?: string;
5426
+ SearchValue?: string;
3877
5427
  }
3878
5428
  /**
3879
5429
  * 告警中心概览数据
@@ -4015,12 +5565,54 @@ export interface SwitchListsData {
4015
5565
  * 扫描深度
4016
5566
  注意:此字段可能返回 null,表示取不到有效值。
4017
5567
  */
4018
- ScanMode: string;
5568
+ ScanMode: string;
5569
+ /**
5570
+ * 扫描状态
5571
+ 注意:此字段可能返回 null,表示取不到有效值。
5572
+ */
5573
+ ScanStatus: number;
5574
+ }
5575
+ /**
5576
+ * CreateVpcFwGroup请求参数结构体
5577
+ */
5578
+ export interface CreateVpcFwGroupRequest {
5579
+ /**
5580
+ * VPC防火墙(组)名称
5581
+ */
5582
+ Name: string;
5583
+ /**
5584
+ * 模式 1:CCN云联网模式;0:私有网络模式 2: sase 模式 3:ccn 高级模式 4: 私有网络(跨租户单边模式)
5585
+ */
5586
+ Mode: number;
5587
+ /**
5588
+ * 防火墙(组)下的防火墙实例列表
5589
+ */
5590
+ VpcFwInstances: Array<VpcFwInstance>;
5591
+ /**
5592
+ * 防火墙实例的开关模式
5593
+ 1: 单点互通
5594
+ 2: 多点互通
5595
+ 3: 全互通
5596
+ 4: 自定义路由
5597
+ */
5598
+ SwitchMode: number;
5599
+ /**
5600
+ * auto 自动选择防火墙网段
5601
+ 10.10.10.0/24 用户输入的防火墙网段
5602
+ */
5603
+ FwVpcCidr: string;
5604
+ /**
5605
+ * 云联网id ,适用于云联网模式
5606
+ */
5607
+ CcnId?: string;
5608
+ /**
5609
+ * 指定防火墙使用网段信息
5610
+ */
5611
+ FwCidrInfo?: FwCidrInfo;
4019
5612
  /**
4020
- * 扫描状态
4021
- 注意:此字段可能返回 null,表示取不到有效值。
5613
+ * 跨租户管理员模式 1管理员 2多账号
4022
5614
  */
4023
- ScanStatus: number;
5615
+ CrossUserMode?: string;
4024
5616
  }
4025
5617
  /**
4026
5618
  * CreateNatFwInstanceWithDomain请求参数结构体
@@ -4071,6 +5663,15 @@ export interface CreateNatFwInstanceWithDomainRequest {
4071
5663
  */
4072
5664
  FwCidrInfo?: FwCidrInfo;
4073
5665
  }
5666
+ /**
5667
+ * RemoveVpcAcRule请求参数结构体
5668
+ */
5669
+ export interface RemoveVpcAcRuleRequest {
5670
+ /**
5671
+ * 规则的uuid列表,可通过查询规则列表获取,注意:如果传入的是[-1]将删除所有规则
5672
+ */
5673
+ RuleUuids: Array<number | bigint>;
5674
+ }
4074
5675
  /**
4075
5676
  * DescribeResourceGroup返回参数结构体
4076
5677
  */
@@ -4101,6 +5702,10 @@ export interface DeleteAddressTemplateResponse {
4101
5702
  * CreateBlockIgnoreRuleList返回参数结构体
4102
5703
  */
4103
5704
  export interface CreateBlockIgnoreRuleListResponse {
5705
+ /**
5706
+ * 成功返回
5707
+ */
5708
+ List?: Array<IocListData>;
4104
5709
  /**
4105
5710
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4106
5711
  */
@@ -4128,6 +5733,15 @@ export interface ModifyResourceGroupResponse {
4128
5733
  */
4129
5734
  RequestId?: string;
4130
5735
  }
5736
+ /**
5737
+ * ModifyVpcFwGroup返回参数结构体
5738
+ */
5739
+ export interface ModifyVpcFwGroupResponse {
5740
+ /**
5741
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5742
+ */
5743
+ RequestId?: string;
5744
+ }
4131
5745
  /**
4132
5746
  * DeleteResourceGroup返回参数结构体
4133
5747
  */
@@ -4159,29 +5773,41 @@ export interface DeleteSecurityGroupRuleRequest {
4159
5773
  IsDelReverse?: number;
4160
5774
  }
4161
5775
  /**
4162
- * DescribeBlockStaticList请求参数结构体
5776
+ * DescribeNatAcRule请求参数结构体
4163
5777
  */
4164
- export interface DescribeBlockStaticListRequest {
5778
+ export interface DescribeNatAcRuleRequest {
4165
5779
  /**
4166
- * 开始时间
5780
+ * 每页条数
4167
5781
  */
4168
- StartTime: string;
5782
+ Limit: number;
4169
5783
  /**
4170
- * 结束时间
5784
+ * 偏移值
4171
5785
  */
4172
- EndTime: string;
5786
+ Offset: number;
4173
5787
  /**
4174
- * 列表类型,只能是下面三种之一:port、address、ip
5788
+ * 需要查询的索引,特定场景使用,可不填
4175
5789
  */
4176
- QueryType: string;
5790
+ Index?: string;
4177
5791
  /**
4178
- * top数
5792
+ * 过滤条件组合
4179
5793
  */
4180
- Top: number;
5794
+ Filters?: Array<CommonFilter>;
4181
5795
  /**
4182
- * 查询条件
5796
+ * 检索的起始时间,可不传
4183
5797
  */
4184
- SearchValue?: string;
5798
+ StartTime?: string;
5799
+ /**
5800
+ * 检索的截止时间,可不传
5801
+ */
5802
+ EndTime?: string;
5803
+ /**
5804
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
5805
+ */
5806
+ Order?: string;
5807
+ /**
5808
+ * 排序所用到的字段
5809
+ */
5810
+ By?: string;
4185
5811
  }
4186
5812
  /**
4187
5813
  * vpc的防火墙网段
@@ -4232,6 +5858,95 @@ export interface CreateAcRulesResponse {
4232
5858
  */
4233
5859
  RequestId?: string;
4234
5860
  }
5861
+ /**
5862
+ * NAT防火墙开关列表数据
5863
+ */
5864
+ export interface NatSwitchListData {
5865
+ /**
5866
+ * 列表ID
5867
+ */
5868
+ Id?: number;
5869
+ /**
5870
+ * 子网ID
5871
+ 注意:此字段可能返回 null,表示取不到有效值。
5872
+ */
5873
+ SubnetId?: string;
5874
+ /**
5875
+ * 子网名称
5876
+ 注意:此字段可能返回 null,表示取不到有效值。
5877
+ */
5878
+ SubnetName?: string;
5879
+ /**
5880
+ * IPv4 CIDR
5881
+ 注意:此字段可能返回 null,表示取不到有效值。
5882
+ */
5883
+ SubnetCidr?: string;
5884
+ /**
5885
+ * 关联路由ID
5886
+ 注意:此字段可能返回 null,表示取不到有效值。
5887
+ */
5888
+ RouteId?: string;
5889
+ /**
5890
+ * 关联路由名称
5891
+ 注意:此字段可能返回 null,表示取不到有效值。
5892
+ */
5893
+ RouteName?: string;
5894
+ /**
5895
+ * 云服务器个数
5896
+ 注意:此字段可能返回 null,表示取不到有效值。
5897
+ */
5898
+ CvmNum?: number;
5899
+ /**
5900
+ * 所属VPC ID
5901
+ 注意:此字段可能返回 null,表示取不到有效值。
5902
+ */
5903
+ VpcId?: string;
5904
+ /**
5905
+ * 所属VPC名称
5906
+ 注意:此字段可能返回 null,表示取不到有效值。
5907
+ */
5908
+ VpcName?: string;
5909
+ /**
5910
+ * 是否生效
5911
+ 注意:此字段可能返回 null,表示取不到有效值。
5912
+ */
5913
+ Enable?: number;
5914
+ /**
5915
+ * 开关状态
5916
+ 注意:此字段可能返回 null,表示取不到有效值。
5917
+ */
5918
+ Status?: number;
5919
+ /**
5920
+ * NAT网关ID
5921
+ 注意:此字段可能返回 null,表示取不到有效值。
5922
+ */
5923
+ NatId?: string;
5924
+ /**
5925
+ * NAT网关名称
5926
+ 注意:此字段可能返回 null,表示取不到有效值。
5927
+ */
5928
+ NatName?: string;
5929
+ /**
5930
+ * NAT防火墙实例ID
5931
+ 注意:此字段可能返回 null,表示取不到有效值。
5932
+ */
5933
+ NatInsId?: string;
5934
+ /**
5935
+ * NAT防火墙实例名称
5936
+ 注意:此字段可能返回 null,表示取不到有效值。
5937
+ */
5938
+ NatInsName?: string;
5939
+ /**
5940
+ * 地域
5941
+ 注意:此字段可能返回 null,表示取不到有效值。
5942
+ */
5943
+ Region?: string;
5944
+ /**
5945
+ * 开关是否异常,0:正常,1:异常
5946
+ 注意:此字段可能返回 null,表示取不到有效值。
5947
+ */
5948
+ Abnormal?: number;
5949
+ }
4235
5950
  /**
4236
5951
  * DescribeSwitchLists返回参数结构体
4237
5952
  */
@@ -4284,6 +5999,19 @@ export interface ModifyAcRuleRequest {
4284
5999
  */
4285
6000
  Area?: string;
4286
6001
  }
6002
+ /**
6003
+ * RemoveVpcAcRule返回参数结构体
6004
+ */
6005
+ export interface RemoveVpcAcRuleResponse {
6006
+ /**
6007
+ * 删除成功后返回被删除策略的uuid列表
6008
+ */
6009
+ RuleUuids: Array<number | bigint>;
6010
+ /**
6011
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6012
+ */
6013
+ RequestId?: string;
6014
+ }
4287
6015
  /**
4288
6016
  * DescribeNatFwInstancesInfo返回参数结构体
4289
6017
  */
@@ -4364,17 +6092,102 @@ export interface ModifySecurityGroupRuleResponse {
4364
6092
  RequestId?: string;
4365
6093
  }
4366
6094
  /**
4367
- * 设置nat防火墙的vpc dns 接入开关
6095
+ * DescribeFwEdgeIps请求参数结构体
4368
6096
  */
4369
- export interface DnsVpcSwitch {
6097
+ export interface DescribeFwEdgeIpsRequest {
4370
6098
  /**
4371
- * vpc id
6099
+ * 过滤条件组合
4372
6100
  */
4373
- VpcId: string;
6101
+ Filters?: Array<CommonFilter>;
4374
6102
  /**
4375
- * 0:设置为关闭 1:设置为打开
6103
+ * 每页条数
4376
6104
  */
4377
- Status: number;
6105
+ Limit?: number;
6106
+ /**
6107
+ * 偏移值
6108
+ */
6109
+ Offset?: number;
6110
+ /**
6111
+ * 检索的起始时间,可不传
6112
+ */
6113
+ StartTime?: string;
6114
+ /**
6115
+ * 检索的截止时间,可不传
6116
+ */
6117
+ EndTime?: string;
6118
+ /**
6119
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
6120
+ */
6121
+ Order?: string;
6122
+ /**
6123
+ * 排序所用到的字段
6124
+ */
6125
+ By?: string;
6126
+ }
6127
+ /**
6128
+ * 创建互联网边界规则参数结构
6129
+ */
6130
+ export interface CreateRuleItem {
6131
+ /**
6132
+ * 访问源示例: net:IP/CIDR(192.168.0.2)
6133
+ */
6134
+ SourceContent: string;
6135
+ /**
6136
+ * 访问源类型:入向规则时类型可以为 ip,net,template,location;出向规则时可以为 ip,net,template,instance,group,tag
6137
+ */
6138
+ SourceType: string;
6139
+ /**
6140
+ * 访问目的示例: net:IP/CIDR(192.168.0.2) domain:域名规则,例如*.qq.com
6141
+ */
6142
+ TargetContent: string;
6143
+ /**
6144
+ * 访问目的类型:入向规则时类型可以为ip,net,template,instance,group,tag;出向规则时可以为 ip,net,domain,template,location
6145
+ */
6146
+ TargetType: string;
6147
+ /**
6148
+ * 协议,可选的值: TCP UDP ICMP ANY HTTP HTTPS HTTP/HTTPS SMTP SMTPS SMTP/SMTPS FTP DNS
6149
+ */
6150
+ Protocol: string;
6151
+ /**
6152
+ * 访问控制策略中设置的流量通过云防火墙的方式。取值: accept:放行 drop:拒绝 log:观察
6153
+ */
6154
+ RuleAction: string;
6155
+ /**
6156
+ * 访问控制策略的端口。取值: -1/-1:全部端口 80:80端口
6157
+ */
6158
+ Port: string;
6159
+ /**
6160
+ * 规则方向:1,入站;0,出站
6161
+ */
6162
+ Direction: number;
6163
+ /**
6164
+ * 规则序号
6165
+ */
6166
+ OrderIndex: number;
6167
+ /**
6168
+ * 规则对应的唯一id,创建规则时无需填写
6169
+ */
6170
+ Uuid?: number;
6171
+ /**
6172
+ * 规则状态,true表示启用,false表示禁用
6173
+ */
6174
+ Enable?: string;
6175
+ /**
6176
+ * 描述
6177
+ */
6178
+ Description?: string;
6179
+ /**
6180
+ * all
6181
+ */
6182
+ Scope?: string;
6183
+ /**
6184
+ * 0,正常规则添加;1,入侵检测添加
6185
+ */
6186
+ RuleSource?: number;
6187
+ /**
6188
+ * 告警Id
6189
+ */
6190
+ LogId?: string;
4378
6191
  }
4379
6192
  /**
4380
6193
  * DescribeResourceGroup请求参数结构体
@@ -4476,6 +6289,24 @@ export interface DescribeAssociatedInstanceListRequest {
4476
6289
  */
4477
6290
  Type?: string;
4478
6291
  }
6292
+ /**
6293
+ * ModifyNatInstance返回参数结构体
6294
+ */
6295
+ export interface ModifyNatInstanceResponse {
6296
+ /**
6297
+ * 0 正常
6298
+ -1 异常
6299
+ */
6300
+ Status?: number;
6301
+ /**
6302
+ * nat实例唯一ID
6303
+ */
6304
+ NatInstanceId?: string;
6305
+ /**
6306
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6307
+ */
6308
+ RequestId?: string;
6309
+ }
4479
6310
  /**
4480
6311
  * ModifyTableStatus请求参数结构体
4481
6312
  */
@@ -4524,3 +6355,45 @@ export interface DescribeGuideScanInfoResponse {
4524
6355
  */
4525
6356
  RequestId?: string;
4526
6357
  }
6358
+ /**
6359
+ * vpc 防火墙下单防火墙实例结构体
6360
+ */
6361
+ export interface VpcFwInstance {
6362
+ /**
6363
+ * 防火墙实例名称
6364
+ */
6365
+ Name: string;
6366
+ /**
6367
+ * 私有网络模式下接入的VpcId列表;仅私有网络模式使用
6368
+ */
6369
+ VpcIds: Array<string>;
6370
+ /**
6371
+ * 部署地域信息
6372
+ */
6373
+ FwDeploy: FwDeploy;
6374
+ /**
6375
+ * 防火墙实例ID (编辑场景传)
6376
+ */
6377
+ FwInsId?: string;
6378
+ }
6379
+ /**
6380
+ * DescribeAddressTemplateList返回参数结构体
6381
+ */
6382
+ export interface DescribeAddressTemplateListResponse {
6383
+ /**
6384
+ * 模板总数
6385
+ */
6386
+ Total?: number;
6387
+ /**
6388
+ * 模板列表数据
6389
+ */
6390
+ Data?: Array<TemplateListInfo>;
6391
+ /**
6392
+ * 模板名称列表
6393
+ */
6394
+ NameList?: Array<string>;
6395
+ /**
6396
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6397
+ */
6398
+ RequestId?: string;
6399
+ }