tencentcloud-sdk-nodejs-vpc 4.0.275 → 4.0.279
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/CHANGELOG.md +665 -0
- package/SERVICE_CHANGELOG.md +674 -217
- package/package.json +1 -1
- package/products.md +42 -42
- package/src/services/vpc/v20170312/vpc_client.ts +2 -1
- package/src/services/vpc/v20170312/vpc_models.ts +85 -42
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +74 -38
|
@@ -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返回参数结构体
|
|
@@ -1640,11 +1654,11 @@ export interface DescribeIpGeolocationDatabaseUrlResponse {
|
|
|
1640
1654
|
/**
|
|
1641
1655
|
* IP地理位置库下载链接地址。
|
|
1642
1656
|
*/
|
|
1643
|
-
DownLoadUrl
|
|
1657
|
+
DownLoadUrl: string;
|
|
1644
1658
|
/**
|
|
1645
1659
|
* 链接到期时间。按照`ISO8601`标准表示,并且使用`UTC`时间。
|
|
1646
1660
|
*/
|
|
1647
|
-
ExpiredAt
|
|
1661
|
+
ExpiredAt: string;
|
|
1648
1662
|
/**
|
|
1649
1663
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1650
1664
|
*/
|
|
@@ -3382,29 +3396,18 @@ export interface DescribeNatGatewayDestinationIpPortTranslationNatRulesResponse
|
|
|
3382
3396
|
RequestId?: string;
|
|
3383
3397
|
}
|
|
3384
3398
|
/**
|
|
3385
|
-
*
|
|
3399
|
+
* 流日志存储信息
|
|
3386
3400
|
*/
|
|
3387
|
-
export interface
|
|
3388
|
-
/**
|
|
3389
|
-
* 产品配额ID
|
|
3390
|
-
*/
|
|
3391
|
-
QuotaId: string;
|
|
3392
|
-
/**
|
|
3393
|
-
* 产品配额名称
|
|
3394
|
-
*/
|
|
3395
|
-
QuotaName: string;
|
|
3401
|
+
export interface FlowLogStorage {
|
|
3396
3402
|
/**
|
|
3397
|
-
*
|
|
3403
|
+
* 存储实例Id,当流日志存储类型为ckafka时,必填。
|
|
3398
3404
|
*/
|
|
3399
|
-
|
|
3405
|
+
StorageId: string;
|
|
3400
3406
|
/**
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
* 产品配额是否有地域属性
|
|
3406
|
-
*/
|
|
3407
|
-
QuotaRegion: boolean;
|
|
3407
|
+
* 主题Id,当流日志存储类型为ckafka时,必填。
|
|
3408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3409
|
+
*/
|
|
3410
|
+
StorageTopic?: string;
|
|
3408
3411
|
}
|
|
3409
3412
|
/**
|
|
3410
3413
|
* DescribeVpcIpv6Addresses返回参数结构体
|
|
@@ -6134,11 +6137,11 @@ export interface DescribeFlowLogsResponse {
|
|
|
6134
6137
|
/**
|
|
6135
6138
|
* 流日志实例集合
|
|
6136
6139
|
*/
|
|
6137
|
-
FlowLog
|
|
6140
|
+
FlowLog: Array<FlowLog>;
|
|
6138
6141
|
/**
|
|
6139
6142
|
* 流日志总数目
|
|
6140
6143
|
*/
|
|
6141
|
-
TotalNum
|
|
6144
|
+
TotalNum: number;
|
|
6142
6145
|
/**
|
|
6143
6146
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6144
6147
|
*/
|
|
@@ -7492,10 +7495,6 @@ export interface CreateFlowLogRequest {
|
|
|
7492
7495
|
* 流日志采集类型,ACCEPT|REJECT|ALL
|
|
7493
7496
|
*/
|
|
7494
7497
|
TrafficType: string;
|
|
7495
|
-
/**
|
|
7496
|
-
* 流日志存储ID
|
|
7497
|
-
*/
|
|
7498
|
-
CloudLogId: string;
|
|
7499
7498
|
/**
|
|
7500
7499
|
* 私用网络ID或者统一ID,建议使用统一ID,当ResourceType为CCN时不填,其他类型必填。
|
|
7501
7500
|
*/
|
|
@@ -7504,10 +7503,22 @@ export interface CreateFlowLogRequest {
|
|
|
7504
7503
|
* 流日志实例描述
|
|
7505
7504
|
*/
|
|
7506
7505
|
FlowLogDescription?: string;
|
|
7506
|
+
/**
|
|
7507
|
+
* 流日志存储ID
|
|
7508
|
+
*/
|
|
7509
|
+
CloudLogId?: string;
|
|
7507
7510
|
/**
|
|
7508
7511
|
* 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]
|
|
7509
7512
|
*/
|
|
7510
7513
|
Tags?: Array<Tag>;
|
|
7514
|
+
/**
|
|
7515
|
+
* 消费端类型:cls、ckafka
|
|
7516
|
+
*/
|
|
7517
|
+
StorageType?: string;
|
|
7518
|
+
/**
|
|
7519
|
+
* 流日志消费端信息,当消费端类型为ckafka时,必填。
|
|
7520
|
+
*/
|
|
7521
|
+
FlowLogStorage?: FlowLogStorage;
|
|
7511
7522
|
}
|
|
7512
7523
|
/**
|
|
7513
7524
|
* InquirePriceCreateDirectConnectGateway请求参数结构体
|
|
@@ -7818,6 +7829,31 @@ export interface RenewAddressesRequest {
|
|
|
7818
7829
|
*/
|
|
7819
7830
|
AddressChargePrepaid: AddressChargePrepaid;
|
|
7820
7831
|
}
|
|
7832
|
+
/**
|
|
7833
|
+
* 描述网络中心每个产品的配额信息
|
|
7834
|
+
*/
|
|
7835
|
+
export interface ProductQuota {
|
|
7836
|
+
/**
|
|
7837
|
+
* 产品配额ID
|
|
7838
|
+
*/
|
|
7839
|
+
QuotaId: string;
|
|
7840
|
+
/**
|
|
7841
|
+
* 产品配额名称
|
|
7842
|
+
*/
|
|
7843
|
+
QuotaName: string;
|
|
7844
|
+
/**
|
|
7845
|
+
* 产品当前配额
|
|
7846
|
+
*/
|
|
7847
|
+
QuotaCurrent: number;
|
|
7848
|
+
/**
|
|
7849
|
+
* 产品配额上限
|
|
7850
|
+
*/
|
|
7851
|
+
QuotaLimit: number;
|
|
7852
|
+
/**
|
|
7853
|
+
* 产品配额是否有地域属性
|
|
7854
|
+
*/
|
|
7855
|
+
QuotaRegion: boolean;
|
|
7856
|
+
}
|
|
7821
7857
|
/**
|
|
7822
7858
|
* DisableRoutes返回参数结构体
|
|
7823
7859
|
*/
|