tencentcloud-sdk-nodejs-vpc 4.1.200 → 4.1.204
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -8113,6 +8113,14 @@ export interface TrafficMirror {
|
|
|
8113
8113
|
* 流量镜接收目标资源信息,当接收目标为ENI和CLB时返回。
|
|
8114
8114
|
*/
|
|
8115
8115
|
TargetInfo?: Array<TrafficMirrorTargetResourceInfo>;
|
|
8116
|
+
/**
|
|
8117
|
+
* 流量镜像入站过滤规则。
|
|
8118
|
+
*/
|
|
8119
|
+
IngressFilterRules?: Array<TrafficMirrorFilter>;
|
|
8120
|
+
/**
|
|
8121
|
+
* 流量镜像出站过滤规则。
|
|
8122
|
+
*/
|
|
8123
|
+
EgressFilterRules?: Array<TrafficMirrorFilter>;
|
|
8116
8124
|
}
|
|
8117
8125
|
/**
|
|
8118
8126
|
* DeleteCustomerGateway返回参数结构体
|
|
@@ -10901,7 +10909,7 @@ export interface HaVip {
|
|
|
10901
10909
|
*/
|
|
10902
10910
|
HaVipAssociationSet?: Array<HaVipAssociation>;
|
|
10903
10911
|
/**
|
|
10904
|
-
* 是否开启`HAVIP
|
|
10912
|
+
* 是否开启`HAVIP`的漂移范围校验。
|
|
10905
10913
|
*/
|
|
10906
10914
|
CheckAssociate?: boolean;
|
|
10907
10915
|
/**
|
|
@@ -10909,7 +10917,7 @@ export interface HaVip {
|
|
|
10909
10917
|
*/
|
|
10910
10918
|
CdcId?: string;
|
|
10911
10919
|
/**
|
|
10912
|
-
* HAVIP 刷新时间。该参数只作为出参数。以下场景会触发
|
|
10920
|
+
* HAVIP 刷新时间。该参数只作为出参数。以下场景会触发FlushedTime 被刷新:1)子机发出免费 ARP 触发 HAVIP 漂移;2)手动HAVIP解绑网卡; 没有更新时默认值:0000-00-00 00:00:00
|
|
10913
10921
|
*/
|
|
10914
10922
|
FlushedTime?: string;
|
|
10915
10923
|
/**
|
|
@@ -16284,15 +16292,15 @@ export interface TrafficMirrorFilter {
|
|
|
16284
16292
|
/**
|
|
16285
16293
|
* 过滤规则的源网段
|
|
16286
16294
|
*/
|
|
16287
|
-
SrcNet
|
|
16295
|
+
SrcNet?: string;
|
|
16288
16296
|
/**
|
|
16289
16297
|
* 过滤规则的目的网段
|
|
16290
16298
|
*/
|
|
16291
|
-
DstNet
|
|
16299
|
+
DstNet?: string;
|
|
16292
16300
|
/**
|
|
16293
16301
|
* 过滤规则的协议
|
|
16294
16302
|
*/
|
|
16295
|
-
Protocol
|
|
16303
|
+
Protocol?: string;
|
|
16296
16304
|
/**
|
|
16297
16305
|
* 过滤规则的源端口,默认值1-65535
|
|
16298
16306
|
*/
|
|
@@ -16301,6 +16309,26 @@ export interface TrafficMirrorFilter {
|
|
|
16301
16309
|
* 过滤规则的目的端口,默认值1-65535
|
|
16302
16310
|
*/
|
|
16303
16311
|
DstPort?: string;
|
|
16312
|
+
/**
|
|
16313
|
+
* 流量镜像过滤规则唯一ID。
|
|
16314
|
+
*/
|
|
16315
|
+
TrafficMirrorFilterRuleId?: string;
|
|
16316
|
+
/**
|
|
16317
|
+
* 流量镜像过滤规则优先级。
|
|
16318
|
+
*/
|
|
16319
|
+
Priority?: number;
|
|
16320
|
+
/**
|
|
16321
|
+
* 流量镜像过滤规则策略,支持类型:"ACCEPT", "DROP"。
|
|
16322
|
+
*/
|
|
16323
|
+
Action?: string;
|
|
16324
|
+
/**
|
|
16325
|
+
* 流量镜像过滤规则描述。
|
|
16326
|
+
*/
|
|
16327
|
+
Description?: string;
|
|
16328
|
+
/**
|
|
16329
|
+
* 创建时间。
|
|
16330
|
+
*/
|
|
16331
|
+
CreatedTime?: string;
|
|
16304
16332
|
}
|
|
16305
16333
|
/**
|
|
16306
16334
|
* InquiryPriceRenewVpnGateway请求参数结构体
|