tencentcloud-sdk-nodejs-vpc 4.1.204 → 4.1.206

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-vpc",
3
- "version": "4.1.204",
3
+ "version": "4.1.206",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -308,6 +308,14 @@ export interface ResetTrafficMirrorFilterRequest {
308
308
  * 流量镜像需要过滤的五元组规则
309
309
  */
310
310
  CollectorNormalFilters?: Array<TrafficMirrorFilter>;
311
+ /**
312
+ * 流量镜像入站过滤规则。
313
+ */
314
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
315
+ /**
316
+ * 流量镜像出站过滤规则。
317
+ */
318
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
311
319
  }
312
320
  /**
313
321
  * DescribeBandwidthPackageResources请求参数结构体
@@ -15921,7 +15929,8 @@ export interface CCN {
15921
15929
  */
15922
15930
  export interface RemoveBandwidthPackageResourcesRequest {
15923
15931
  /**
15924
- * 资源唯一ID,当前支持EIP资源和LB资源,形如'eip-xxxx', 'lb-xxxx'EIP资源列表可通过[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取,LB资源列表可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/api/214/30685)接口获取。
15932
+ * 资源唯一ID,当前支持EIP资源和LB资源,形如'eip-xxxx', 'lb-xxxx'。<li>EIP资源列表:可通过[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取。高防EIP、Anycast EIP、精品BGP EIP默认不支持从共享带宽包中移除,其中高防EIP和精品BGP IP可以迁移到其他同线路类型的共享带宽包中。</li><li>LB资源列表:可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/api/214/30685)接口获取。</li>
15933
+
15925
15934
  */
15926
15935
  ResourceIds?: Array<string>;
15927
15936
  /**
@@ -16121,7 +16130,7 @@ export interface UpdateTrafficMirrorAllFilterRequest {
16121
16130
  /**
16122
16131
  * 流量镜像采集方向
16123
16132
  */
16124
- Direction: string;
16133
+ Direction?: string;
16125
16134
  /**
16126
16135
  * 流量镜像采集对象
16127
16136
  */
@@ -16134,6 +16143,14 @@ export interface UpdateTrafficMirrorAllFilterRequest {
16134
16143
  * 流量镜像需要过滤的五元组规则
16135
16144
  */
16136
16145
  CollectorNormalFilters?: Array<TrafficMirrorFilter>;
16146
+ /**
16147
+ * 流量镜像入站过滤规则。
16148
+ */
16149
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
16150
+ /**
16151
+ * 流量镜像出站过滤规则。
16152
+ */
16153
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
16137
16154
  }
16138
16155
  /**
16139
16156
  * DescribeTrafficMirrors返回参数结构体
@@ -16143,6 +16160,10 @@ export interface DescribeTrafficMirrorsResponse {
16143
16160
  * 流量镜像实例信息
16144
16161
  */
16145
16162
  TrafficMirrorSet?: Array<TrafficMirror>;
16163
+ /**
16164
+ * 符合条件的对象数
16165
+ */
16166
+ TotalCount?: number;
16146
16167
  /**
16147
16168
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16148
16169
  */
@@ -17482,7 +17503,15 @@ export interface UpdateTrafficMirrorDirectionRequest {
17482
17503
  */
17483
17504
  TrafficMirrorId: string;
17484
17505
  /**
17485
- * 流量镜像采集方向
17506
+ * 流量镜像采集方向。取值范围:
17507
+
17508
+ - EGRESS - 出方向采集
17509
+
17510
+ - INGRESS - 入方向采集
17511
+
17512
+ - ALL - 出入双向采集
17513
+
17514
+ - NO-DIRECTION - 不区分采集方向(新模式)。切换为该模式后将不再支持按方向采集,需通过 CreateTrafficMirrorFilterRules 接口创建带方向的过滤规则,过滤规则支持设置优先级和单独编辑。
17486
17515
  */
17487
17516
  Direction: string;
17488
17517
  }
@@ -19010,7 +19039,7 @@ export interface CreateTrafficMirrorRequest {
19010
19039
  */
19011
19040
  Direction?: string;
19012
19041
  /**
19013
- * 流量镜像的采集对象。
19042
+ * 流量镜像的采集对象 (最多支持20个采集对象)。
19014
19043
  */
19015
19044
  CollectorSrcs?: Array<string>;
19016
19045
  /**
@@ -19037,6 +19066,14 @@ export interface CreateTrafficMirrorRequest {
19037
19066
  * 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
19038
19067
  */
19039
19068
  Tags?: Array<Tag>;
19069
+ /**
19070
+ * 流量镜像入站过滤规则。
19071
+ */
19072
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
19073
+ /**
19074
+ * 流量镜像出站过滤规则。
19075
+ */
19076
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
19040
19077
  }
19041
19078
  /**
19042
19079
  * CheckTrafficMirror请求参数结构体