tencentcloud-sdk-nodejs-vpc 4.0.277 → 4.0.281

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.
@@ -618,49 +618,63 @@ export interface DescribeLocalGatewayRequest {
618
618
  */
619
619
  export interface FlowLog {
620
620
  /**
621
- * 私用网络ID或者统一ID,建议使用统一ID
621
+ * 私用网络ID或者统一ID,建议使用统一ID
622
622
  */
623
623
  VpcId?: string;
624
624
  /**
625
- * 流日志唯一ID
625
+ * 流日志唯一ID
626
626
  */
627
627
  FlowLogId?: string;
628
628
  /**
629
- * 流日志实例名字
629
+ * 流日志实例名字。
630
630
  */
631
631
  FlowLogName?: string;
632
632
  /**
633
- * 流日志所属资源类型,VPC|SUBNET|NETWORKINTERFACE|CCN
633
+ * 流日志所属资源类型,VPC|SUBNET|NETWORKINTERFACE|CCN
634
634
  */
635
635
  ResourceType?: string;
636
636
  /**
637
- * 资源唯一ID
637
+ * 资源唯一ID
638
638
  */
639
639
  ResourceId?: string;
640
640
  /**
641
- * 流日志采集类型,ACCEPT|REJECT|ALL
641
+ * 流日志采集类型,ACCEPT|REJECT|ALL
642
642
  */
643
643
  TrafficType?: string;
644
644
  /**
645
- * 流日志存储ID
645
+ * 流日志存储ID
646
646
  */
647
647
  CloudLogId?: string;
648
648
  /**
649
- * 流日志存储ID状态
649
+ * 流日志存储ID状态。
650
650
  */
651
651
  CloudLogState?: string;
652
652
  /**
653
- * 流日志描述信息
653
+ * 流日志描述信息。
654
654
  */
655
655
  FlowLogDescription?: string;
656
656
  /**
657
- * 流日志创建时间
657
+ * 流日志创建时间。
658
658
  */
659
659
  CreatedTime?: string;
660
660
  /**
661
- * 标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
661
+ * 标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
662
662
  */
663
663
  TagSet: Array<Tag>;
664
+ /**
665
+ * 是否启用,true-启用,false-停用。
666
+ */
667
+ Enable: boolean;
668
+ /**
669
+ * 消费端类型:cls、ckafka。
670
+ 注意:此字段可能返回 null,表示取不到有效值。
671
+ */
672
+ StorageType: string;
673
+ /**
674
+ * 消费端信息,当消费端类型为ckafka时返回
675
+ 注意:此字段可能返回 null,表示取不到有效值。
676
+ */
677
+ FlowLogStorage: FlowLogStorage;
664
678
  }
665
679
  /**
666
680
  * DescribeVpcLimits返回参数结构体
@@ -2716,6 +2730,7 @@ export interface ModifyNetDetectRequest {
2716
2730
  PEERCONNECTION:对等连接;
2717
2731
  NAT:NAT网关;
2718
2732
  NORMAL_CVM:普通云服务器;
2733
+ CCN:云联网网关;
2719
2734
  */
2720
2735
  NextHopType?: string;
2721
2736
  /**
@@ -2725,6 +2740,7 @@ export interface ModifyNetDetectRequest {
2725
2740
  下一跳类型为PEERCONNECTION,取值对等连接ID,形如:pcx-12345678;
2726
2741
  下一跳类型为NAT,取值Nat网关,形如:nat-12345678;
2727
2742
  下一跳类型为NORMAL_CVM,取值云服务器IPv4地址,形如:10.0.0.12;
2743
+ 下一跳类型为CCN,取值云联网ID,形如:ccn-44csczop;
2728
2744
  */
2729
2745
  NextHopDestination?: string;
2730
2746
  /**
@@ -2740,12 +2756,12 @@ export interface DescribeNetDetectStatesResponse {
2740
2756
  * 符合条件的网络探测验证结果对象数组。
2741
2757
  注意:此字段可能返回 null,表示取不到有效值。
2742
2758
  */
2743
- NetDetectStateSet?: Array<NetDetectState>;
2759
+ NetDetectStateSet: Array<NetDetectState>;
2744
2760
  /**
2745
2761
  * 符合条件的网络探测验证结果对象数量。
2746
2762
  注意:此字段可能返回 null,表示取不到有效值。
2747
2763
  */
2748
- TotalCount?: number;
2764
+ TotalCount: number;
2749
2765
  /**
2750
2766
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2751
2767
  */
@@ -3382,29 +3398,18 @@ export interface DescribeNatGatewayDestinationIpPortTranslationNatRulesResponse
3382
3398
  RequestId?: string;
3383
3399
  }
3384
3400
  /**
3385
- * 描述网络中心每个产品的配额信息
3401
+ * 流日志存储信息
3386
3402
  */
3387
- export interface ProductQuota {
3388
- /**
3389
- * 产品配额ID
3390
- */
3391
- QuotaId: string;
3403
+ export interface FlowLogStorage {
3392
3404
  /**
3393
- * 产品配额名称
3405
+ * 存储实例Id,当流日志存储类型为ckafka时,必填。
3394
3406
  */
3395
- QuotaName: string;
3407
+ StorageId: string;
3396
3408
  /**
3397
- * 产品当前配额
3398
- */
3399
- QuotaCurrent: number;
3400
- /**
3401
- * 产品配额上限
3402
- */
3403
- QuotaLimit: number;
3404
- /**
3405
- * 产品配额是否有地域属性
3406
- */
3407
- QuotaRegion: boolean;
3409
+ * 主题Id,当流日志存储类型为ckafka时,必填。
3410
+ 注意:此字段可能返回 null,表示取不到有效值。
3411
+ */
3412
+ StorageTopic?: string;
3408
3413
  }
3409
3414
  /**
3410
3415
  * DescribeVpcIpv6Addresses返回参数结构体
@@ -6134,11 +6139,11 @@ export interface DescribeFlowLogsResponse {
6134
6139
  /**
6135
6140
  * 流日志实例集合
6136
6141
  */
6137
- FlowLog?: Array<FlowLog>;
6142
+ FlowLog: Array<FlowLog>;
6138
6143
  /**
6139
6144
  * 流日志总数目
6140
6145
  */
6141
- TotalNum?: number;
6146
+ TotalNum: number;
6142
6147
  /**
6143
6148
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6144
6149
  */
@@ -7492,10 +7497,6 @@ export interface CreateFlowLogRequest {
7492
7497
  * 流日志采集类型,ACCEPT|REJECT|ALL
7493
7498
  */
7494
7499
  TrafficType: string;
7495
- /**
7496
- * 流日志存储ID
7497
- */
7498
- CloudLogId: string;
7499
7500
  /**
7500
7501
  * 私用网络ID或者统一ID,建议使用统一ID,当ResourceType为CCN时不填,其他类型必填。
7501
7502
  */
@@ -7504,10 +7505,22 @@ export interface CreateFlowLogRequest {
7504
7505
  * 流日志实例描述
7505
7506
  */
7506
7507
  FlowLogDescription?: string;
7508
+ /**
7509
+ * 流日志存储ID
7510
+ */
7511
+ CloudLogId?: string;
7507
7512
  /**
7508
7513
  * 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
7509
7514
  */
7510
7515
  Tags?: Array<Tag>;
7516
+ /**
7517
+ * 消费端类型:cls、ckafka
7518
+ */
7519
+ StorageType?: string;
7520
+ /**
7521
+ * 流日志消费端信息,当消费端类型为ckafka时,必填。
7522
+ */
7523
+ FlowLogStorage?: FlowLogStorage;
7511
7524
  }
7512
7525
  /**
7513
7526
  * InquirePriceCreateDirectConnectGateway请求参数结构体
@@ -7818,6 +7831,31 @@ export interface RenewAddressesRequest {
7818
7831
  */
7819
7832
  AddressChargePrepaid: AddressChargePrepaid;
7820
7833
  }
7834
+ /**
7835
+ * 描述网络中心每个产品的配额信息
7836
+ */
7837
+ export interface ProductQuota {
7838
+ /**
7839
+ * 产品配额ID
7840
+ */
7841
+ QuotaId: string;
7842
+ /**
7843
+ * 产品配额名称
7844
+ */
7845
+ QuotaName: string;
7846
+ /**
7847
+ * 产品当前配额
7848
+ */
7849
+ QuotaCurrent: number;
7850
+ /**
7851
+ * 产品配额上限
7852
+ */
7853
+ QuotaLimit: number;
7854
+ /**
7855
+ * 产品配额是否有地域属性
7856
+ */
7857
+ QuotaRegion: boolean;
7858
+ }
7821
7859
  /**
7822
7860
  * DisableRoutes返回参数结构体
7823
7861
  */