tencentcloud-sdk-nodejs 4.1.274 → 4.1.275

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 (36) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cfw/v20190904/cfw_client.js +26 -2
  3. package/es/services/goosefs/v20220519/goosefs_client.js +3 -0
  4. package/package.json +1 -1
  5. package/tencentcloud/common/sdk_version.d.ts +1 -1
  6. package/tencentcloud/common/sdk_version.js +1 -1
  7. package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +1 -1
  8. package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +1 -1
  9. package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +12 -12
  10. package/tencentcloud/services/apis/v20240801/apis_models.d.ts +105 -93
  11. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +1 -1
  12. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +35 -3
  13. package/tencentcloud/services/cfw/v20190904/cfw_client.js +51 -3
  14. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +800 -226
  15. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +12 -0
  16. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
  17. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +49 -37
  18. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2 -2
  19. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +5 -5
  20. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -1
  21. package/tencentcloud/services/ess/v20201111/ess_client.js +1 -1
  22. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +23 -53
  23. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +50 -173
  24. package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +2 -2
  25. package/tencentcloud/services/goosefs/v20220519/goosefs_client.d.ts +5 -1
  26. package/tencentcloud/services/goosefs/v20220519/goosefs_client.js +6 -0
  27. package/tencentcloud/services/goosefs/v20220519/goosefs_models.d.ts +26 -0
  28. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +4 -0
  29. package/tencentcloud/services/rce/v20260130/rce_models.d.ts +3 -3
  30. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +3 -3
  31. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +2 -2
  32. package/tencentcloud/services/teo/v20220901/teo_client.js +2 -2
  33. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +3 -3
  34. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
  35. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +362 -182
  36. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +93 -173
@@ -1,19 +1,19 @@
1
1
  /**
2
- * ModifyEWRuleStatus返回参数结构体
2
+ * ModifyFwGroupSwitch请求参数结构体
3
3
  */
4
- export interface ModifyEWRuleStatusResponse {
4
+ export interface ModifyFwGroupSwitchRequest {
5
5
  /**
6
- * 状态值,0:修改成功,非0:修改失败
6
+ * <p>打开或关闭开关<br>0:关闭开关<br>1:打开开关</p>
7
7
  */
8
- ReturnCode?: number;
8
+ Enable: number;
9
9
  /**
10
- * 状态信息,success:查询成功,fail:查询失败
10
+ * <p>是否操作全部开关 0 不操作全部开关,1 操作全部开关</p>
11
11
  */
12
- ReturnMsg?: string;
12
+ AllSwitch: number;
13
13
  /**
14
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14
+ * <p>开关列表</p>
15
15
  */
16
- RequestId?: string;
16
+ SwitchList?: Array<FwGroupSwitch>;
17
17
  }
18
18
  /**
19
19
  * DescribeCfwStatusMonitor请求参数结构体
@@ -92,6 +92,19 @@ export interface DescribeCfwStatusMonitorRequest {
92
92
  */
93
93
  Filters?: Array<CfwStatusMonitorFilter>;
94
94
  }
95
+ /**
96
+ * CheckClusterNatFwPreAccess请求参数结构体
97
+ */
98
+ export interface CheckClusterNatFwPreAccessRequest {
99
+ /**
100
+ * <p>NAT CCN 开关配置 JSON 字符串,与 OpenClusterNatFwSwitch 的 NatCcnSwitch 完全一致。SwitchMode 必须为 1(自动接入),RoutingMode 必须为 1(策略路由)。</p>
101
+ */
102
+ NatCcnSwitch: NatCcnSwitchConfig;
103
+ /**
104
+ * <p>预接入模式</p><p>枚举值:</p><ul><li>open: 开启防火墙前预接入检查</li><li>modify: 编辑修改防火墙开关时预接入检查</li></ul>
105
+ */
106
+ CheckMode: string;
107
+ }
95
108
  /**
96
109
  * 防火墙部署输入参数列表
97
110
  */
@@ -717,21 +730,107 @@ export interface AddEnterpriseSecurityGroupRulesRequest {
717
730
  IsUseId?: number;
718
731
  }
719
732
  /**
720
- * DeleteSecurityGroupRule返回参数结构体
733
+ * 访问控制列表对象
721
734
  */
722
- export interface DeleteSecurityGroupRuleResponse {
735
+ export interface AcListsData {
723
736
  /**
724
- * 状态值,0:成功,非0:失败
737
+ * 规则id
738
+ */
739
+ Id?: number;
740
+ /**
741
+ * 访问源
742
+ */
743
+ SourceIp?: string;
744
+ /**
745
+ * 访问目的
746
+ */
747
+ TargetIp?: string;
748
+ /**
749
+ * 协议
750
+ */
751
+ Protocol?: string;
752
+ /**
753
+ * 端口
754
+ */
755
+ Port?: string;
756
+ /**
757
+ * 策略
758
+ */
759
+ Strategy?: number;
760
+ /**
761
+ * 描述
762
+ */
763
+ Detail?: string;
764
+ /**
765
+ * 命中次数
766
+ */
767
+ Count?: number;
768
+ /**
769
+ * 执行顺序
770
+ */
771
+ OrderIndex?: number;
772
+ /**
773
+ * 告警规则id
774
+ */
775
+ LogId?: string;
776
+ /**
777
+ * 规则开关状态 1打开 0关闭
725
778
  */
726
779
  Status?: number;
727
780
  /**
728
- * 返回多余的信息
781
+ * 规则源类型
729
782
  */
730
- Info?: string;
783
+ SrcType?: number;
731
784
  /**
732
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
785
+ * 规则目的类型
733
786
  */
734
- RequestId?: string;
787
+ DstType?: number;
788
+ /**
789
+ * 规则唯一ID
790
+ */
791
+ Uuid?: string;
792
+ /**
793
+ * 规则有效性
794
+ 1 有效
795
+ 0 无效
796
+ */
797
+ Invalid?: number;
798
+ /**
799
+ * 是否地域规则
800
+ */
801
+ IsRegion?: number;
802
+ /**
803
+ * 云厂商代码
804
+ */
805
+ CloudCode?: string;
806
+ /**
807
+ * 自动化助手信息
808
+ */
809
+ AutoTask?: string;
810
+ /**
811
+ * 实例名称
812
+ */
813
+ InstanceName?: string;
814
+ /**
815
+ * 地域码信息
816
+ */
817
+ RegionCode?: string;
818
+ /**
819
+ * 国家代码
820
+ */
821
+ Country?: number;
822
+ /**
823
+ * 城市代码
824
+ */
825
+ City?: number;
826
+ /**
827
+ * 国家名称
828
+ */
829
+ RegName1?: string;
830
+ /**
831
+ * 城市名称
832
+ */
833
+ RegName2?: string;
735
834
  }
736
835
  /**
737
836
  * ModifyIpsModeSwitch请求参数结构体
@@ -1081,6 +1180,19 @@ export interface CreateAlertCenterOmitRequest {
1081
1180
  */
1082
1181
  HandleEventIdList?: Array<string>;
1083
1182
  }
1183
+ /**
1184
+ * 预接入检查项定义
1185
+ */
1186
+ export interface ClusterFwPreAccessCheckItem {
1187
+ /**
1188
+ * 检查项 key,与查询接口 CheckResult.Stages[].Stage 一一对应
1189
+ */
1190
+ Stage?: string;
1191
+ /**
1192
+ * 该检查项的展示文案,已按请求的 Language 返回中文或英文
1193
+ */
1194
+ Description?: string;
1195
+ }
1084
1196
  /**
1085
1197
  * NAT防火墙Dnat规则列表
1086
1198
  */
@@ -1350,6 +1462,23 @@ export interface DescribeNatFwInstancesInfoRequest {
1350
1462
  */
1351
1463
  Limit?: number;
1352
1464
  }
1465
+ /**
1466
+ * 安全组地域配置
1467
+ */
1468
+ export interface SecurityGroupRegion {
1469
+ /**
1470
+ * <p>地域</p>
1471
+ */
1472
+ Region?: string;
1473
+ /**
1474
+ * <p>地域Id</p>
1475
+ */
1476
+ RegionId?: string;
1477
+ /**
1478
+ * <p>地域中文</p>
1479
+ */
1480
+ RegionName?: string;
1481
+ }
1353
1482
  /**
1354
1483
  * DescribeTableStatus请求参数结构体
1355
1484
  */
@@ -1371,6 +1500,10 @@ export interface DescribeTableStatusRequest {
1371
1500
  */
1372
1501
  Direction?: number;
1373
1502
  }
1503
+ /**
1504
+ * IPS规则展示字段相关结构
1505
+ */
1506
+ export type IpsRuleDetailNew = null;
1374
1507
  /**
1375
1508
  * ModifyAddressTemplate返回参数结构体
1376
1509
  */
@@ -1750,6 +1883,15 @@ export interface RemoveEnterpriseSecurityGroupRuleRequest {
1750
1883
  */
1751
1884
  CfwAiAgentOperationSource?: string;
1752
1885
  }
1886
+ /**
1887
+ * UpdateClusterVpcFw返回参数结构体
1888
+ */
1889
+ export interface UpdateClusterVpcFwResponse {
1890
+ /**
1891
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1892
+ */
1893
+ RequestId?: string;
1894
+ }
1753
1895
  /**
1754
1896
  * DescribeSecurityGroupList返回参数结构体
1755
1897
  */
@@ -2091,6 +2233,67 @@ export interface ModifyVpcAcRuleResponse {
2091
2233
  */
2092
2234
  RequestId?: string;
2093
2235
  }
2236
+ /**
2237
+ * DescribeBlockList请求参数结构体
2238
+ */
2239
+ export interface DescribeBlockListRequest {
2240
+ /**
2241
+ * 偏移量
2242
+ */
2243
+ Offset: number;
2244
+ /**
2245
+ * 长度
2246
+ */
2247
+ Limit: number;
2248
+ /**
2249
+ * 频率类型
2250
+ */
2251
+ StatTimeSpan: number;
2252
+ /**
2253
+ * 开始时间
2254
+ */
2255
+ StartTime: string;
2256
+ /**
2257
+ * 结束时间
2258
+ */
2259
+ EndTime: string;
2260
+ /**
2261
+ * 查询条件
2262
+ */
2263
+ SearchValue?: string;
2264
+ /**
2265
+ * 升序降序
2266
+ */
2267
+ Order?: string;
2268
+ /**
2269
+ * 排序字段
2270
+ */
2271
+ By?: string;
2272
+ /**
2273
+ * 方向 1 入 0出
2274
+ */
2275
+ Direction?: string;
2276
+ /**
2277
+ * 是否处置 1处置 0不是
2278
+ */
2279
+ ByPass?: string;
2280
+ /**
2281
+ * 来源
2282
+ */
2283
+ Source?: string;
2284
+ /**
2285
+ * 国家 1国内
2286
+ */
2287
+ Country?: string;
2288
+ /**
2289
+ * 资产id
2290
+ */
2291
+ AssetId?: string;
2292
+ /**
2293
+ * 日志来源 move:vpc间防火墙
2294
+ */
2295
+ LogSource?: string;
2296
+ }
2094
2297
  /**
2095
2298
  * ModifyBlockIgnoreRuleNew请求参数结构体
2096
2299
  */
@@ -2511,6 +2714,20 @@ export interface DescribeClusterVpcFwSwitchsRequest {
2511
2714
  */
2512
2715
  By?: string;
2513
2716
  }
2717
+ /**
2718
+ * DescribeFwGroupIdNames返回参数结构体
2719
+ */
2720
+ export interface DescribeFwGroupIdNamesResponse {
2721
+ /**
2722
+ * <p>防火墙(组列表)</p>
2723
+ 注意:此字段可能返回 null,表示取不到有效值。
2724
+ */
2725
+ Data?: Array<FwGroupIdName>;
2726
+ /**
2727
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2728
+ */
2729
+ RequestId?: string;
2730
+ }
2514
2731
  /**
2515
2732
  * DescribeCfwAlerts请求参数结构体
2516
2733
  */
@@ -3619,129 +3836,43 @@ export interface DescribeCfwAnalysisDataRequest {
3619
3836
  SkipSections?: Array<string>;
3620
3837
  }
3621
3838
  /**
3622
- * 访问控制列表对象
3839
+ * DeleteSecurityGroupRule返回参数结构体
3623
3840
  */
3624
- export interface AcListsData {
3841
+ export interface DeleteSecurityGroupRuleResponse {
3625
3842
  /**
3626
- * 规则id
3843
+ * 状态值,0:成功,非0:失败
3627
3844
  */
3628
- Id?: number;
3845
+ Status?: number;
3629
3846
  /**
3630
- * 访问源
3847
+ * 返回多余的信息
3631
3848
  */
3632
- SourceIp?: string;
3849
+ Info?: string;
3633
3850
  /**
3634
- * 访问目的
3851
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3635
3852
  */
3636
- TargetIp?: string;
3853
+ RequestId?: string;
3854
+ }
3855
+ /**
3856
+ * 执行顺序对象
3857
+ */
3858
+ export interface SequenceData {
3637
3859
  /**
3638
- * 协议
3860
+ * 规则Id值
3639
3861
  */
3640
- Protocol?: string;
3862
+ Id: number;
3641
3863
  /**
3642
- * 端口
3864
+ * 修改前执行顺序
3643
3865
  */
3644
- Port?: string;
3866
+ OrderIndex: number;
3645
3867
  /**
3646
- * 策略
3868
+ * 修改后执行顺序
3647
3869
  */
3648
- Strategy?: number;
3649
- /**
3650
- * 描述
3651
- */
3652
- Detail?: string;
3653
- /**
3654
- * 命中次数
3655
- */
3656
- Count?: number;
3657
- /**
3658
- * 执行顺序
3659
- */
3660
- OrderIndex?: number;
3661
- /**
3662
- * 告警规则id
3663
- */
3664
- LogId?: string;
3665
- /**
3666
- * 规则开关状态 1打开 0关闭
3667
- */
3668
- Status?: number;
3669
- /**
3670
- * 规则源类型
3671
- */
3672
- SrcType?: number;
3673
- /**
3674
- * 规则目的类型
3675
- */
3676
- DstType?: number;
3677
- /**
3678
- * 规则唯一ID
3679
- */
3680
- Uuid?: string;
3681
- /**
3682
- * 规则有效性
3683
- 1 有效
3684
- 0 无效
3685
- */
3686
- Invalid?: number;
3687
- /**
3688
- * 是否地域规则
3689
- */
3690
- IsRegion?: number;
3691
- /**
3692
- * 云厂商代码
3693
- */
3694
- CloudCode?: string;
3695
- /**
3696
- * 自动化助手信息
3697
- */
3698
- AutoTask?: string;
3699
- /**
3700
- * 实例名称
3701
- */
3702
- InstanceName?: string;
3703
- /**
3704
- * 地域码信息
3705
- */
3706
- RegionCode?: string;
3707
- /**
3708
- * 国家代码
3709
- */
3710
- Country?: number;
3711
- /**
3712
- * 城市代码
3713
- */
3714
- City?: number;
3715
- /**
3716
- * 国家名称
3717
- */
3718
- RegName1?: string;
3719
- /**
3720
- * 城市名称
3721
- */
3722
- RegName2?: string;
3723
- }
3724
- /**
3725
- * 执行顺序对象
3726
- */
3727
- export interface SequenceData {
3728
- /**
3729
- * 规则Id值
3730
- */
3731
- Id: number;
3732
- /**
3733
- * 修改前执行顺序
3734
- */
3735
- OrderIndex: number;
3736
- /**
3737
- * 修改后执行顺序
3738
- */
3739
- NewOrderIndex: number;
3740
- }
3741
- /**
3742
- * DescribeSwitchError请求参数结构体
3743
- */
3744
- export interface DescribeSwitchErrorRequest {
3870
+ NewOrderIndex: number;
3871
+ }
3872
+ /**
3873
+ * DescribeSwitchError请求参数结构体
3874
+ */
3875
+ export interface DescribeSwitchErrorRequest {
3745
3876
  /**
3746
3877
  * <p>EDGE_FW : 互联网边界防火墙 , NDR: 流量分析,VPC_FW:VPC边界防火墙</p>
3747
3878
  */
@@ -3876,13 +4007,148 @@ export interface DescribeNDRAssetIdentificationCursorListRequest {
3876
4007
  Filters?: Array<OperatorFilter>;
3877
4008
  }
3878
4009
  /**
3879
- * UpdateClusterVpcFw返回参数结构体
4010
+ * 告警中心-阻断事件结构体
3880
4011
  */
3881
- export interface UpdateClusterVpcFwResponse {
4012
+ export interface BlockInfo {
3882
4013
  /**
3883
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4014
+ * 源IP
3884
4015
  */
3885
- RequestId?: string;
4016
+ SrcIP?: string;
4017
+ /**
4018
+ * 目的ip
4019
+ */
4020
+ DstIP?: string;
4021
+ /**
4022
+ * 端口
4023
+ */
4024
+ DstPort?: string;
4025
+ /**
4026
+ * appid信息
4027
+ */
4028
+ AppID?: string;
4029
+ /**
4030
+ * 资产id
4031
+ */
4032
+ AssetId?: string;
4033
+ /**
4034
+ * 资产名称
4035
+ */
4036
+ AssetName?: string;
4037
+ /**
4038
+ * 地域
4039
+ */
4040
+ Zone?: string;
4041
+ /**
4042
+ * 最晚时间
4043
+ */
4044
+ MaxDate?: string;
4045
+ /**
4046
+ * 最近时间
4047
+ */
4048
+ MinDate?: string;
4049
+ /**
4050
+ * 方向 1入站 0出战
4051
+ */
4052
+ Direction?: number;
4053
+ /**
4054
+ * 来源 1拦截列表,2虚拟补丁,3威胁情报,4基础防御
4055
+ */
4056
+ BlockSource?: number;
4057
+ /**
4058
+ * 国加
4059
+ */
4060
+ Country?: string;
4061
+ /**
4062
+ * 次数
4063
+ */
4064
+ Count?: number;
4065
+ /**
4066
+ * 拦截频率
4067
+ */
4068
+ AvgCount?: number;
4069
+ /**
4070
+ * 置顶位
4071
+ */
4072
+ IsTop?: number;
4073
+ /**
4074
+ * 记录唯一标识
4075
+ */
4076
+ UniqueId?: string;
4077
+ /**
4078
+ * 1是 0不是
4079
+ */
4080
+ ByPass?: number;
4081
+ /**
4082
+ * 1是 0不是
4083
+ */
4084
+ Block?: number;
4085
+ /**
4086
+ * 1是 0不是
4087
+ */
4088
+ Ignore?: number;
4089
+ /**
4090
+ * WhiteTag信息
4091
+ */
4092
+ WhiteTag?: string;
4093
+ /**
4094
+ * vpc间防火墙日志,目的资产id
4095
+ 注意:此字段可能返回 null,表示取不到有效值。
4096
+ */
4097
+ DstAssetId?: string;
4098
+ /**
4099
+ * vpc间防火墙日志,目的资产名称
4100
+ 注意:此字段可能返回 null,表示取不到有效值。
4101
+ */
4102
+ DstAssetName?: string;
4103
+ /**
4104
+ * vpc间防火墙日志,源VPC id
4105
+ 注意:此字段可能返回 null,表示取不到有效值。
4106
+ */
4107
+ SrcVpc?: string;
4108
+ /**
4109
+ * vpc间防火墙日志,源VPC名称
4110
+ 注意:此字段可能返回 null,表示取不到有效值。
4111
+ */
4112
+ SrcVpcName?: string;
4113
+ /**
4114
+ * vpc间防火墙日志,目的VPC id
4115
+ 注意:此字段可能返回 null,表示取不到有效值。
4116
+ */
4117
+ DstVpc?: string;
4118
+ /**
4119
+ * vpc间防火墙日志,目的VPC名称
4120
+ 注意:此字段可能返回 null,表示取不到有效值。
4121
+ */
4122
+ DstVpcName?: string;
4123
+ /**
4124
+ * vpc间防火墙开关边id
4125
+ 注意:此字段可能返回 null,表示取不到有效值。
4126
+ */
4127
+ EdgeId?: string;
4128
+ /**
4129
+ * vpc间防火墙开关边名称
4130
+ 注意:此字段可能返回 null,表示取不到有效值。
4131
+ */
4132
+ EdgeName?: string;
4133
+ /**
4134
+ * 日志来源 move:vpc间防火墙
4135
+ 注意:此字段可能返回 null,表示取不到有效值。
4136
+ */
4137
+ LogSource?: string;
4138
+ /**
4139
+ * 是否加入隔离列表,1是 0不是
4140
+ 注意:此字段可能返回 null,表示取不到有效值。
4141
+ */
4142
+ Isolate?: number;
4143
+ /**
4144
+ * 是否加入隔离列表,1是 0不是
4145
+ */
4146
+ Hide?: number;
4147
+ /**
4148
+ * 域名
4149
+ 注意:此字段可能返回 null,表示取不到有效值。
4150
+ */
4151
+ Domain?: string;
3886
4152
  }
3887
4153
  /**
3888
4154
  * DescribeCcnAssociatedInstances请求参数结构体
@@ -4083,23 +4349,6 @@ export interface DeleteResourceGroupRequest {
4083
4349
  */
4084
4350
  GroupId: string;
4085
4351
  }
4086
- /**
4087
- * ModifyFwGroupSwitch请求参数结构体
4088
- */
4089
- export interface ModifyFwGroupSwitchRequest {
4090
- /**
4091
- * <p>打开或关闭开关<br>0:关闭开关<br>1:打开开关</p>
4092
- */
4093
- Enable: number;
4094
- /**
4095
- * <p>是否操作全部开关 0 不操作全部开关,1 操作全部开关</p>
4096
- */
4097
- AllSwitch: number;
4098
- /**
4099
- * <p>开关列表</p>
4100
- */
4101
- SwitchList?: Array<FwGroupSwitch>;
4102
- }
4103
4352
  /**
4104
4353
  * CreateAddressTemplate返回参数结构体
4105
4354
  */
@@ -4385,6 +4634,19 @@ export interface ModifyNatFwReSelectRequest {
4385
4634
  */
4386
4635
  FwCidrInfo?: FwCidrInfo;
4387
4636
  }
4637
+ /**
4638
+ * CloseClusterNatFwSwitch请求参数结构体
4639
+ */
4640
+ export interface CloseClusterNatFwSwitchRequest {
4641
+ /**
4642
+ * <p>NAT防火墙实例ID</p>
4643
+ */
4644
+ NatInsId: string;
4645
+ /**
4646
+ * <p>云联网实例ID</p>
4647
+ */
4648
+ CcnId: string;
4649
+ }
4388
4650
  /**
4389
4651
  * ModifyFwGroupSwitch返回参数结构体
4390
4652
  */
@@ -4978,6 +5240,10 @@ export interface ModifySecurityGroupRuleResponse {
4978
5240
  */
4979
5241
  RequestId?: string;
4980
5242
  }
5243
+ /**
5244
+ * DescribeSecurityGroupRegionList请求参数结构体
5245
+ */
5246
+ export type DescribeSecurityGroupRegionListRequest = null;
4981
5247
  /**
4982
5248
  * DescribeSwitchError返回参数结构体
4983
5249
  */
@@ -5459,6 +5725,23 @@ export interface DescribeSourceAssetResponse {
5459
5725
  */
5460
5726
  RequestId?: string;
5461
5727
  }
5728
+ /**
5729
+ * DescribeVpcAclEdgeRange返回参数结构体
5730
+ */
5731
+ export interface DescribeVpcAclEdgeRangeResponse {
5732
+ /**
5733
+ * 总条数
5734
+ */
5735
+ TotalCount: number;
5736
+ /**
5737
+ * 内网间访问控制规则的生效范围列表
5738
+ */
5739
+ EdgeRanges: Array<EdgeRange>;
5740
+ /**
5741
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5742
+ */
5743
+ RequestId?: string;
5744
+ }
5462
5745
  /**
5463
5746
  * ModifyNatFwVpcDnsSwitch请求参数结构体
5464
5747
  */
@@ -5569,6 +5852,24 @@ export interface DescribeUnHandleEventTabListRequest {
5569
5852
  */
5570
5853
  AssetID?: string;
5571
5854
  }
5855
+ /**
5856
+ * DescribeNatRuleScopes返回参数结构体
5857
+ */
5858
+ export interface DescribeNatRuleScopesResponse {
5859
+ /**
5860
+ * 可选生效范围总数
5861
+ */
5862
+ Total?: number;
5863
+ /**
5864
+ * 生效范围列表
5865
+ 注意:此字段可能返回 null,表示取不到有效值。
5866
+ */
5867
+ ScopeItems?: Array<RuleScopeInfo>;
5868
+ /**
5869
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5870
+ */
5871
+ RequestId?: string;
5872
+ }
5572
5873
  /**
5573
5874
  * DescribeAssociatedInstanceList返回参数结构体
5574
5875
  */
@@ -6175,6 +6476,10 @@ export interface SwitchError {
6175
6476
  */
6176
6477
  InsertTime?: string;
6177
6478
  }
6479
+ /**
6480
+ * DescribeNatRuleScopes请求参数结构体
6481
+ */
6482
+ export type DescribeNatRuleScopesRequest = null;
6178
6483
  /**
6179
6484
  * DescribeCfwRuleOptimization请求参数结构体
6180
6485
  */
@@ -6375,13 +6680,28 @@ export interface DescribeNatFwInfoCountResponse {
6375
6680
  RequestId?: string;
6376
6681
  }
6377
6682
  /**
6378
- * ModifyVpcFwGroup请求参数结构体
6683
+ * 规则生效范围信息
6379
6684
  */
6380
- export interface ModifyVpcFwGroupRequest {
6685
+ export interface RuleScopeInfo {
6381
6686
  /**
6382
- * <p>编辑的防火墙(组)ID</p>
6687
+ * NAT边界防火墙:ALL,全局生效;ap-guangzhou,生效的地域;cfwnat-xxx,生效基于实例维度
6688
+ 注意:此字段可能返回 null,表示取不到有效值。
6383
6689
  */
6384
- FwGroupId: string;
6690
+ Scope?: string;
6691
+ /**
6692
+ * 生效范围描述
6693
+ 注意:此字段可能返回 null,表示取不到有效值。
6694
+ */
6695
+ ScopeDesc?: string;
6696
+ }
6697
+ /**
6698
+ * ModifyVpcFwGroup请求参数结构体
6699
+ */
6700
+ export interface ModifyVpcFwGroupRequest {
6701
+ /**
6702
+ * <p>编辑的防火墙(组)ID</p>
6703
+ */
6704
+ FwGroupId: string;
6385
6705
  /**
6386
6706
  * <p>修改防火墙(组)名称</p>
6387
6707
  */
@@ -6773,6 +7093,21 @@ export interface DescribeBlockByIpTimesListResponse {
6773
7093
  */
6774
7094
  RequestId?: string;
6775
7095
  }
7096
+ /**
7097
+ * 防火墙(组)ID 和 名称
7098
+ */
7099
+ export interface FwGroupIdName {
7100
+ /**
7101
+ * 防火墙(组)ID
7102
+ 注意:此字段可能返回 null,表示取不到有效值。
7103
+ */
7104
+ FwGroupId?: string;
7105
+ /**
7106
+ * 防火墙(组)名称
7107
+ 注意:此字段可能返回 null,表示取不到有效值。
7108
+ */
7109
+ FwGroupName?: string;
7110
+ }
6776
7111
  /**
6777
7112
  * DescribeBlockIgnoreList请求参数结构体
6778
7113
  */
@@ -6853,6 +7188,23 @@ export interface DescribeCcnVpcFwSwitchRequest {
6853
7188
  */
6854
7189
  CcnId: string;
6855
7190
  }
7191
+ /**
7192
+ * DescribeSecurityGroupRegionList返回参数结构体
7193
+ */
7194
+ export interface DescribeSecurityGroupRegionListResponse {
7195
+ /**
7196
+ * <p>配置信息</p>
7197
+ */
7198
+ Data?: Array<SecurityGroupRegion>;
7199
+ /**
7200
+ * <p>总数</p>
7201
+ */
7202
+ Total?: number;
7203
+ /**
7204
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7205
+ */
7206
+ RequestId?: string;
7207
+ }
6856
7208
  /**
6857
7209
  * DescribeIPStatusList返回参数结构体
6858
7210
  */
@@ -7477,6 +7829,23 @@ export interface DescribeFwEdgeIpsRequest {
7477
7829
  */
7478
7830
  By?: string;
7479
7831
  }
7832
+ /**
7833
+ * ModifyEWRuleStatus返回参数结构体
7834
+ */
7835
+ export interface ModifyEWRuleStatusResponse {
7836
+ /**
7837
+ * 状态值,0:修改成功,非0:修改失败
7838
+ */
7839
+ ReturnCode?: number;
7840
+ /**
7841
+ * 状态信息,success:查询成功,fail:查询失败
7842
+ */
7843
+ ReturnMsg?: string;
7844
+ /**
7845
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7846
+ */
7847
+ RequestId?: string;
7848
+ }
7480
7849
  /**
7481
7850
  * 互联网边界访问控制规则参数结构,供新增和修改共用。每个对象都会被解析为一条完整的新规则记录;替换现有规则时,请求中省略的字段不会从旧记录自动继承,仅内部 AutoTask 字段由服务端保留。
7482
7851
  */
@@ -7547,17 +7916,45 @@ export interface CreateRuleItem {
7547
7916
  Uuid?: number;
7548
7917
  }
7549
7918
  /**
7550
- * CloseClusterNatFwSwitch请求参数结构体
7919
+ * DescribeVpcAclEdgeRange请求参数结构体
7551
7920
  */
7552
- export interface CloseClusterNatFwSwitchRequest {
7921
+ export interface DescribeVpcAclEdgeRangeRequest {
7553
7922
  /**
7554
- * <p>NAT防火墙实例ID</p>
7923
+ * 规则列表来源:rules,来源于当前已配置的规则;switchs,来源于开关列表
7555
7924
  */
7556
- NatInsId: string;
7925
+ FromList: string;
7557
7926
  /**
7558
- * <p>云联网实例ID</p>
7927
+ * 需要查询的索引,特定场景使用,可不填
7559
7928
  */
7560
- CcnId: string;
7929
+ Index?: string;
7930
+ /**
7931
+ * 过滤条件组合
7932
+ */
7933
+ Filters?: Array<CommonFilter>;
7934
+ /**
7935
+ * 每页条数
7936
+ */
7937
+ Limit?: number;
7938
+ /**
7939
+ * 偏移值
7940
+ */
7941
+ Offset?: number;
7942
+ /**
7943
+ * 检索的起始时间,可不传
7944
+ */
7945
+ StartTime?: string;
7946
+ /**
7947
+ * 检索的截止时间,可不传
7948
+ */
7949
+ EndTime?: string;
7950
+ /**
7951
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
7952
+ */
7953
+ Order?: string;
7954
+ /**
7955
+ * 排序所用到的字段
7956
+ */
7957
+ By?: string;
7561
7958
  }
7562
7959
  /**
7563
7960
  * ModifyClusterNatFwSwitch请求参数结构体
@@ -7623,6 +8020,65 @@ export interface DescribeIpsModeSwitchResponse {
7623
8020
  */
7624
8021
  RequestId?: string;
7625
8022
  }
8023
+ /**
8024
+ * DescribeIpsRuleListNew返回参数结构体
8025
+ */
8026
+ export interface DescribeIpsRuleListNewResponse {
8027
+ /**
8028
+ * 总条数
8029
+ */
8030
+ Total: number;
8031
+ /**
8032
+ * 规则详情
8033
+ */
8034
+ Data: Array<IpsRuleDetailNew>;
8035
+ /**
8036
+ * 返回状态码 0 成功 非0不成功
8037
+ */
8038
+ ReturnCode: number;
8039
+ /**
8040
+ * 返回信息 success 成功 其他 不成功
8041
+ */
8042
+ ReturnMsg: string;
8043
+ /**
8044
+ * 字段类型
8045
+ 注意:此字段可能返回 null,表示取不到有效值。
8046
+ */
8047
+ Category: Array<string>;
8048
+ /**
8049
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8050
+ */
8051
+ RequestId?: string;
8052
+ }
8053
+ /**
8054
+ * DescribeIpsRuleListNew请求参数结构体
8055
+ */
8056
+ export interface DescribeIpsRuleListNewRequest {
8057
+ /**
8058
+ * 每页条数
8059
+ */
8060
+ Limit: number;
8061
+ /**
8062
+ * 偏移值
8063
+ */
8064
+ Offset: number;
8065
+ /**
8066
+ * 需要查询的索引,特定场景使用,可不填
8067
+ */
8068
+ Index?: string;
8069
+ /**
8070
+ * 过滤条件组合
8071
+ */
8072
+ Filters?: Array<CommonFilter>;
8073
+ /**
8074
+ * desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
8075
+ */
8076
+ Order?: string;
8077
+ /**
8078
+ * 排序所用到的字段
8079
+ */
8080
+ By?: string;
8081
+ }
7626
8082
  /**
7627
8083
  * CloseClusterNatFwSwitch返回参数结构体
7628
8084
  */
@@ -7733,6 +8189,44 @@ export interface UpdateClusterVpcFwRequest {
7733
8189
  */
7734
8190
  CcnSwitch: CcnSwitchInfo;
7735
8191
  }
8192
+ /**
8193
+ * DescribeBlockList返回参数结构体
8194
+ */
8195
+ export interface DescribeBlockListResponse {
8196
+ /**
8197
+ * 阻断记录集合
8198
+ */
8199
+ Data: Array<BlockInfo>;
8200
+ /**
8201
+ * 置顶阻断记录集合
8202
+ */
8203
+ TopData: Array<BlockInfo>;
8204
+ /**
8205
+ * 数量
8206
+ */
8207
+ Total: number;
8208
+ /**
8209
+ * 置顶数量
8210
+ */
8211
+ TopCount: number;
8212
+ /**
8213
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8214
+ */
8215
+ RequestId?: string;
8216
+ }
8217
+ /**
8218
+ * CheckClusterNatFwPreAccess返回参数结构体
8219
+ */
8220
+ export interface CheckClusterNatFwPreAccessResponse {
8221
+ /**
8222
+ * <p>检查项清单,按执行顺序返回。前端据此渲染检查项骨架,描述文案已按请求的 Language 返回对应语言(中文/英文)。检查通过轮询 DescribeClusterNatCcnFwSwitchList 接口读取 CheckResult 获取每个阶段的通过/失败状态。</p>
8223
+ */
8224
+ CheckItems?: Array<ClusterFwPreAccessCheckItem>;
8225
+ /**
8226
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8227
+ */
8228
+ RequestId?: string;
8229
+ }
7736
8230
  /**
7737
8231
  * DeleteNatFwDnatRule请求参数结构体
7738
8232
  */
@@ -7869,6 +8363,19 @@ export interface AddVpcAcRuleResponse {
7869
8363
  */
7870
8364
  RequestId?: string;
7871
8365
  }
8366
+ /**
8367
+ * CheckClusterVpcFwPreAccess返回参数结构体
8368
+ */
8369
+ export interface CheckClusterVpcFwPreAccessResponse {
8370
+ /**
8371
+ * <p>检查项清单,按执行顺序返回。前端据此渲染检查项骨架,描述文案已按请求的 Language 返回对应语言(中文/英文)。检查通过轮询 DescribeClusterVpcFwSwitchs 接口读取 CheckResult 获取每个阶段的通过/失败状态。</p>
8372
+ */
8373
+ CheckItems?: Array<ClusterFwPreAccessCheckItem>;
8374
+ /**
8375
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8376
+ */
8377
+ RequestId?: string;
8378
+ }
7872
8379
  /**
7873
8380
  * ModifySequenceRules请求参数结构体
7874
8381
  */
@@ -8009,35 +8516,33 @@ export interface AddAclRuleResponse {
8009
8516
  RequestId?: string;
8010
8517
  }
8011
8518
  /**
8012
- * CreateAlertCenterIsolate请求参数结构体
8519
+ * NAT防火墙引流集群地域状态
8013
8520
  */
8014
- export interface CreateAlertCenterIsolateRequest {
8521
+ export interface NatFwClusterRegionStatus {
8015
8522
  /**
8016
- * 处置对象,资产列表
8523
+ * <p>NAT网关ID</p>
8017
8524
  */
8018
- HandleAssetList: Array<string>;
8525
+ NatInsId?: string;
8019
8526
  /**
8020
- * 处置时间
8021
- 1 1天
8022
- 7 7天
8023
- -2 永久
8527
+ * <p>云联网ID</p>
8024
8528
  */
8025
- HandleTime: number;
8529
+ CcnId?: string;
8026
8530
  /**
8027
- * 当前日志方向: 0 出向 1 入向
8531
+ * <p>地域,如 ap-guangzhou</p>
8028
8532
  */
8029
- AlertDirection: number;
8533
+ Region?: string;
8030
8534
  /**
8031
- * 隔离类型
8032
- 1 互联网入站
8033
- 2 互联网出站
8034
- 4 内网访问
8535
+ * <p>地域集群状态,取值:<br>NotDeployed-未部署集群,<br>Deployed-已部署集群但未创建引流网络,<br>DeployedCustomOnly-已部署集群但内网段被覆盖,无法自动选择引流网段,需自定义设置引流网段<br>Auto-已创建引流网络(自动分配CIDR),<br>Custom-已创建引流网络(自定义CIDR)</p>
8035
8536
  */
8036
- IsolateType: Array<number | bigint>;
8537
+ Status?: string;
8037
8538
  /**
8038
- * 运维模式 1 IP白名单 2 身份认证 0 非运维模式
8539
+ * <p>引流网络 CIDR,仅当 Status Auto 或 Custom 时有值</p>
8039
8540
  */
8040
- OmMode?: number;
8541
+ Cidr?: string;
8542
+ /**
8543
+ * <p>引流路由方法,0-多路由表模式,1-策略路由模式</p>
8544
+ */
8545
+ RoutingMode?: number;
8041
8546
  }
8042
8547
  /**
8043
8548
  * NAT 访问控制规则参数结构。新增和修改使用相同的字段解析;字段组合按 Direction、源和目的类型与内容、Protocol、Port、ParamTemplateId、RuleAction 和 Scope 校验。
@@ -9457,41 +9962,21 @@ export interface NatInstanceInfo {
9457
9962
  ElasticTrafficSwitch?: number;
9458
9963
  }
9459
9964
  /**
9460
- * CreateAcRules请求参数结构体
9965
+ * Nat防火墙弹性公网ip列表
9461
9966
  */
9462
- export interface CreateAcRulesRequest {
9463
- /**
9464
- * 创建规则数据
9465
- */
9466
- Data: Array<RuleInfoData>;
9467
- /**
9468
- * 0:添加(默认),1:插入
9469
- */
9470
- Type?: number;
9471
- /**
9472
- * 边id
9473
- */
9474
- EdgeId?: string;
9475
- /**
9476
- * 访问控制规则状态
9477
- */
9478
- Enable?: number;
9479
- /**
9480
- * 0:添加,1:覆盖
9481
- */
9482
- Overwrite?: number;
9967
+ export interface NatFwEipsInfo {
9483
9968
  /**
9484
- * NAT实例ID, 参数Area存在的时候这个必传
9969
+ * 弹性公网ip
9485
9970
  */
9486
- InstanceId?: string;
9971
+ Eip?: string;
9487
9972
  /**
9488
- * portScan: 来自于端口扫描, patchImport: 来自于批量导入
9973
+ * 所属的Nat网关Id
9489
9974
  */
9490
- From?: string;
9975
+ NatGatewayId?: string;
9491
9976
  /**
9492
- * NAT地域
9977
+ * Nat网关名称
9493
9978
  */
9494
- Area?: string;
9979
+ NatGatewayName?: string;
9495
9980
  }
9496
9981
  /**
9497
9982
  * NDR资产识别服务类型统计结果
@@ -9549,6 +10034,19 @@ export interface DescribeClusterVpcFwSwitchsResponse {
9549
10034
  */
9550
10035
  RequestId?: string;
9551
10036
  }
10037
+ /**
10038
+ * CheckClusterVpcFwPreAccess请求参数结构体
10039
+ */
10040
+ export interface CheckClusterVpcFwPreAccessRequest {
10041
+ /**
10042
+ * <p>CCN 开关配置,长度为 1 的数组 JSON 字符串,结构与 ModifyClusterVpcFwSwitch 的 CcnSwitch 完全一致。SwitchMode 必须为 1(自动接入),RoutingMode 必须为 1(策略路由)。</p>
10043
+ */
10044
+ CcnSwitch: Array<CcnSwitchInfo>;
10045
+ /**
10046
+ * <p>预接入检查模式</p><p>枚举值:</p><ul><li>open: 开启开关时预接入检查</li><li>modify: 编辑变更开关时预接入检查</li></ul>
10047
+ */
10048
+ CheckMode: string;
10049
+ }
9552
10050
  /**
9553
10051
  * CreateSecurityGroupRules请求参数结构体
9554
10052
  */
@@ -9922,33 +10420,35 @@ export interface SearchLogRequest {
9922
10420
  UseNewAnalysis?: boolean;
9923
10421
  }
9924
10422
  /**
9925
- * NAT防火墙引流集群地域状态
10423
+ * CreateAlertCenterIsolate请求参数结构体
9926
10424
  */
9927
- export interface NatFwClusterRegionStatus {
9928
- /**
9929
- * <p>NAT网关ID</p>
9930
- */
9931
- NatInsId?: string;
10425
+ export interface CreateAlertCenterIsolateRequest {
9932
10426
  /**
9933
- * <p>云联网ID</p>
10427
+ * 处置对象,资产列表
9934
10428
  */
9935
- CcnId?: string;
10429
+ HandleAssetList: Array<string>;
9936
10430
  /**
9937
- * <p>地域,如 ap-guangzhou</p>
10431
+ * 处置时间
10432
+ 1 1天
10433
+ 7 7天
10434
+ -2 永久
9938
10435
  */
9939
- Region?: string;
10436
+ HandleTime: number;
9940
10437
  /**
9941
- * <p>地域集群状态,取值:<br>NotDeployed-未部署集群,<br>Deployed-已部署集群但未创建引流网络,<br>DeployedCustomOnly-已部署集群但内网段被覆盖,无法自动选择引流网段,需自定义设置引流网段<br>Auto-已创建引流网络(自动分配CIDR),<br>Custom-已创建引流网络(自定义CIDR)</p>
10438
+ * 当前日志方向: 0 出向 1 入向
9942
10439
  */
9943
- Status?: string;
10440
+ AlertDirection: number;
9944
10441
  /**
9945
- * <p>引流网络 CIDR,仅当 Status 为 Auto 或 Custom 时有值</p>
10442
+ * 隔离类型
10443
+ 1 互联网入站
10444
+ 2 互联网出站
10445
+ 4 内网访问
9946
10446
  */
9947
- Cidr?: string;
10447
+ IsolateType: Array<number | bigint>;
9948
10448
  /**
9949
- * <p>引流路由方法,0-多路由表模式,1-策略路由模式</p>
10449
+ * 运维模式 1 IP白名单 2 身份认证 0 非运维模式
9950
10450
  */
9951
- RoutingMode?: number;
10451
+ OmMode?: number;
9952
10452
  }
9953
10453
  /**
9954
10454
  * ModifySecurityGroupItemRuleStatus请求参数结构体
@@ -9985,6 +10485,15 @@ export interface DescribeNatFwClusterRegionStatusResponse {
9985
10485
  */
9986
10486
  RequestId?: string;
9987
10487
  }
10488
+ /**
10489
+ * DescribeFwGroupIdNames请求参数结构体
10490
+ */
10491
+ export interface DescribeFwGroupIdNamesRequest {
10492
+ /**
10493
+ * <p>Ip版本,0:IPv4,1:IPv6,默认为IPv4</p>
10494
+ */
10495
+ IpVersion?: number;
10496
+ }
9988
10497
  /**
9989
10498
  * ModifyAcRule请求参数结构体
9990
10499
  */
@@ -10046,6 +10555,51 @@ export interface AddNatAcRuleResponse {
10046
10555
  */
10047
10556
  RequestId?: string;
10048
10557
  }
10558
+ /**
10559
+ * vpc间防火墙规则生效范围列表
10560
+ */
10561
+ export interface EdgeRange {
10562
+ /**
10563
+ * 规则生效的范围id,是在哪对vpc之间还是针对所有vpc间生效
10564
+ */
10565
+ EdgeId?: string;
10566
+ /**
10567
+ * EdgeId对应的名称
10568
+ */
10569
+ EdgeName?: string;
10570
+ /**
10571
+ * 本端网络实例Id
10572
+ */
10573
+ SrcId?: string;
10574
+ /**
10575
+ * 本端网络实例所属地域
10576
+ */
10577
+ SrcRegion?: string;
10578
+ /**
10579
+ * 本端网络实例名称
10580
+ */
10581
+ SrcName?: string;
10582
+ /**
10583
+ * 本端网络实例cidr,多个以逗号分隔
10584
+ */
10585
+ SrcCidr?: string;
10586
+ /**
10587
+ * 对端网络实例Id
10588
+ */
10589
+ DstId?: string;
10590
+ /**
10591
+ * 对端网络实例所属地域
10592
+ */
10593
+ DstRegion?: string;
10594
+ /**
10595
+ * 对端网络实例名称
10596
+ */
10597
+ DstName?: string;
10598
+ /**
10599
+ * 对端网络实例cidr,多个以逗号分隔
10600
+ */
10601
+ DstCidr?: string;
10602
+ }
10049
10603
  /**
10050
10604
  * DescribeResourceGroup请求参数结构体
10051
10605
  */
@@ -10064,21 +10618,41 @@ export interface DescribeResourceGroupRequest {
10064
10618
  ShowType?: string;
10065
10619
  }
10066
10620
  /**
10067
- * Nat防火墙弹性公网ip列表
10621
+ * CreateAcRules请求参数结构体
10068
10622
  */
10069
- export interface NatFwEipsInfo {
10623
+ export interface CreateAcRulesRequest {
10070
10624
  /**
10071
- * 弹性公网ip
10625
+ * 创建规则数据
10072
10626
  */
10073
- Eip?: string;
10627
+ Data: Array<RuleInfoData>;
10074
10628
  /**
10075
- * 所属的Nat网关Id
10629
+ * 0:添加(默认),1:插入
10076
10630
  */
10077
- NatGatewayId?: string;
10631
+ Type?: number;
10078
10632
  /**
10079
- * Nat网关名称
10633
+ * 边id
10080
10634
  */
10081
- NatGatewayName?: string;
10635
+ EdgeId?: string;
10636
+ /**
10637
+ * 访问控制规则状态
10638
+ */
10639
+ Enable?: number;
10640
+ /**
10641
+ * 0:添加,1:覆盖
10642
+ */
10643
+ Overwrite?: number;
10644
+ /**
10645
+ * NAT实例ID, 参数Area存在的时候这个必传
10646
+ */
10647
+ InstanceId?: string;
10648
+ /**
10649
+ * portScan: 来自于端口扫描, patchImport: 来自于批量导入
10650
+ */
10651
+ From?: string;
10652
+ /**
10653
+ * NAT地域
10654
+ */
10655
+ Area?: string;
10082
10656
  }
10083
10657
  /**
10084
10658
  * DescribeAssociatedInstanceList请求参数结构体