tencentcloud-sdk-nodejs-vpc 4.0.211 → 4.0.220
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 +958 -195
- package/package.json +2 -2
- package/products.md +39 -39
- package/src/services/vpc/v20170312/vpc_client.ts +99 -36
- package/src/services/vpc/v20170312/vpc_models.ts +269 -32
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +37 -17
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +50 -20
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +233 -30
|
@@ -141,6 +141,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
141
141
|
async ModifyFlowLogAttribute(req, cb) {
|
|
142
142
|
return this.request("ModifyFlowLogAttribute", req, cb);
|
|
143
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* 修改弹性网卡服务质量
|
|
146
|
+
*/
|
|
147
|
+
async ModifyNetworkInterfaceQos(req, cb) {
|
|
148
|
+
return this.request("ModifyNetworkInterfaceQos", req, cb);
|
|
149
|
+
}
|
|
144
150
|
/**
|
|
145
151
|
* 本接口(DisassociateNetworkInterfaceSecurityGroups)用于弹性网卡解绑安全组。支持弹性网卡完全解绑安全组。
|
|
146
152
|
*/
|
|
@@ -181,10 +187,11 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
181
187
|
return this.request("DescribeNetDetects", req, cb);
|
|
182
188
|
}
|
|
183
189
|
/**
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
190
|
+
* 本接口(DescribeVpcPrivateIpAddresses)用于查询VPC内网IP信息。<br />
|
|
191
|
+
只能查询已使用的IP信息,当查询未使用的IP时,本接口不会报错,但不会出现在返回结果里。
|
|
192
|
+
*/
|
|
193
|
+
async DescribeVpcPrivateIpAddresses(req, cb) {
|
|
194
|
+
return this.request("DescribeVpcPrivateIpAddresses", req, cb);
|
|
188
195
|
}
|
|
189
196
|
/**
|
|
190
197
|
* 本接口(DescribeGatewayFlowMonitorDetail)用于查询网关流量监控明细。
|
|
@@ -342,6 +349,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
342
349
|
async DescribeVpcEndPointService(req, cb) {
|
|
343
350
|
return this.request("DescribeVpcEndPointService", req, cb);
|
|
344
351
|
}
|
|
352
|
+
/**
|
|
353
|
+
* 刷新专线直连nat路由,更新nat到专线的路由表
|
|
354
|
+
*/
|
|
355
|
+
async RefreshDirectConnectGatewayRouteToNatGateway(req, cb) {
|
|
356
|
+
return this.request("RefreshDirectConnectGatewayRouteToNatGateway", req, cb);
|
|
357
|
+
}
|
|
345
358
|
/**
|
|
346
359
|
* 本接口(CreateAndAttachNetworkInterface)用于创建弹性网卡并绑定云服务器。
|
|
347
360
|
* 创建弹性网卡时可以指定内网IP,并且可以指定一个主IP,指定的内网IP必须在弹性网卡所在子网内,而且不能被占用。
|
|
@@ -487,10 +500,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
487
500
|
return this.request("AcceptAttachCcnInstances", req, cb);
|
|
488
501
|
}
|
|
489
502
|
/**
|
|
490
|
-
*
|
|
503
|
+
* 删除模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
491
504
|
*/
|
|
492
|
-
async
|
|
493
|
-
return this.request("
|
|
505
|
+
async DeleteTemplateMember(req, cb) {
|
|
506
|
+
return this.request("DeleteTemplateMember", req, cb);
|
|
494
507
|
}
|
|
495
508
|
/**
|
|
496
509
|
* 本接口(DeleteServiceTemplateGroup)用于删除协议端口模板集合
|
|
@@ -504,6 +517,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
504
517
|
async DescribeGatewayFlowQos(req, cb) {
|
|
505
518
|
return this.request("DescribeGatewayFlowQos", req, cb);
|
|
506
519
|
}
|
|
520
|
+
/**
|
|
521
|
+
* 修改模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
522
|
+
*/
|
|
523
|
+
async ModifyTemplateMember(req, cb) {
|
|
524
|
+
return this.request("ModifyTemplateMember", req, cb);
|
|
525
|
+
}
|
|
507
526
|
/**
|
|
508
527
|
* 将专线网关与NAT网关解绑,解绑之后,专线网关将不能通过NAT网关访问公网
|
|
509
528
|
*/
|
|
@@ -662,6 +681,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
662
681
|
async DescribeLocalGateway(req, cb) {
|
|
663
682
|
return this.request("DescribeLocalGateway", req, cb);
|
|
664
683
|
}
|
|
684
|
+
/**
|
|
685
|
+
* 本接口(MigratePrivateIpAddress)用于弹性网卡内网IP迁移。
|
|
686
|
+
* 该接口用于将一个内网IP从一个弹性网卡上迁移到另外一个弹性网卡,主IP地址不支持迁移。
|
|
687
|
+
* 迁移前后的弹性网卡必须在同一个子网内。
|
|
688
|
+
|
|
689
|
+
本接口是异步完成,如需查询异步任务执行结果,请使用本接口返回的`RequestId`轮询`DescribeVpcTaskResult`接口。
|
|
690
|
+
*/
|
|
691
|
+
async MigratePrivateIpAddress(req, cb) {
|
|
692
|
+
return this.request("MigratePrivateIpAddress", req, cb);
|
|
693
|
+
}
|
|
665
694
|
/**
|
|
666
695
|
* 本接口(DescribeFlowLogs)用于查询获取流日志集合
|
|
667
696
|
*/
|
|
@@ -1207,11 +1236,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1207
1236
|
return this.request("WithdrawNotifyRoutes", req, cb);
|
|
1208
1237
|
}
|
|
1209
1238
|
/**
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
return this.request("DescribeVpcPrivateIpAddresses", req, cb);
|
|
1239
|
+
* 查询专线绑定NAT的路由
|
|
1240
|
+
*/
|
|
1241
|
+
async DescribeNatGatewayDirectConnectGatewayRoute(req, cb) {
|
|
1242
|
+
return this.request("DescribeNatGatewayDirectConnectGatewayRoute", req, cb);
|
|
1215
1243
|
}
|
|
1216
1244
|
/**
|
|
1217
1245
|
* 本接口(ModifyIpv6AddressesAttribute)用于修改弹性网卡内网IPv6地址属性。
|
|
@@ -1249,14 +1277,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1249
1277
|
return this.request("AssignIpv6Addresses", req, cb);
|
|
1250
1278
|
}
|
|
1251
1279
|
/**
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
本接口是异步完成,如需查询异步任务执行结果,请使用本接口返回的`RequestId`轮询`DescribeVpcTaskResult`接口。
|
|
1257
|
-
*/
|
|
1258
|
-
async MigratePrivateIpAddress(req, cb) {
|
|
1259
|
-
return this.request("MigratePrivateIpAddress", req, cb);
|
|
1280
|
+
* 本接口(DescribePriceCreateDirectConnectGateway)用于创建专线网关询价。
|
|
1281
|
+
*/
|
|
1282
|
+
async InquirePriceCreateDirectConnectGateway(req, cb) {
|
|
1283
|
+
return this.request("InquirePriceCreateDirectConnectGateway", req, cb);
|
|
1260
1284
|
}
|
|
1261
1285
|
/**
|
|
1262
1286
|
* 本接口(DescribeIpGeolocationInfos)用于查询IP地址信息,包括地理位置信息和网络信息。
|
|
@@ -1338,6 +1362,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
1338
1362
|
async CreateNatGatewaySourceIpTranslationNatRule(req, cb) {
|
|
1339
1363
|
return this.request("CreateNatGatewaySourceIpTranslationNatRule", req, cb);
|
|
1340
1364
|
}
|
|
1365
|
+
/**
|
|
1366
|
+
* 增加模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
1367
|
+
*/
|
|
1368
|
+
async AddTemplateMember(req, cb) {
|
|
1369
|
+
return this.request("AddTemplateMember", req, cb);
|
|
1370
|
+
}
|
|
1341
1371
|
/**
|
|
1342
1372
|
* 1. 该接口用于删除IPV6转换规则
|
|
1343
1373
|
2. 支持批量删除同一个转换实例下的多个转换规则
|
|
@@ -197,7 +197,7 @@ export interface CreateCcnResponse {
|
|
|
197
197
|
/**
|
|
198
198
|
* 云联网(CCN)对象。
|
|
199
199
|
*/
|
|
200
|
-
Ccn
|
|
200
|
+
Ccn: CCN;
|
|
201
201
|
/**
|
|
202
202
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
203
203
|
*/
|
|
@@ -471,6 +471,15 @@ export interface DescribeIpGeolocationInfosRequest {
|
|
|
471
471
|
*/
|
|
472
472
|
Fields?: IpField;
|
|
473
473
|
}
|
|
474
|
+
/**
|
|
475
|
+
* AddTemplateMember返回参数结构体
|
|
476
|
+
*/
|
|
477
|
+
export interface AddTemplateMemberResponse {
|
|
478
|
+
/**
|
|
479
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
480
|
+
*/
|
|
481
|
+
RequestId?: string;
|
|
482
|
+
}
|
|
474
483
|
/**
|
|
475
484
|
* CreateDefaultSecurityGroup请求参数结构体
|
|
476
485
|
*/
|
|
@@ -979,6 +988,19 @@ export interface DescribeFlowLogsRequest {
|
|
|
979
988
|
*/
|
|
980
989
|
Filters?: Filter;
|
|
981
990
|
}
|
|
991
|
+
/**
|
|
992
|
+
* DeleteTemplateMember请求参数结构体
|
|
993
|
+
*/
|
|
994
|
+
export interface DeleteTemplateMemberRequest {
|
|
995
|
+
/**
|
|
996
|
+
* 参数模板实例ID,支持IP地址、协议端口、IP地址组、协议端口组四种参数模板的实例ID。
|
|
997
|
+
*/
|
|
998
|
+
TemplateId: string;
|
|
999
|
+
/**
|
|
1000
|
+
* 需要添加的参数模板成员信息,支持IP地址、协议端口、IP地址组、协议端口组四种类型,类型需要与TemplateId参数类型一致。
|
|
1001
|
+
*/
|
|
1002
|
+
TemplateMember: Array<MemberInfo>;
|
|
1003
|
+
}
|
|
982
1004
|
/**
|
|
983
1005
|
* CloneSecurityGroup请求参数结构体
|
|
984
1006
|
*/
|
|
@@ -1104,6 +1126,10 @@ export interface ModifyBandwidthPackageAttributeRequest {
|
|
|
1104
1126
|
* 带宽包计费模式
|
|
1105
1127
|
*/
|
|
1106
1128
|
ChargeType?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* 退款时迁移为后付费带宽包。默认值:否
|
|
1131
|
+
*/
|
|
1132
|
+
MigrateOnRefund?: boolean;
|
|
1107
1133
|
}
|
|
1108
1134
|
/**
|
|
1109
1135
|
* TransformAddress返回参数结构体
|
|
@@ -2187,6 +2213,23 @@ export interface DescribeSecurityGroupsRequest {
|
|
|
2187
2213
|
*/
|
|
2188
2214
|
Limit?: string;
|
|
2189
2215
|
}
|
|
2216
|
+
/**
|
|
2217
|
+
* RefreshDirectConnectGatewayRouteToNatGateway请求参数结构体
|
|
2218
|
+
*/
|
|
2219
|
+
export interface RefreshDirectConnectGatewayRouteToNatGatewayRequest {
|
|
2220
|
+
/**
|
|
2221
|
+
* vpc的ID
|
|
2222
|
+
*/
|
|
2223
|
+
VpcId: string;
|
|
2224
|
+
/**
|
|
2225
|
+
* NAT网关ID
|
|
2226
|
+
*/
|
|
2227
|
+
NatGatewayId: string;
|
|
2228
|
+
/**
|
|
2229
|
+
* 是否是预刷新;True:是, False:否
|
|
2230
|
+
*/
|
|
2231
|
+
DryRun: boolean;
|
|
2232
|
+
}
|
|
2190
2233
|
/**
|
|
2191
2234
|
* DescribeNatGatewayDestinationIpPortTranslationNatRules请求参数结构体
|
|
2192
2235
|
*/
|
|
@@ -2605,21 +2648,13 @@ export interface CreateNatGatewayResponse {
|
|
|
2605
2648
|
RequestId?: string;
|
|
2606
2649
|
}
|
|
2607
2650
|
/**
|
|
2608
|
-
*
|
|
2651
|
+
* DescribeIp6TranslatorQuota请求参数结构体
|
|
2609
2652
|
*/
|
|
2610
|
-
export interface
|
|
2611
|
-
/**
|
|
2612
|
-
* 符合条件的对象数。
|
|
2613
|
-
*/
|
|
2614
|
-
TotalCount: number;
|
|
2615
|
-
/**
|
|
2616
|
-
* VPC对象。
|
|
2617
|
-
*/
|
|
2618
|
-
VpcSet: Array<Vpc>;
|
|
2653
|
+
export interface DescribeIp6TranslatorQuotaRequest {
|
|
2619
2654
|
/**
|
|
2620
|
-
*
|
|
2655
|
+
* 待查询IPV6转换实例的唯一ID列表,形如ip6-xxxxxxxx
|
|
2621
2656
|
*/
|
|
2622
|
-
|
|
2657
|
+
Ip6TranslatorIds?: Array<string>;
|
|
2623
2658
|
}
|
|
2624
2659
|
/**
|
|
2625
2660
|
* ModifySecurityGroupAttribute请求参数结构体
|
|
@@ -2977,6 +3012,15 @@ export interface CcnRoute {
|
|
|
2977
3012
|
*/
|
|
2978
3013
|
InstanceExtraName: string;
|
|
2979
3014
|
}
|
|
3015
|
+
/**
|
|
3016
|
+
* ModifyIpv6AddressesAttribute返回参数结构体
|
|
3017
|
+
*/
|
|
3018
|
+
export interface ModifyIpv6AddressesAttributeResponse {
|
|
3019
|
+
/**
|
|
3020
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3021
|
+
*/
|
|
3022
|
+
RequestId?: string;
|
|
3023
|
+
}
|
|
2980
3024
|
/**
|
|
2981
3025
|
* DeleteSecurityGroupPolicies请求参数结构体
|
|
2982
3026
|
*/
|
|
@@ -3153,6 +3197,27 @@ export interface CreateAddressTemplateGroupRequest {
|
|
|
3153
3197
|
*/
|
|
3154
3198
|
AddressTemplateIds: Array<string>;
|
|
3155
3199
|
}
|
|
3200
|
+
/**
|
|
3201
|
+
* DescribeNatGatewayDirectConnectGatewayRoute请求参数结构体
|
|
3202
|
+
*/
|
|
3203
|
+
export interface DescribeNatGatewayDirectConnectGatewayRouteRequest {
|
|
3204
|
+
/**
|
|
3205
|
+
* nat的唯一标识
|
|
3206
|
+
*/
|
|
3207
|
+
NatGatewayId: string;
|
|
3208
|
+
/**
|
|
3209
|
+
* vpc的唯一标识
|
|
3210
|
+
*/
|
|
3211
|
+
VpcId: string;
|
|
3212
|
+
/**
|
|
3213
|
+
* 0到200之间
|
|
3214
|
+
*/
|
|
3215
|
+
Limit?: number;
|
|
3216
|
+
/**
|
|
3217
|
+
* 大于0
|
|
3218
|
+
*/
|
|
3219
|
+
Offset?: number;
|
|
3220
|
+
}
|
|
3156
3221
|
/**
|
|
3157
3222
|
* DescribeCustomerGatewayVendors返回参数结构体
|
|
3158
3223
|
*/
|
|
@@ -3575,11 +3640,11 @@ export interface DescribeCcnsResponse {
|
|
|
3575
3640
|
/**
|
|
3576
3641
|
* 符合条件的对象数。
|
|
3577
3642
|
*/
|
|
3578
|
-
TotalCount
|
|
3643
|
+
TotalCount: number;
|
|
3579
3644
|
/**
|
|
3580
3645
|
* CCN对象。
|
|
3581
3646
|
*/
|
|
3582
|
-
CcnSet
|
|
3647
|
+
CcnSet: Array<CCN>;
|
|
3583
3648
|
/**
|
|
3584
3649
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3585
3650
|
*/
|
|
@@ -3905,11 +3970,11 @@ export interface DescribeCcnAttachedInstancesResponse {
|
|
|
3905
3970
|
/**
|
|
3906
3971
|
* 符合条件的对象数。
|
|
3907
3972
|
*/
|
|
3908
|
-
TotalCount
|
|
3973
|
+
TotalCount: number;
|
|
3909
3974
|
/**
|
|
3910
3975
|
* 关联实例列表。
|
|
3911
3976
|
*/
|
|
3912
|
-
InstanceSet
|
|
3977
|
+
InstanceSet: Array<CcnAttachedInstance>;
|
|
3913
3978
|
/**
|
|
3914
3979
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3915
3980
|
*/
|
|
@@ -4358,13 +4423,17 @@ export interface VpnGatewayRouteModify {
|
|
|
4358
4423
|
Status: string;
|
|
4359
4424
|
}
|
|
4360
4425
|
/**
|
|
4361
|
-
*
|
|
4426
|
+
* 模板对象成员信息
|
|
4362
4427
|
*/
|
|
4363
|
-
export interface
|
|
4428
|
+
export interface MemberInfo {
|
|
4364
4429
|
/**
|
|
4365
|
-
*
|
|
4430
|
+
* 模板对象成员
|
|
4366
4431
|
*/
|
|
4367
|
-
|
|
4432
|
+
Member: string;
|
|
4433
|
+
/**
|
|
4434
|
+
* 模板对象成员描述信息
|
|
4435
|
+
*/
|
|
4436
|
+
Description?: string;
|
|
4368
4437
|
}
|
|
4369
4438
|
/**
|
|
4370
4439
|
* ReplaceSecurityGroupPolicy请求参数结构体
|
|
@@ -5007,13 +5076,21 @@ export interface DisassociateNetworkInterfaceSecurityGroupsResponse {
|
|
|
5007
5076
|
RequestId?: string;
|
|
5008
5077
|
}
|
|
5009
5078
|
/**
|
|
5010
|
-
*
|
|
5079
|
+
* DescribeVpcs返回参数结构体
|
|
5011
5080
|
*/
|
|
5012
|
-
export interface
|
|
5081
|
+
export interface DescribeVpcsResponse {
|
|
5013
5082
|
/**
|
|
5014
|
-
*
|
|
5083
|
+
* 符合条件的对象数。
|
|
5015
5084
|
*/
|
|
5016
|
-
|
|
5085
|
+
TotalCount: number;
|
|
5086
|
+
/**
|
|
5087
|
+
* VPC对象。
|
|
5088
|
+
*/
|
|
5089
|
+
VpcSet: Array<Vpc>;
|
|
5090
|
+
/**
|
|
5091
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5092
|
+
*/
|
|
5093
|
+
RequestId?: string;
|
|
5017
5094
|
}
|
|
5018
5095
|
/**
|
|
5019
5096
|
* DescribeNetworkInterfaceLimit返回参数结构体
|
|
@@ -5084,6 +5161,15 @@ export interface CreateCcnRequest {
|
|
|
5084
5161
|
*/
|
|
5085
5162
|
Tags?: Array<Tag>;
|
|
5086
5163
|
}
|
|
5164
|
+
/**
|
|
5165
|
+
* DeleteTemplateMember返回参数结构体
|
|
5166
|
+
*/
|
|
5167
|
+
export interface DeleteTemplateMemberResponse {
|
|
5168
|
+
/**
|
|
5169
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5170
|
+
*/
|
|
5171
|
+
RequestId?: string;
|
|
5172
|
+
}
|
|
5087
5173
|
/**
|
|
5088
5174
|
* ModifyNatGatewaySourceIpTranslationNatRule请求参数结构体
|
|
5089
5175
|
*/
|
|
@@ -6974,6 +7060,23 @@ export interface DescribeCcnRegionBandwidthLimitsResponse {
|
|
|
6974
7060
|
*/
|
|
6975
7061
|
RequestId?: string;
|
|
6976
7062
|
}
|
|
7063
|
+
/**
|
|
7064
|
+
* ModifyTemplateMember请求参数结构体
|
|
7065
|
+
*/
|
|
7066
|
+
export interface ModifyTemplateMemberRequest {
|
|
7067
|
+
/**
|
|
7068
|
+
* 参数模板实例ID,支持IP地址、协议端口、IP地址组、协议端口组四种参数模板的实例ID。
|
|
7069
|
+
*/
|
|
7070
|
+
TemplateId: string;
|
|
7071
|
+
/**
|
|
7072
|
+
* 需要修改的参数模板成员信息,支持IP地址、协议端口、IP地址组、协议端口组四种类型,类型需要与TemplateId参数类型一致,修改顺序与TemplateMember参数顺序一一对应,入参长度需要与TemplateMember参数保持一致。
|
|
7073
|
+
*/
|
|
7074
|
+
OriginalTemplateMember: Array<MemberInfo>;
|
|
7075
|
+
/**
|
|
7076
|
+
* 新的参数模板成员信息,支持IP地址、协议端口、IP地址组、协议端口组四种类型,类型需要与TemplateId参数类型一致,修改顺序与OriginalTemplateMember参数顺序一一对应,入参长度需要与OriginalTemplateMember参数保持一致。
|
|
7077
|
+
*/
|
|
7078
|
+
TemplateMember: Array<MemberInfo>;
|
|
7079
|
+
}
|
|
6977
7080
|
/**
|
|
6978
7081
|
* DescribeAddresses返回参数结构体
|
|
6979
7082
|
*/
|
|
@@ -7713,9 +7816,9 @@ export interface DeleteAssistantCidrRequest {
|
|
|
7713
7816
|
CidrBlocks: Array<string>;
|
|
7714
7817
|
}
|
|
7715
7818
|
/**
|
|
7716
|
-
*
|
|
7819
|
+
* ModifyTemplateMember返回参数结构体
|
|
7717
7820
|
*/
|
|
7718
|
-
export interface
|
|
7821
|
+
export interface ModifyTemplateMemberResponse {
|
|
7719
7822
|
/**
|
|
7720
7823
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7721
7824
|
*/
|
|
@@ -7742,6 +7845,23 @@ export interface SubnetInput {
|
|
|
7742
7845
|
*/
|
|
7743
7846
|
RouteTableId?: string;
|
|
7744
7847
|
}
|
|
7848
|
+
/**
|
|
7849
|
+
* DescribeNatGatewayDirectConnectGatewayRoute返回参数结构体
|
|
7850
|
+
*/
|
|
7851
|
+
export interface DescribeNatGatewayDirectConnectGatewayRouteResponse {
|
|
7852
|
+
/**
|
|
7853
|
+
* 路由数据
|
|
7854
|
+
*/
|
|
7855
|
+
NatDirectConnectGatewayRouteSet: Array<NatDirectConnectGatewayRoute>;
|
|
7856
|
+
/**
|
|
7857
|
+
* 路由总数
|
|
7858
|
+
*/
|
|
7859
|
+
Total: number;
|
|
7860
|
+
/**
|
|
7861
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7862
|
+
*/
|
|
7863
|
+
RequestId?: string;
|
|
7864
|
+
}
|
|
7745
7865
|
/**
|
|
7746
7866
|
* EnableVpcEndPointConnect返回参数结构体
|
|
7747
7867
|
*/
|
|
@@ -7918,11 +8038,11 @@ export interface ModifyCcnAttributeRequest {
|
|
|
7918
8038
|
*/
|
|
7919
8039
|
CcnId: string;
|
|
7920
8040
|
/**
|
|
7921
|
-
* CCN名称,最大长度不能超过60
|
|
8041
|
+
* CCN名称,最大长度不能超过60个字节,限制:CcnName和CcnDescription必须至少选择一个参数输入,否则报错。
|
|
7922
8042
|
*/
|
|
7923
8043
|
CcnName?: string;
|
|
7924
8044
|
/**
|
|
7925
|
-
* CCN描述信息,最大长度不能超过100
|
|
8045
|
+
* CCN描述信息,最大长度不能超过100个字节,限制:CcnName和CcnDescription必须至少选择一个参数输入,否则报错。
|
|
7926
8046
|
*/
|
|
7927
8047
|
CcnDescription?: string;
|
|
7928
8048
|
}
|
|
@@ -9160,6 +9280,19 @@ export interface DescribeServiceTemplatesRequest {
|
|
|
9160
9280
|
*/
|
|
9161
9281
|
Limit?: string;
|
|
9162
9282
|
}
|
|
9283
|
+
/**
|
|
9284
|
+
* RefreshDirectConnectGatewayRouteToNatGateway返回参数结构体
|
|
9285
|
+
*/
|
|
9286
|
+
export interface RefreshDirectConnectGatewayRouteToNatGatewayResponse {
|
|
9287
|
+
/**
|
|
9288
|
+
* IDC子网信息
|
|
9289
|
+
*/
|
|
9290
|
+
DirectConnectSubnetSet: Array<DirectConnectSubnet>;
|
|
9291
|
+
/**
|
|
9292
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9293
|
+
*/
|
|
9294
|
+
RequestId?: string;
|
|
9295
|
+
}
|
|
9163
9296
|
/**
|
|
9164
9297
|
* DeleteRouteTable请求参数结构体
|
|
9165
9298
|
*/
|
|
@@ -9272,7 +9405,7 @@ export interface ReleaseAddressesResponse {
|
|
|
9272
9405
|
/**
|
|
9273
9406
|
* 异步任务TaskId。可以使用[DescribeTaskResult](https://cloud.tencent.com/document/api/215/36271)接口查询任务状态。
|
|
9274
9407
|
*/
|
|
9275
|
-
TaskId
|
|
9408
|
+
TaskId: string;
|
|
9276
9409
|
/**
|
|
9277
9410
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9278
9411
|
*/
|
|
@@ -9678,6 +9811,32 @@ export interface DescribeRouteConflictsRequest {
|
|
|
9678
9811
|
*/
|
|
9679
9812
|
DestinationCidrBlocks: Array<string>;
|
|
9680
9813
|
}
|
|
9814
|
+
/**
|
|
9815
|
+
* 查询nat路由的返回路由对象
|
|
9816
|
+
*/
|
|
9817
|
+
export interface NatDirectConnectGatewayRoute {
|
|
9818
|
+
/**
|
|
9819
|
+
* 子网的 `IPv4` `CIDR`
|
|
9820
|
+
*/
|
|
9821
|
+
DestinationCidrBlock: string;
|
|
9822
|
+
/**
|
|
9823
|
+
* 下一跳网关的类型,目前此接口支持的类型有:
|
|
9824
|
+
DIRECTCONNECT:专线网关
|
|
9825
|
+
*/
|
|
9826
|
+
GatewayType: string;
|
|
9827
|
+
/**
|
|
9828
|
+
* 下一跳网关ID
|
|
9829
|
+
*/
|
|
9830
|
+
GatewayId: string;
|
|
9831
|
+
/**
|
|
9832
|
+
* 路由的创建时间
|
|
9833
|
+
*/
|
|
9834
|
+
CreateTime: string;
|
|
9835
|
+
/**
|
|
9836
|
+
* 路由的更新时间
|
|
9837
|
+
*/
|
|
9838
|
+
UpdateTime: string;
|
|
9839
|
+
}
|
|
9681
9840
|
/**
|
|
9682
9841
|
* 子网对象
|
|
9683
9842
|
*/
|
|
@@ -9840,6 +9999,11 @@ export interface SecurityGroup {
|
|
|
9840
9999
|
* 标签键值对。
|
|
9841
10000
|
*/
|
|
9842
10001
|
TagSet?: Array<Tag>;
|
|
10002
|
+
/**
|
|
10003
|
+
* 安全组更新时间。
|
|
10004
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10005
|
+
*/
|
|
10006
|
+
UpdateTime?: string;
|
|
9843
10007
|
}
|
|
9844
10008
|
/**
|
|
9845
10009
|
* DisableGatewayFlowMonitor返回参数结构体
|
|
@@ -9863,6 +10027,19 @@ export interface DisassociateAddressResponse {
|
|
|
9863
10027
|
*/
|
|
9864
10028
|
RequestId?: string;
|
|
9865
10029
|
}
|
|
10030
|
+
/**
|
|
10031
|
+
* IDC子网信息
|
|
10032
|
+
*/
|
|
10033
|
+
export interface DirectConnectSubnet {
|
|
10034
|
+
/**
|
|
10035
|
+
* 专线网关ID
|
|
10036
|
+
*/
|
|
10037
|
+
DirectConnectGatewayId: string;
|
|
10038
|
+
/**
|
|
10039
|
+
* IDC子网网段
|
|
10040
|
+
*/
|
|
10041
|
+
CidrBlock: string;
|
|
10042
|
+
}
|
|
9866
10043
|
/**
|
|
9867
10044
|
* DescribeVpnGatewayRoutes请求参数结构体
|
|
9868
10045
|
*/
|
|
@@ -10143,6 +10320,10 @@ export interface UnassignPrivateIpAddressesRequest {
|
|
|
10143
10320
|
* 指定的内网IP信息,单次最多指定10个。
|
|
10144
10321
|
*/
|
|
10145
10322
|
PrivateIpAddresses: Array<PrivateIpAddressSpecification>;
|
|
10323
|
+
/**
|
|
10324
|
+
* 网卡绑定的子机实例ID,该参数仅用于指定网卡退还IP并解绑子机的场景,如果不涉及解绑子机,请勿填写。
|
|
10325
|
+
*/
|
|
10326
|
+
InstanceId?: string;
|
|
10146
10327
|
}
|
|
10147
10328
|
/**
|
|
10148
10329
|
* DeleteVpnGatewayRoutes请求参数结构体
|
|
@@ -10875,6 +11056,15 @@ export interface ModifySubnetAttributeRequest {
|
|
|
10875
11056
|
*/
|
|
10876
11057
|
EnableBroadcast?: string;
|
|
10877
11058
|
}
|
|
11059
|
+
/**
|
|
11060
|
+
* ModifyVpcEndPointServiceWhiteList返回参数结构体
|
|
11061
|
+
*/
|
|
11062
|
+
export interface ModifyVpcEndPointServiceWhiteListResponse {
|
|
11063
|
+
/**
|
|
11064
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11065
|
+
*/
|
|
11066
|
+
RequestId?: string;
|
|
11067
|
+
}
|
|
10878
11068
|
/**
|
|
10879
11069
|
* DescribeBandwidthPackageQuota请求参数结构体
|
|
10880
11070
|
*/
|
|
@@ -10892,6 +11082,19 @@ export interface DeleteVpcResponse {
|
|
|
10892
11082
|
* DescribeTemplateLimits请求参数结构体
|
|
10893
11083
|
*/
|
|
10894
11084
|
export declare type DescribeTemplateLimitsRequest = null;
|
|
11085
|
+
/**
|
|
11086
|
+
* AddTemplateMember请求参数结构体
|
|
11087
|
+
*/
|
|
11088
|
+
export interface AddTemplateMemberRequest {
|
|
11089
|
+
/**
|
|
11090
|
+
* 参数模板实例ID,支持IP地址、协议端口、IP地址组、协议端口组四种参数模板的实例ID。
|
|
11091
|
+
*/
|
|
11092
|
+
TemplateId: string;
|
|
11093
|
+
/**
|
|
11094
|
+
* 需要添加的参数模板成员信息,支持IP地址、协议端口、IP地址组、协议端口组四种类型,类型需要与TemplateId参数类型一致。
|
|
11095
|
+
*/
|
|
11096
|
+
TemplateMember: Array<MemberInfo>;
|
|
11097
|
+
}
|
|
10895
11098
|
/**
|
|
10896
11099
|
* DescribeVpcEndPointServiceWhiteList返回参数结构体
|
|
10897
11100
|
*/
|