tencentcloud-sdk-nodejs-vpc 4.0.595 → 4.0.602
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 +1792 -0
- package/SERVICE_CHANGELOG.md +1832 -83
- package/package.json +1 -1
- package/products.md +193 -193
- package/src/services/vpc/v20170312/vpc_client.ts +59 -19
- package/src/services/vpc/v20170312/vpc_models.ts +300 -79
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +25 -12
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +31 -12
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +263 -76
|
@@ -103,6 +103,18 @@ export interface SecurityGroupLimitSet {
|
|
|
103
103
|
* 实例关联安全组数
|
|
104
104
|
*/
|
|
105
105
|
InstanceSecurityGroupLimit: number;
|
|
106
|
+
/**
|
|
107
|
+
* 安全组展开后的规则数限制
|
|
108
|
+
*/
|
|
109
|
+
SecurityGroupExtendedPolicyLimit?: number;
|
|
110
|
+
/**
|
|
111
|
+
* 被引用的安全组关联CVM、ENI的实例配额
|
|
112
|
+
*/
|
|
113
|
+
SecurityGroupReferedCvmAndEniLimit?: number;
|
|
114
|
+
/**
|
|
115
|
+
* 被引用的安全组关联数据库、LB等服务实例配额
|
|
116
|
+
*/
|
|
117
|
+
SecurityGroupReferedSvcLimit?: number;
|
|
106
118
|
}
|
|
107
119
|
/**
|
|
108
120
|
* LockCcns请求参数结构体
|
|
@@ -670,6 +682,23 @@ export interface DescribeVpcEndPointRequest {
|
|
|
670
682
|
*/
|
|
671
683
|
EndPointId?: Array<string>;
|
|
672
684
|
}
|
|
685
|
+
/**
|
|
686
|
+
* 资源统计项。
|
|
687
|
+
*/
|
|
688
|
+
export interface ResourceStatisticsItem {
|
|
689
|
+
/**
|
|
690
|
+
* 资源类型。比如,CVM,ENI等。
|
|
691
|
+
*/
|
|
692
|
+
ResourceType: string;
|
|
693
|
+
/**
|
|
694
|
+
* 资源名称。
|
|
695
|
+
*/
|
|
696
|
+
ResourceName: string;
|
|
697
|
+
/**
|
|
698
|
+
* 资源个数。
|
|
699
|
+
*/
|
|
700
|
+
ResourceCount: number;
|
|
701
|
+
}
|
|
673
702
|
/**
|
|
674
703
|
* DetachClassicLinkVpc请求参数结构体
|
|
675
704
|
*/
|
|
@@ -911,7 +940,7 @@ export interface DeleteVpnGatewaySslClientResponse {
|
|
|
911
940
|
/**
|
|
912
941
|
* 异步任务ID。
|
|
913
942
|
*/
|
|
914
|
-
TaskId
|
|
943
|
+
TaskId?: number;
|
|
915
944
|
/**
|
|
916
945
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
917
946
|
*/
|
|
@@ -1422,16 +1451,19 @@ export interface DisassociateNetworkInterfaceSecurityGroupsRequest {
|
|
|
1422
1451
|
*/
|
|
1423
1452
|
export interface SecurityGroupPolicySet {
|
|
1424
1453
|
/**
|
|
1425
|
-
|
|
1426
|
-
|
|
1454
|
+
* 安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
|
|
1455
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1456
|
+
*/
|
|
1427
1457
|
Version?: string;
|
|
1428
1458
|
/**
|
|
1429
|
-
|
|
1430
|
-
|
|
1459
|
+
* 出站规则。
|
|
1460
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1461
|
+
*/
|
|
1431
1462
|
Egress?: Array<SecurityGroupPolicy>;
|
|
1432
1463
|
/**
|
|
1433
|
-
|
|
1434
|
-
|
|
1464
|
+
* 入站规则。
|
|
1465
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1466
|
+
*/
|
|
1435
1467
|
Ingress?: Array<SecurityGroupPolicy>;
|
|
1436
1468
|
}
|
|
1437
1469
|
/**
|
|
@@ -1899,9 +1931,13 @@ export interface DescribeDirectConnectGatewaysRequest {
|
|
|
1899
1931
|
*/
|
|
1900
1932
|
export interface DisableVpnGatewaySslClientCertRequest {
|
|
1901
1933
|
/**
|
|
1902
|
-
* SSL-VPN-CLIENT 实例ID
|
|
1934
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
1903
1935
|
*/
|
|
1904
|
-
SslVpnClientId
|
|
1936
|
+
SslVpnClientId?: string;
|
|
1937
|
+
/**
|
|
1938
|
+
* SSL-VPN-CLIENT 实例ID列表。批量禁用时使用。不可和SslVpnClientId同时使用。
|
|
1939
|
+
*/
|
|
1940
|
+
SslVpnClientIds?: Array<string>;
|
|
1905
1941
|
}
|
|
1906
1942
|
/**
|
|
1907
1943
|
* AttachSnapshotInstances请求参数结构体
|
|
@@ -2781,7 +2817,7 @@ export interface DisableVpnGatewaySslClientCertResponse {
|
|
|
2781
2817
|
/**
|
|
2782
2818
|
* 异步任务实例ID。
|
|
2783
2819
|
*/
|
|
2784
|
-
TaskId
|
|
2820
|
+
TaskId?: number;
|
|
2785
2821
|
/**
|
|
2786
2822
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2787
2823
|
*/
|
|
@@ -3392,21 +3428,17 @@ export interface DescribeNetDetectStatesRequest {
|
|
|
3392
3428
|
Limit?: number;
|
|
3393
3429
|
}
|
|
3394
3430
|
/**
|
|
3395
|
-
*
|
|
3431
|
+
* DescribeRouteConflicts请求参数结构体
|
|
3396
3432
|
*/
|
|
3397
|
-
export interface
|
|
3398
|
-
/**
|
|
3399
|
-
* NAT网关对象数组。
|
|
3400
|
-
*/
|
|
3401
|
-
NatGatewaySet: Array<NatGateway>;
|
|
3433
|
+
export interface DescribeRouteConflictsRequest {
|
|
3402
3434
|
/**
|
|
3403
|
-
*
|
|
3435
|
+
* 路由表实例ID,例如:rtb-azd4dt1c。
|
|
3404
3436
|
*/
|
|
3405
|
-
|
|
3437
|
+
RouteTableId: string;
|
|
3406
3438
|
/**
|
|
3407
|
-
*
|
|
3439
|
+
* 要检查的与之冲突的目的端列表。
|
|
3408
3440
|
*/
|
|
3409
|
-
|
|
3441
|
+
DestinationCidrBlocks: Array<string>;
|
|
3410
3442
|
}
|
|
3411
3443
|
/**
|
|
3412
3444
|
* DescribeFlowLog返回参数结构体
|
|
@@ -3482,11 +3514,11 @@ export interface DescribeAssistantCidrResponse {
|
|
|
3482
3514
|
* 符合条件的辅助CIDR数组。
|
|
3483
3515
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3484
3516
|
*/
|
|
3485
|
-
AssistantCidrSet
|
|
3517
|
+
AssistantCidrSet?: Array<AssistantCidr>;
|
|
3486
3518
|
/**
|
|
3487
3519
|
* 符合条件的实例数量。
|
|
3488
3520
|
*/
|
|
3489
|
-
TotalCount
|
|
3521
|
+
TotalCount?: number;
|
|
3490
3522
|
/**
|
|
3491
3523
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3492
3524
|
*/
|
|
@@ -3505,6 +3537,31 @@ export interface BackupPolicy {
|
|
|
3505
3537
|
*/
|
|
3506
3538
|
BackupTime: string;
|
|
3507
3539
|
}
|
|
3540
|
+
/**
|
|
3541
|
+
* 占用ip的资源信息
|
|
3542
|
+
*/
|
|
3543
|
+
export interface IpAddressStates {
|
|
3544
|
+
/**
|
|
3545
|
+
* VPC实例ID。
|
|
3546
|
+
*/
|
|
3547
|
+
VpcId: string;
|
|
3548
|
+
/**
|
|
3549
|
+
* 子网实例ID。
|
|
3550
|
+
*/
|
|
3551
|
+
SubnetId: string;
|
|
3552
|
+
/**
|
|
3553
|
+
* IP地址。
|
|
3554
|
+
*/
|
|
3555
|
+
IpAddress: string;
|
|
3556
|
+
/**
|
|
3557
|
+
* 资源类型
|
|
3558
|
+
*/
|
|
3559
|
+
ResourceType: string;
|
|
3560
|
+
/**
|
|
3561
|
+
* 资源ID
|
|
3562
|
+
*/
|
|
3563
|
+
ResourceId: string;
|
|
3564
|
+
}
|
|
3508
3565
|
/**
|
|
3509
3566
|
* 用于描述实例的统计信息
|
|
3510
3567
|
*/
|
|
@@ -4275,7 +4332,7 @@ export interface SecurityGroupPolicy {
|
|
|
4275
4332
|
*/
|
|
4276
4333
|
ServiceTemplate?: ServiceTemplateSpecification;
|
|
4277
4334
|
/**
|
|
4278
|
-
* 网段或IP(互斥)。
|
|
4335
|
+
* 网段或IP(互斥),特殊说明:0.0.0.0/n 都会映射为0.0.0.0/0。
|
|
4279
4336
|
*/
|
|
4280
4337
|
CidrBlock?: string;
|
|
4281
4338
|
/**
|
|
@@ -4326,6 +4383,15 @@ export interface DescribeSnapshotPoliciesRequest {
|
|
|
4326
4383
|
*/
|
|
4327
4384
|
Limit?: number;
|
|
4328
4385
|
}
|
|
4386
|
+
/**
|
|
4387
|
+
* DeleteTrafficPackages请求参数结构体
|
|
4388
|
+
*/
|
|
4389
|
+
export interface DeleteTrafficPackagesRequest {
|
|
4390
|
+
/**
|
|
4391
|
+
* 待删除的流量包唯一ID数组
|
|
4392
|
+
*/
|
|
4393
|
+
TrafficPackageIds: Array<string>;
|
|
4394
|
+
}
|
|
4329
4395
|
/**
|
|
4330
4396
|
* NotifyRoutes请求参数结构体
|
|
4331
4397
|
*/
|
|
@@ -4578,7 +4644,7 @@ export interface CreateCustomerGatewayResponse {
|
|
|
4578
4644
|
/**
|
|
4579
4645
|
* 对端网关对象
|
|
4580
4646
|
*/
|
|
4581
|
-
CustomerGateway
|
|
4647
|
+
CustomerGateway?: CustomerGateway;
|
|
4582
4648
|
/**
|
|
4583
4649
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4584
4650
|
*/
|
|
@@ -4644,6 +4710,15 @@ export interface WithdrawNotifyRoutesRequest {
|
|
|
4644
4710
|
*/
|
|
4645
4711
|
RouteItemIds: Array<string>;
|
|
4646
4712
|
}
|
|
4713
|
+
/**
|
|
4714
|
+
* DescribeSubnetResourceDashboard请求参数结构体
|
|
4715
|
+
*/
|
|
4716
|
+
export interface DescribeSubnetResourceDashboardRequest {
|
|
4717
|
+
/**
|
|
4718
|
+
* Subnet实例ID,例如:subnet-f1xjkw1b。
|
|
4719
|
+
*/
|
|
4720
|
+
SubnetIds: Array<string>;
|
|
4721
|
+
}
|
|
4647
4722
|
/**
|
|
4648
4723
|
* Vpc任务结果详细信息。
|
|
4649
4724
|
*/
|
|
@@ -5687,11 +5762,11 @@ export interface CreateVpnGatewaySslClientResponse {
|
|
|
5687
5762
|
/**
|
|
5688
5763
|
* 异步任务ID。
|
|
5689
5764
|
*/
|
|
5690
|
-
TaskId
|
|
5765
|
+
TaskId?: number;
|
|
5691
5766
|
/**
|
|
5692
5767
|
* SSL-VPN client 唯一ID
|
|
5693
5768
|
*/
|
|
5694
|
-
SslVpnClientId
|
|
5769
|
+
SslVpnClientId?: string;
|
|
5695
5770
|
/**
|
|
5696
5771
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5697
5772
|
*/
|
|
@@ -6451,7 +6526,7 @@ export interface ResetVpnGatewayInternetMaxBandwidthRequest {
|
|
|
6451
6526
|
*/
|
|
6452
6527
|
VpnGatewayId: string;
|
|
6453
6528
|
/**
|
|
6454
|
-
*
|
|
6529
|
+
* 新规格公网带宽设置。可选带宽规格:5, 10, 20, 50, 100, 200, 500, 1000;单位:Mbps。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持。
|
|
6455
6530
|
*/
|
|
6456
6531
|
InternetMaxBandwidthOut: number;
|
|
6457
6532
|
}
|
|
@@ -6658,7 +6733,7 @@ export interface Price {
|
|
|
6658
6733
|
*/
|
|
6659
6734
|
InstancePrice?: ItemPrice;
|
|
6660
6735
|
/**
|
|
6661
|
-
*
|
|
6736
|
+
* 带宽价格。
|
|
6662
6737
|
*/
|
|
6663
6738
|
BandwidthPrice?: ItemPrice;
|
|
6664
6739
|
}
|
|
@@ -6879,9 +6954,13 @@ export interface DescribeClassicLinkInstancesResponse {
|
|
|
6879
6954
|
*/
|
|
6880
6955
|
export interface EnableVpnGatewaySslClientCertRequest {
|
|
6881
6956
|
/**
|
|
6882
|
-
* SSL-VPN-CLIENT 实例ID
|
|
6957
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
6883
6958
|
*/
|
|
6884
|
-
SslVpnClientId
|
|
6959
|
+
SslVpnClientId?: string;
|
|
6960
|
+
/**
|
|
6961
|
+
* SSL-VPN-CLIENT 实例ID列表。批量启用时使用。不可和SslVpnClientId同时使用。
|
|
6962
|
+
*/
|
|
6963
|
+
SslVpnClientIds?: Array<string>;
|
|
6885
6964
|
}
|
|
6886
6965
|
/**
|
|
6887
6966
|
* DescribeVpnGatewayCcnRoutes返回参数结构体
|
|
@@ -7847,17 +7926,17 @@ export interface SslVpnSever {
|
|
|
7847
7926
|
*/
|
|
7848
7927
|
export interface DownloadVpnGatewaySslClientCertResponse {
|
|
7849
7928
|
/**
|
|
7850
|
-
*
|
|
7929
|
+
* SSL-VPN 客户端配置。
|
|
7851
7930
|
*/
|
|
7852
|
-
SslClientConfigsSet
|
|
7931
|
+
SslClientConfigsSet?: string;
|
|
7853
7932
|
/**
|
|
7854
|
-
* SSL-VPN
|
|
7933
|
+
* SSL-VPN 客户端配置。
|
|
7855
7934
|
*/
|
|
7856
|
-
SslClientConfig
|
|
7935
|
+
SslClientConfig?: Array<SslClientConfig>;
|
|
7857
7936
|
/**
|
|
7858
|
-
* 是否鉴权成功 只有传入SamlToken
|
|
7937
|
+
* 是否鉴权成功 只有传入SamlToken 才生效,1为成功,0为失败。
|
|
7859
7938
|
*/
|
|
7860
|
-
Authenticated
|
|
7939
|
+
Authenticated?: number;
|
|
7861
7940
|
/**
|
|
7862
7941
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7863
7942
|
*/
|
|
@@ -8201,9 +8280,13 @@ export interface CreateVpnGatewaySslClientRequest {
|
|
|
8201
8280
|
*/
|
|
8202
8281
|
SslVpnServerId: string;
|
|
8203
8282
|
/**
|
|
8204
|
-
*
|
|
8283
|
+
* SSL-VPN-CLIENT实例Name。不可和SslVpnClientNames同时使用。
|
|
8284
|
+
*/
|
|
8285
|
+
SslVpnClientName?: string;
|
|
8286
|
+
/**
|
|
8287
|
+
* SSL-VPN-CLIENT实例Name数字。批量创建时使用。不可和SslVpnClientName同时使用。
|
|
8205
8288
|
*/
|
|
8206
|
-
|
|
8289
|
+
SslVpnClientNames?: Array<string>;
|
|
8207
8290
|
}
|
|
8208
8291
|
/**
|
|
8209
8292
|
* UnlockCcns请求参数结构体
|
|
@@ -8776,11 +8859,11 @@ export interface DescribeNetworkAclsResponse {
|
|
|
8776
8859
|
/**
|
|
8777
8860
|
* 实例详细信息列表。
|
|
8778
8861
|
*/
|
|
8779
|
-
NetworkAclSet
|
|
8862
|
+
NetworkAclSet?: Array<NetworkAcl>;
|
|
8780
8863
|
/**
|
|
8781
8864
|
* 符合条件的实例数量。
|
|
8782
8865
|
*/
|
|
8783
|
-
TotalCount
|
|
8866
|
+
TotalCount?: number;
|
|
8784
8867
|
/**
|
|
8785
8868
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
8786
8869
|
*/
|
|
@@ -8872,7 +8955,7 @@ export interface PrivateIpAddressSpecification {
|
|
|
8872
8955
|
*/
|
|
8873
8956
|
State?: string;
|
|
8874
8957
|
/**
|
|
8875
|
-
* IP服务质量等级,可选值:PT、AU、AG、DEFAULT
|
|
8958
|
+
* IP服务质量等级,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
|
|
8876
8959
|
*/
|
|
8877
8960
|
QosLevel?: string;
|
|
8878
8961
|
}
|
|
@@ -8898,6 +8981,31 @@ export interface MigratePrivateIpAddressResponse {
|
|
|
8898
8981
|
*/
|
|
8899
8982
|
RequestId?: string;
|
|
8900
8983
|
}
|
|
8984
|
+
/**
|
|
8985
|
+
* DescribeUsedIpAddress请求参数结构体
|
|
8986
|
+
*/
|
|
8987
|
+
export interface DescribeUsedIpAddressRequest {
|
|
8988
|
+
/**
|
|
8989
|
+
* VPC实例ID。
|
|
8990
|
+
*/
|
|
8991
|
+
VpcId: string;
|
|
8992
|
+
/**
|
|
8993
|
+
* 子网实例ID。
|
|
8994
|
+
*/
|
|
8995
|
+
SubnetId?: string;
|
|
8996
|
+
/**
|
|
8997
|
+
* 查询是否占用的ip列表
|
|
8998
|
+
*/
|
|
8999
|
+
IpAddresses?: Array<string>;
|
|
9000
|
+
/**
|
|
9001
|
+
* 偏移量。
|
|
9002
|
+
*/
|
|
9003
|
+
Offset?: number;
|
|
9004
|
+
/**
|
|
9005
|
+
* 请求对象个数。
|
|
9006
|
+
*/
|
|
9007
|
+
Limit?: number;
|
|
9008
|
+
}
|
|
8901
9009
|
/**
|
|
8902
9010
|
* DeleteRouteTable返回参数结构体
|
|
8903
9011
|
*/
|
|
@@ -9186,7 +9294,7 @@ export interface DescribeVpcPrivateIpAddressesResponse {
|
|
|
9186
9294
|
/**
|
|
9187
9295
|
* 内网`IP`地址信息列表。
|
|
9188
9296
|
*/
|
|
9189
|
-
VpcPrivateIpAddressSet
|
|
9297
|
+
VpcPrivateIpAddressSet?: Array<VpcPrivateIpAddress>;
|
|
9190
9298
|
/**
|
|
9191
9299
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
9192
9300
|
*/
|
|
@@ -9520,9 +9628,13 @@ export interface ModifyTemplateMemberResponse {
|
|
|
9520
9628
|
*/
|
|
9521
9629
|
export interface DeleteVpnGatewaySslClientRequest {
|
|
9522
9630
|
/**
|
|
9523
|
-
* SSL-VPN-CLIENT 实例ID
|
|
9631
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
9524
9632
|
*/
|
|
9525
|
-
SslVpnClientId
|
|
9633
|
+
SslVpnClientId?: string;
|
|
9634
|
+
/**
|
|
9635
|
+
* SSL-VPN-CLIENT 实例ID列表。批量删除时使用。不可和SslVpnClientId同时使用。
|
|
9636
|
+
*/
|
|
9637
|
+
SslVpnClientIds?: Array<string>;
|
|
9526
9638
|
}
|
|
9527
9639
|
/**
|
|
9528
9640
|
* 子网对象
|
|
@@ -9794,6 +9906,27 @@ export interface ModifyCcnAttributeRequest {
|
|
|
9794
9906
|
*/
|
|
9795
9907
|
CcnDescription?: string;
|
|
9796
9908
|
}
|
|
9909
|
+
/**
|
|
9910
|
+
* 资源统计信息
|
|
9911
|
+
*/
|
|
9912
|
+
export interface ResourceStatistics {
|
|
9913
|
+
/**
|
|
9914
|
+
* Vpc实例ID,例如:vpc-f1xjkw1b。
|
|
9915
|
+
*/
|
|
9916
|
+
VpcId: string;
|
|
9917
|
+
/**
|
|
9918
|
+
* 子网实例ID,例如:subnet-bthucmmy。
|
|
9919
|
+
*/
|
|
9920
|
+
SubnetId: string;
|
|
9921
|
+
/**
|
|
9922
|
+
* 当前已使用的IP总数。
|
|
9923
|
+
*/
|
|
9924
|
+
Ip: number;
|
|
9925
|
+
/**
|
|
9926
|
+
* 资源统计信息。
|
|
9927
|
+
*/
|
|
9928
|
+
ResourceStatisticsItemSet: Array<ResourceStatisticsItem>;
|
|
9929
|
+
}
|
|
9797
9930
|
/**
|
|
9798
9931
|
* DeleteSecurityGroupPolicies返回参数结构体
|
|
9799
9932
|
*/
|
|
@@ -10201,6 +10334,23 @@ export interface AllocateAddressesResponse {
|
|
|
10201
10334
|
*/
|
|
10202
10335
|
RequestId?: string;
|
|
10203
10336
|
}
|
|
10337
|
+
/**
|
|
10338
|
+
* DescribeVpnConnections返回参数结构体
|
|
10339
|
+
*/
|
|
10340
|
+
export interface DescribeVpnConnectionsResponse {
|
|
10341
|
+
/**
|
|
10342
|
+
* 符合条件的实例数量。
|
|
10343
|
+
*/
|
|
10344
|
+
TotalCount?: number;
|
|
10345
|
+
/**
|
|
10346
|
+
* VPN通道实例。
|
|
10347
|
+
*/
|
|
10348
|
+
VpnConnectionSet?: Array<VpnConnection>;
|
|
10349
|
+
/**
|
|
10350
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10351
|
+
*/
|
|
10352
|
+
RequestId?: string;
|
|
10353
|
+
}
|
|
10204
10354
|
/**
|
|
10205
10355
|
* 描述带宽包信息的结构
|
|
10206
10356
|
*/
|
|
@@ -10396,6 +10546,10 @@ export interface SslClientConfig {
|
|
|
10396
10546
|
* 客户端证书
|
|
10397
10547
|
*/
|
|
10398
10548
|
SslVpnCert: string;
|
|
10549
|
+
/**
|
|
10550
|
+
* SSL-VPN-CLIENT 实例ID。
|
|
10551
|
+
*/
|
|
10552
|
+
SslVpnClientId?: string;
|
|
10399
10553
|
}
|
|
10400
10554
|
/**
|
|
10401
10555
|
* DescribeBandwidthPackageQuota返回参数结构体
|
|
@@ -11598,6 +11752,15 @@ export interface InquiryPriceResetVpnGatewayInternetMaxBandwidthRequest {
|
|
|
11598
11752
|
*/
|
|
11599
11753
|
InternetMaxBandwidthOut: number;
|
|
11600
11754
|
}
|
|
11755
|
+
/**
|
|
11756
|
+
* DisableFlowLogs请求参数结构体
|
|
11757
|
+
*/
|
|
11758
|
+
export interface DisableFlowLogsRequest {
|
|
11759
|
+
/**
|
|
11760
|
+
* 流日志Id。
|
|
11761
|
+
*/
|
|
11762
|
+
FlowLogIds: Array<string>;
|
|
11763
|
+
}
|
|
11601
11764
|
/**
|
|
11602
11765
|
* ReplaceSecurityGroupPolicy返回参数结构体
|
|
11603
11766
|
*/
|
|
@@ -11635,11 +11798,11 @@ export interface ReplaceRoutesResponse {
|
|
|
11635
11798
|
/**
|
|
11636
11799
|
* 原路由策略信息。
|
|
11637
11800
|
*/
|
|
11638
|
-
OldRouteSet
|
|
11801
|
+
OldRouteSet?: Array<Route>;
|
|
11639
11802
|
/**
|
|
11640
11803
|
* 修改后的路由策略信息。
|
|
11641
11804
|
*/
|
|
11642
|
-
NewRouteSet
|
|
11805
|
+
NewRouteSet?: Array<Route>;
|
|
11643
11806
|
/**
|
|
11644
11807
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11645
11808
|
*/
|
|
@@ -11792,11 +11955,11 @@ export interface CreateRoutesResponse {
|
|
|
11792
11955
|
/**
|
|
11793
11956
|
* 新增的实例个数。
|
|
11794
11957
|
*/
|
|
11795
|
-
TotalCount
|
|
11958
|
+
TotalCount?: number;
|
|
11796
11959
|
/**
|
|
11797
11960
|
* 路由表对象。
|
|
11798
11961
|
*/
|
|
11799
|
-
RouteTableSet
|
|
11962
|
+
RouteTableSet?: Array<RouteTable>;
|
|
11800
11963
|
/**
|
|
11801
11964
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11802
11965
|
*/
|
|
@@ -12023,17 +12186,21 @@ export interface AttachClassicLinkVpcResponse {
|
|
|
12023
12186
|
*/
|
|
12024
12187
|
export interface DownloadVpnGatewaySslClientCertRequest {
|
|
12025
12188
|
/**
|
|
12026
|
-
* SSL-VPN-CLIENT 实例ID
|
|
12189
|
+
* SSL-VPN-CLIENT 实例ID。不可以和SslVpnClientIds同时使用。
|
|
12027
12190
|
*/
|
|
12028
|
-
SslVpnClientId
|
|
12191
|
+
SslVpnClientId?: string;
|
|
12029
12192
|
/**
|
|
12030
|
-
* SAML
|
|
12193
|
+
* SAML Token(SAML令牌)。
|
|
12031
12194
|
*/
|
|
12032
12195
|
SamlToken?: string;
|
|
12033
12196
|
/**
|
|
12034
|
-
* VPN门户网站使用。默认
|
|
12197
|
+
* VPN门户网站使用。默认False
|
|
12035
12198
|
*/
|
|
12036
12199
|
IsVpnPortal?: boolean;
|
|
12200
|
+
/**
|
|
12201
|
+
* SSL-VPN-CLIENT 实例ID列表。批量下载时使用。不可以和SslVpnClientId同时使用。
|
|
12202
|
+
*/
|
|
12203
|
+
SslVpnClientIds?: Array<string>;
|
|
12037
12204
|
}
|
|
12038
12205
|
/**
|
|
12039
12206
|
* CreateAddressTemplate请求参数结构体
|
|
@@ -12053,17 +12220,21 @@ export interface CreateAddressTemplateRequest {
|
|
|
12053
12220
|
AddressesExtra?: Array<AddressInfo>;
|
|
12054
12221
|
}
|
|
12055
12222
|
/**
|
|
12056
|
-
*
|
|
12223
|
+
* DescribeNatGateways返回参数结构体
|
|
12057
12224
|
*/
|
|
12058
|
-
export interface
|
|
12225
|
+
export interface DescribeNatGatewaysResponse {
|
|
12059
12226
|
/**
|
|
12060
|
-
*
|
|
12227
|
+
* NAT网关对象数组。
|
|
12061
12228
|
*/
|
|
12062
|
-
|
|
12229
|
+
NatGatewaySet: Array<NatGateway>;
|
|
12063
12230
|
/**
|
|
12064
|
-
*
|
|
12231
|
+
* 符合条件的NAT网关对象个数。
|
|
12065
12232
|
*/
|
|
12066
|
-
|
|
12233
|
+
TotalCount: number;
|
|
12234
|
+
/**
|
|
12235
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12236
|
+
*/
|
|
12237
|
+
RequestId?: string;
|
|
12067
12238
|
}
|
|
12068
12239
|
/**
|
|
12069
12240
|
* 查询nat路由的返回路由对象
|
|
@@ -12275,7 +12446,7 @@ export interface DeleteRoutesRequest {
|
|
|
12275
12446
|
/**
|
|
12276
12447
|
* 路由策略对象,删除路由策略时,仅需使用Route的RouteId字段。
|
|
12277
12448
|
*/
|
|
12278
|
-
Routes
|
|
12449
|
+
Routes?: Array<Route>;
|
|
12279
12450
|
}
|
|
12280
12451
|
/**
|
|
12281
12452
|
* AssociateAddress请求参数结构体
|
|
@@ -12993,17 +13164,9 @@ export interface CreateDhcpIpRequest {
|
|
|
12993
13164
|
SecondaryPrivateIpAddressCount?: number;
|
|
12994
13165
|
}
|
|
12995
13166
|
/**
|
|
12996
|
-
*
|
|
13167
|
+
* DeleteTrafficPackages返回参数结构体
|
|
12997
13168
|
*/
|
|
12998
|
-
export interface
|
|
12999
|
-
/**
|
|
13000
|
-
* 符合条件的实例数量。
|
|
13001
|
-
*/
|
|
13002
|
-
TotalCount?: number;
|
|
13003
|
-
/**
|
|
13004
|
-
* VPN通道实例。
|
|
13005
|
-
*/
|
|
13006
|
-
VpnConnectionSet?: Array<VpnConnection>;
|
|
13169
|
+
export interface DeleteTrafficPackagesResponse {
|
|
13007
13170
|
/**
|
|
13008
13171
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13009
13172
|
*/
|
|
@@ -13166,13 +13329,17 @@ export interface CreateVpcRequest {
|
|
|
13166
13329
|
Tags?: Array<Tag>;
|
|
13167
13330
|
}
|
|
13168
13331
|
/**
|
|
13169
|
-
*
|
|
13332
|
+
* DescribeSubnetResourceDashboard返回参数结构体
|
|
13170
13333
|
*/
|
|
13171
|
-
export interface
|
|
13334
|
+
export interface DescribeSubnetResourceDashboardResponse {
|
|
13172
13335
|
/**
|
|
13173
|
-
*
|
|
13336
|
+
* 资源统计结果。
|
|
13174
13337
|
*/
|
|
13175
|
-
|
|
13338
|
+
ResourceStatisticsSet?: Array<ResourceStatistics>;
|
|
13339
|
+
/**
|
|
13340
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13341
|
+
*/
|
|
13342
|
+
RequestId?: string;
|
|
13176
13343
|
}
|
|
13177
13344
|
/**
|
|
13178
13345
|
* DeleteServiceTemplate请求参数结构体
|
|
@@ -13223,8 +13390,9 @@ export interface Route {
|
|
|
13223
13390
|
*/
|
|
13224
13391
|
GatewayType: string;
|
|
13225
13392
|
/**
|
|
13226
|
-
|
|
13227
|
-
|
|
13393
|
+
* 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
|
|
13394
|
+
特殊说明:GatewayType为NORMAL_CVM时,GatewayId填写实例的内网IP。
|
|
13395
|
+
*/
|
|
13228
13396
|
GatewayId: string;
|
|
13229
13397
|
/**
|
|
13230
13398
|
* 路由策略ID。IPv4路由策略ID是有意义的值,IPv6路由策略是无意义的值0。后续建议完全使用字符串唯一ID `RouteItemId`操作路由策略。
|
|
@@ -13276,7 +13444,7 @@ export interface EnableVpnGatewaySslClientCertResponse {
|
|
|
13276
13444
|
/**
|
|
13277
13445
|
* 异步任务实例ID。
|
|
13278
13446
|
*/
|
|
13279
|
-
TaskId
|
|
13447
|
+
TaskId?: number;
|
|
13280
13448
|
/**
|
|
13281
13449
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13282
13450
|
*/
|
|
@@ -13391,6 +13559,25 @@ export interface AcceptAttachCcnInstancesResponse {
|
|
|
13391
13559
|
*/
|
|
13392
13560
|
RequestId?: string;
|
|
13393
13561
|
}
|
|
13562
|
+
/**
|
|
13563
|
+
* DescribeUsedIpAddress返回参数结构体
|
|
13564
|
+
*/
|
|
13565
|
+
export interface DescribeUsedIpAddressResponse {
|
|
13566
|
+
/**
|
|
13567
|
+
* 占用ip地址的资源信息
|
|
13568
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13569
|
+
*/
|
|
13570
|
+
IpAddressStates?: Array<IpAddressStates>;
|
|
13571
|
+
/**
|
|
13572
|
+
* 返回占用资源的个数
|
|
13573
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13574
|
+
*/
|
|
13575
|
+
TotalCount?: number;
|
|
13576
|
+
/**
|
|
13577
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
13578
|
+
*/
|
|
13579
|
+
RequestId?: string;
|
|
13580
|
+
}
|
|
13394
13581
|
/**
|
|
13395
13582
|
* IP地址模板信息
|
|
13396
13583
|
*/
|