tencentcloud-sdk-nodejs 4.1.208 → 4.1.210

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 (42) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cfw/v20190904/cfw_client.js +8 -2
  3. package/es/services/dnspod/v20210323/dnspod_client.js +3 -0
  4. package/es/services/ocr/v20181119/ocr_client.js +6 -0
  5. package/es/services/vpc/v20170312/vpc_client.js +18 -6
  6. package/package.json +1 -1
  7. package/tencentcloud/common/sdk_version.d.ts +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +2 -2
  10. package/tencentcloud/services/apm/v20210622/apm_models.d.ts +16 -8
  11. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +34 -18
  12. package/tencentcloud/services/cfg/v20210820/cfg_models.d.ts +48 -45
  13. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +11 -3
  14. package/tencentcloud/services/cfw/v20190904/cfw_client.js +15 -3
  15. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +4678 -4626
  16. package/tencentcloud/services/config/v20220802/config_models.d.ts +14 -14
  17. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +15 -12
  18. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +9 -9
  19. package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +5 -1
  20. package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +6 -0
  21. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +111 -44
  22. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +39 -124
  23. package/tencentcloud/services/hai/v20230812/hai_models.d.ts +81 -18
  24. package/tencentcloud/services/live/v20180801/live_client.d.ts +4 -4
  25. package/tencentcloud/services/live/v20180801/live_client.js +4 -4
  26. package/tencentcloud/services/live/v20180801/live_models.d.ts +44 -36
  27. package/tencentcloud/services/lke/v20231130/lke_client.d.ts +1 -1
  28. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +286 -198
  29. package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +1 -1
  30. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +56 -1
  31. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +85 -21
  32. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +15 -1
  33. package/tencentcloud/services/ocr/v20181119/ocr_client.js +18 -0
  34. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +193 -64
  35. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +12 -12
  36. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +16 -1
  37. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +18 -6
  38. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +7 -3
  39. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +108 -25
  40. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +28 -12
  41. package/tencentcloud/services/vpc/v20170312/vpc_client.js +38 -14
  42. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +180 -38
@@ -454,6 +454,15 @@ export interface ReleaseIp6AddressesBandwidthResponse {
454
454
  */
455
455
  RequestId?: string;
456
456
  }
457
+ /**
458
+ * SetCcnRegionBandwidthLimits返回参数结构体
459
+ */
460
+ export interface SetCcnRegionBandwidthLimitsResponse {
461
+ /**
462
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
463
+ */
464
+ RequestId?: string;
465
+ }
457
466
  /**
458
467
  * DescribeVpcIpv6Addresses请求参数结构体
459
468
  */
@@ -545,30 +554,34 @@ export interface SourceIpTranslationNatRule {
545
554
  CreatedTime?: string;
546
555
  }
547
556
  /**
548
- * DescribeRoutes返回参数结构体
557
+ * AssignIpv6CidrBlock请求参数结构体
549
558
  */
550
- export interface DescribeRoutesResponse {
551
- /**
552
- * 路由对象。
553
- */
554
- RouteSet?: Array<Route>;
559
+ export interface AssignIpv6CidrBlockRequest {
555
560
  /**
556
- * 符合条件的实例数量。
561
+ * `VPC`实例`ID`,形如:`vpc-f49l6u0z`。
557
562
  */
558
- TotalCount?: number;
563
+ VpcId: string;
559
564
  /**
560
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
565
+ * 申请IPv6 Cidr 的类型,`GUA`(全球单播地址), `ULA`(唯一本地地址)
561
566
  */
562
- RequestId?: string;
567
+ AddressType?: string;
563
568
  }
564
569
  /**
565
- * ModifyNatGatewayDestinationIpPortTranslationNatRule返回参数结构体
570
+ * CreateTrafficMirrorFilterRules请求参数结构体
566
571
  */
567
- export interface ModifyNatGatewayDestinationIpPortTranslationNatRuleResponse {
572
+ export interface CreateTrafficMirrorFilterRulesRequest {
568
573
  /**
569
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
574
+ * 流量镜像实例唯一ID。
570
575
  */
571
- RequestId?: string;
576
+ TrafficMirrorId: string;
577
+ /**
578
+ * 流量镜像入站过滤规则。
579
+ */
580
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
581
+ /**
582
+ * 流量镜像出站过滤规则。
583
+ */
584
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
572
585
  }
573
586
  /**
574
587
  * ModifyIp6Rule返回参数结构体
@@ -2346,6 +2359,23 @@ export interface DescribeSecurityGroupExpandedPoliciesResponse {
2346
2359
  */
2347
2360
  RequestId?: string;
2348
2361
  }
2362
+ /**
2363
+ * DeleteTrafficMirrorFilterRules请求参数结构体
2364
+ */
2365
+ export interface DeleteTrafficMirrorFilterRulesRequest {
2366
+ /**
2367
+ * 流量镜像实例唯一ID。
2368
+ */
2369
+ TrafficMirrorId: string;
2370
+ /**
2371
+ * 流量镜像入站过滤唯一ID列表。
2372
+ */
2373
+ IngressFilterRuleIds?: Array<string>;
2374
+ /**
2375
+ * 流量镜像出站过滤唯一ID列表。
2376
+ */
2377
+ EgressFilterRuleIds?: Array<string>;
2378
+ }
2349
2379
  /**
2350
2380
  * ModifyFlowLogAttribute请求参数结构体
2351
2381
  */
@@ -3629,9 +3659,9 @@ export interface ModifyAddressInternetChargeTypeResponse {
3629
3659
  RequestId?: string;
3630
3660
  }
3631
3661
  /**
3632
- * SetCcnRegionBandwidthLimits返回参数结构体
3662
+ * ModifyNatGatewayDestinationIpPortTranslationNatRule返回参数结构体
3633
3663
  */
3634
- export interface SetCcnRegionBandwidthLimitsResponse {
3664
+ export interface ModifyNatGatewayDestinationIpPortTranslationNatRuleResponse {
3635
3665
  /**
3636
3666
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3637
3667
  */
@@ -3686,17 +3716,25 @@ export interface ModifyNetworkAclQuintupleEntriesResponse {
3686
3716
  RequestId?: string;
3687
3717
  }
3688
3718
  /**
3689
- * AssignIpv6CidrBlock请求参数结构体
3719
+ * CreateTrafficMirrorFilterRules返回参数结构体
3690
3720
  */
3691
- export interface AssignIpv6CidrBlockRequest {
3721
+ export interface CreateTrafficMirrorFilterRulesResponse {
3692
3722
  /**
3693
- * `VPC`实例`ID`,形如:`vpc-f49l6u0z`。
3723
+ * 流量镜像实例唯一ID
3694
3724
  */
3695
- VpcId: string;
3725
+ TrafficMirrorId?: string;
3696
3726
  /**
3697
- * 申请IPv6 Cidr 的类型,`GUA`(全球单播地址), `ULA`(唯一本地地址)。
3727
+ * 流量镜像入站过滤规则。
3698
3728
  */
3699
- AddressType?: string;
3729
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
3730
+ /**
3731
+ * 流量镜像出站过滤规则。
3732
+ */
3733
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
3734
+ /**
3735
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3736
+ */
3737
+ RequestId?: string;
3700
3738
  }
3701
3739
  /**
3702
3740
  * CreateSecurityGroupPolicies返回参数结构体
@@ -4579,6 +4617,34 @@ export interface CreateNatGatewaySourceIpTranslationNatRuleRequest {
4579
4617
  */
4580
4618
  SourceIpTranslationNatRules: Array<SourceIpTranslationNatRule>;
4581
4619
  }
4620
+ /**
4621
+ * DescribeTrafficMirrorFilterRules请求参数结构体
4622
+ */
4623
+ export interface DescribeTrafficMirrorFilterRulesRequest {
4624
+ /**
4625
+ * 流量镜像唯一ID
4626
+ */
4627
+ TrafficMirrorId: string;
4628
+ /**
4629
+ * 流量镜像出站、入站过滤唯一ID列表。
4630
+ */
4631
+ TrafficMirrorFilterRuleIds?: Array<string>;
4632
+ /**
4633
+ * <li>traffic-mirror-filter-rule-id - String - (过滤条件) 流量镜像过滤规则,形如:tmfi-qfhrb7yj。 </li>
4634
+ <li>action - String - (过滤条件)策略, 支持类型: ACCEPT, DROP。 </li>
4635
+ <li>description - String - (过滤条件)描述。 </li>
4636
+ <li>direction - String - (过滤条件)方向, 支持类型:INGRESS, EGRESS。</li>
4637
+ */
4638
+ Filters?: Array<Filter>;
4639
+ /**
4640
+ * 偏移量。
4641
+ */
4642
+ Offset?: number;
4643
+ /**
4644
+ * 请求对象个数。
4645
+ */
4646
+ Limit?: number;
4647
+ }
4582
4648
  /**
4583
4649
  * 弹性网卡
4584
4650
  */
@@ -6144,6 +6210,23 @@ export interface ReplaceRouteTableAssociationRequest {
6144
6210
  */
6145
6211
  SubnetId?: string;
6146
6212
  }
6213
+ /**
6214
+ * ReplaceSecurityGroupPolicy请求参数结构体
6215
+ */
6216
+ export interface ReplaceSecurityGroupPolicyRequest {
6217
+ /**
6218
+ * 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
6219
+ */
6220
+ SecurityGroupId: string;
6221
+ /**
6222
+ * 安全组规则集合对象。
6223
+ */
6224
+ SecurityGroupPolicySet: SecurityGroupPolicySet;
6225
+ /**
6226
+ * 旧的安全组规则集合对象,可选,日志记录用。
6227
+ */
6228
+ OriginalSecurityGroupPolicySet?: SecurityGroupPolicySet;
6229
+ }
6147
6230
  /**
6148
6231
  * 私网NAT网关跨域信息
6149
6232
  */
@@ -7722,6 +7805,15 @@ export interface AssignIpv6AddressesRequest {
7722
7805
  */
7723
7806
  ClientToken?: string;
7724
7807
  }
7808
+ /**
7809
+ * DeleteTrafficMirrorFilterRules返回参数结构体
7810
+ */
7811
+ export interface DeleteTrafficMirrorFilterRulesResponse {
7812
+ /**
7813
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7814
+ */
7815
+ RequestId?: string;
7816
+ }
7725
7817
  /**
7726
7818
  * 路由表选择策略信息
7727
7819
  */
@@ -7930,21 +8022,21 @@ export interface DeleteHighPriorityRoutesResponse {
7930
8022
  RequestId?: string;
7931
8023
  }
7932
8024
  /**
7933
- * ReplaceSecurityGroupPolicy请求参数结构体
8025
+ * ModifyTrafficMirrorFilterRules请求参数结构体
7934
8026
  */
7935
- export interface ReplaceSecurityGroupPolicyRequest {
8027
+ export interface ModifyTrafficMirrorFilterRulesRequest {
7936
8028
  /**
7937
- * 安全组实例ID,例如sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
8029
+ * 流量镜像实例唯一ID
7938
8030
  */
7939
- SecurityGroupId: string;
8031
+ TrafficMirrorId: string;
7940
8032
  /**
7941
- * 安全组规则集合对象。
8033
+ * 流量镜像入站过滤规则。
7942
8034
  */
7943
- SecurityGroupPolicySet: SecurityGroupPolicySet;
8035
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
7944
8036
  /**
7945
- * 旧的安全组规则集合对象,可选,日志记录用。
8037
+ * 流量镜像出站过滤规则。
7946
8038
  */
7947
- OriginalSecurityGroupPolicySet?: SecurityGroupPolicySet;
8039
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
7948
8040
  }
7949
8041
  /**
7950
8042
  * 查询云联网策略路由匹配规则
@@ -9301,9 +9393,25 @@ export interface DescribeAssistantCidrRequest {
9301
9393
  Limit?: number;
9302
9394
  }
9303
9395
  /**
9304
- * RenewVpnGateway返回参数结构体
9396
+ * DescribeTrafficMirrorFilterRules返回参数结构体
9305
9397
  */
9306
- export interface RenewVpnGatewayResponse {
9398
+ export interface DescribeTrafficMirrorFilterRulesResponse {
9399
+ /**
9400
+ * 流量镜像实例唯一ID。
9401
+ */
9402
+ TrafficMirrorId?: string;
9403
+ /**
9404
+ * 流量镜像入站过滤规则。
9405
+ */
9406
+ IngressFilterRules?: Array<TrafficMirrorFilter>;
9407
+ /**
9408
+ * 流量镜像出站过滤规则。
9409
+ */
9410
+ EgressFilterRules?: Array<TrafficMirrorFilter>;
9411
+ /**
9412
+ * 符合条件的实例数量。分页查询的时候,如果IngressFilterRules的长度加上IngressFilterRules的长度,小于limit的时候表示已经查询完毕。
9413
+ */
9414
+ TotalCount?: number;
9307
9415
  /**
9308
9416
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9309
9417
  */
@@ -10951,7 +11059,7 @@ export interface DeleteTemplateMemberRequest {
10951
11059
  */
10952
11060
  export interface ModifyAddressesBandwidthResponse {
10953
11061
  /**
10954
- * 异步任务TaskId。可以使用[DescribeTaskResult](https://cloud.tencent.com/document/api/215/36271)接口查询任务状态。
11062
+ * <p>异步任务TaskId。可以使用<a href="https://cloud.tencent.com/document/api/215/36271">DescribeTaskResult</a>接口查询任务状态。</p>
10955
11063
  */
10956
11064
  TaskId?: string;
10957
11065
  /**
@@ -14953,21 +15061,20 @@ export interface VpnGateway {
14953
15061
  */
14954
15062
  export interface ModifyAddressesBandwidthRequest {
14955
15063
  /**
14956
- * EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId
14957
-
15064
+ * <p>EIP唯一标识ID列表,形如&#39;eip-xxxx&#39;,可以使用<a href="https://cloud.tencent.com/document/product/215/16702">DescribeAddresses</a>接口获取AddressId。</p>
14958
15065
  */
14959
15066
  AddressIds: Array<string>;
14960
15067
  /**
14961
- * 调整带宽目标值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
15068
+ * <p>调整带宽目标值,可调整的带宽上限值参考产品文档<a href="https://cloud.tencent.com/document/product/1199/48333">带宽上限</a>。</p>
14962
15069
  */
14963
15070
  InternetMaxBandwidthOut: number;
14964
15071
  /**
14965
- * 包月带宽起始时间(已废弃,输入无效)
15072
+ * <p>包月带宽起始时间(已废弃,输入无效)</p>
14966
15073
  * @deprecated
14967
15074
  */
14968
15075
  StartTime?: string;
14969
15076
  /**
14970
- * 包月带宽结束时间(已废弃,输入无效)
15077
+ * <p>包月带宽结束时间(已废弃,输入无效)</p>
14971
15078
  * @deprecated
14972
15079
  */
14973
15080
  EndTime?: string;
@@ -15185,6 +15292,23 @@ export interface MigrateBandwidthPackageResourcesResponse {
15185
15292
  * DescribeCdcUsedIdcVlan请求参数结构体
15186
15293
  */
15187
15294
  export type DescribeCdcUsedIdcVlanRequest = null;
15295
+ /**
15296
+ * DescribeRoutes返回参数结构体
15297
+ */
15298
+ export interface DescribeRoutesResponse {
15299
+ /**
15300
+ * 路由对象。
15301
+ */
15302
+ RouteSet?: Array<Route>;
15303
+ /**
15304
+ * 符合条件的实例数量。
15305
+ */
15306
+ TotalCount?: number;
15307
+ /**
15308
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15309
+ */
15310
+ RequestId?: string;
15311
+ }
15188
15312
  /**
15189
15313
  * 描述带宽包信息的结构
15190
15314
  */
@@ -17182,6 +17306,15 @@ export interface DescribeSgSnapshotFileContentRequest {
17182
17306
  */
17183
17307
  SecurityGroupId: string;
17184
17308
  }
17309
+ /**
17310
+ * ModifyTrafficMirrorFilterRules返回参数结构体
17311
+ */
17312
+ export interface ModifyTrafficMirrorFilterRulesResponse {
17313
+ /**
17314
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17315
+ */
17316
+ RequestId?: string;
17317
+ }
17185
17318
  /**
17186
17319
  * DescribeSecurityGroupExpandedPolicies请求参数结构体
17187
17320
  */
@@ -17550,6 +17683,15 @@ export interface LockCcnsResponse {
17550
17683
  */
17551
17684
  RequestId?: string;
17552
17685
  }
17686
+ /**
17687
+ * RenewVpnGateway返回参数结构体
17688
+ */
17689
+ export interface RenewVpnGatewayResponse {
17690
+ /**
17691
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17692
+ */
17693
+ RequestId?: string;
17694
+ }
17553
17695
  /**
17554
17696
  * 批量修改快照策略信息
17555
17697
  */