tencentcloud-sdk-nodejs-vpc 4.0.593 → 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 +2202 -0
- package/SERVICE_CHANGELOG.md +2072 -323
- package/package.json +1 -1
- package/products.md +193 -192
- package/src/services/vpc/v20170312/vpc_client.ts +62 -22
- package/src/services/vpc/v20170312/vpc_models.ts +309 -88
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +28 -15
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +34 -15
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +272 -85
|
@@ -138,6 +138,21 @@ export interface SecurityGroupLimitSet {
|
|
|
138
138
|
* 实例关联安全组数
|
|
139
139
|
*/
|
|
140
140
|
InstanceSecurityGroupLimit: number
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* 安全组展开后的规则数限制
|
|
144
|
+
*/
|
|
145
|
+
SecurityGroupExtendedPolicyLimit?: number
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* 被引用的安全组关联CVM、ENI的实例配额
|
|
149
|
+
*/
|
|
150
|
+
SecurityGroupReferedCvmAndEniLimit?: number
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* 被引用的安全组关联数据库、LB等服务实例配额
|
|
154
|
+
*/
|
|
155
|
+
SecurityGroupReferedSvcLimit?: number
|
|
141
156
|
}
|
|
142
157
|
|
|
143
158
|
/**
|
|
@@ -798,6 +813,26 @@ export interface DescribeVpcEndPointRequest {
|
|
|
798
813
|
EndPointId?: Array<string>
|
|
799
814
|
}
|
|
800
815
|
|
|
816
|
+
/**
|
|
817
|
+
* 资源统计项。
|
|
818
|
+
*/
|
|
819
|
+
export interface ResourceStatisticsItem {
|
|
820
|
+
/**
|
|
821
|
+
* 资源类型。比如,CVM,ENI等。
|
|
822
|
+
*/
|
|
823
|
+
ResourceType: string
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* 资源名称。
|
|
827
|
+
*/
|
|
828
|
+
ResourceName: string
|
|
829
|
+
|
|
830
|
+
/**
|
|
831
|
+
* 资源个数。
|
|
832
|
+
*/
|
|
833
|
+
ResourceCount: number
|
|
834
|
+
}
|
|
835
|
+
|
|
801
836
|
/**
|
|
802
837
|
* DetachClassicLinkVpc请求参数结构体
|
|
803
838
|
*/
|
|
@@ -1084,7 +1119,7 @@ export interface DeleteVpnGatewaySslClientResponse {
|
|
|
1084
1119
|
/**
|
|
1085
1120
|
* 异步任务ID。
|
|
1086
1121
|
*/
|
|
1087
|
-
TaskId
|
|
1122
|
+
TaskId?: number
|
|
1088
1123
|
|
|
1089
1124
|
/**
|
|
1090
1125
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1694,18 +1729,21 @@ export interface DisassociateNetworkInterfaceSecurityGroupsRequest {
|
|
|
1694
1729
|
*/
|
|
1695
1730
|
export interface SecurityGroupPolicySet {
|
|
1696
1731
|
/**
|
|
1697
|
-
|
|
1698
|
-
|
|
1732
|
+
* 安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
|
|
1733
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1734
|
+
*/
|
|
1699
1735
|
Version?: string
|
|
1700
1736
|
|
|
1701
1737
|
/**
|
|
1702
|
-
|
|
1703
|
-
|
|
1738
|
+
* 出站规则。
|
|
1739
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1740
|
+
*/
|
|
1704
1741
|
Egress?: Array<SecurityGroupPolicy>
|
|
1705
1742
|
|
|
1706
1743
|
/**
|
|
1707
|
-
|
|
1708
|
-
|
|
1744
|
+
* 入站规则。
|
|
1745
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1746
|
+
*/
|
|
1709
1747
|
Ingress?: Array<SecurityGroupPolicy>
|
|
1710
1748
|
}
|
|
1711
1749
|
|
|
@@ -1714,7 +1752,7 @@ export interface SecurityGroupPolicySet {
|
|
|
1714
1752
|
*/
|
|
1715
1753
|
export interface ModifyFlowLogAttributeRequest {
|
|
1716
1754
|
/**
|
|
1717
|
-
* 流日志唯一ID
|
|
1755
|
+
* 流日志唯一ID。
|
|
1718
1756
|
*/
|
|
1719
1757
|
FlowLogId: string
|
|
1720
1758
|
|
|
@@ -1724,12 +1762,12 @@ export interface ModifyFlowLogAttributeRequest {
|
|
|
1724
1762
|
VpcId?: string
|
|
1725
1763
|
|
|
1726
1764
|
/**
|
|
1727
|
-
*
|
|
1765
|
+
* 流日志实例名字。
|
|
1728
1766
|
*/
|
|
1729
1767
|
FlowLogName?: string
|
|
1730
1768
|
|
|
1731
1769
|
/**
|
|
1732
|
-
*
|
|
1770
|
+
* 流日志实例描述。
|
|
1733
1771
|
*/
|
|
1734
1772
|
FlowLogDescription?: string
|
|
1735
1773
|
}
|
|
@@ -2246,9 +2284,14 @@ export interface DescribeDirectConnectGatewaysRequest {
|
|
|
2246
2284
|
*/
|
|
2247
2285
|
export interface DisableVpnGatewaySslClientCertRequest {
|
|
2248
2286
|
/**
|
|
2249
|
-
* SSL-VPN-CLIENT 实例ID
|
|
2287
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
2250
2288
|
*/
|
|
2251
|
-
SslVpnClientId
|
|
2289
|
+
SslVpnClientId?: string
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* SSL-VPN-CLIENT 实例ID列表。批量禁用时使用。不可和SslVpnClientId同时使用。
|
|
2293
|
+
*/
|
|
2294
|
+
SslVpnClientIds?: Array<string>
|
|
2252
2295
|
}
|
|
2253
2296
|
|
|
2254
2297
|
/**
|
|
@@ -2506,7 +2549,7 @@ export interface IpGeolocationInfo {
|
|
|
2506
2549
|
*/
|
|
2507
2550
|
export interface DeleteFlowLogRequest {
|
|
2508
2551
|
/**
|
|
2509
|
-
* 流日志唯一ID
|
|
2552
|
+
* 流日志唯一ID。
|
|
2510
2553
|
*/
|
|
2511
2554
|
FlowLogId: string
|
|
2512
2555
|
|
|
@@ -2959,12 +3002,12 @@ export interface ModifyVpcEndPointAttributeResponse {
|
|
|
2959
3002
|
*/
|
|
2960
3003
|
export interface DescribeFlowLogRequest {
|
|
2961
3004
|
/**
|
|
2962
|
-
* 私用网络ID或者统一ID,建议使用统一ID
|
|
3005
|
+
* 私用网络ID或者统一ID,建议使用统一ID。
|
|
2963
3006
|
*/
|
|
2964
3007
|
VpcId: string
|
|
2965
3008
|
|
|
2966
3009
|
/**
|
|
2967
|
-
* 流日志唯一ID
|
|
3010
|
+
* 流日志唯一ID。
|
|
2968
3011
|
*/
|
|
2969
3012
|
FlowLogId: string
|
|
2970
3013
|
}
|
|
@@ -3268,7 +3311,7 @@ export interface DisableVpnGatewaySslClientCertResponse {
|
|
|
3268
3311
|
/**
|
|
3269
3312
|
* 异步任务实例ID。
|
|
3270
3313
|
*/
|
|
3271
|
-
TaskId
|
|
3314
|
+
TaskId?: number
|
|
3272
3315
|
|
|
3273
3316
|
/**
|
|
3274
3317
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3984,23 +4027,18 @@ export interface DescribeNetDetectStatesRequest {
|
|
|
3984
4027
|
}
|
|
3985
4028
|
|
|
3986
4029
|
/**
|
|
3987
|
-
*
|
|
4030
|
+
* DescribeRouteConflicts请求参数结构体
|
|
3988
4031
|
*/
|
|
3989
|
-
export interface
|
|
3990
|
-
/**
|
|
3991
|
-
* NAT网关对象数组。
|
|
3992
|
-
*/
|
|
3993
|
-
NatGatewaySet: Array<NatGateway>
|
|
3994
|
-
|
|
4032
|
+
export interface DescribeRouteConflictsRequest {
|
|
3995
4033
|
/**
|
|
3996
|
-
*
|
|
4034
|
+
* 路由表实例ID,例如:rtb-azd4dt1c。
|
|
3997
4035
|
*/
|
|
3998
|
-
|
|
4036
|
+
RouteTableId: string
|
|
3999
4037
|
|
|
4000
4038
|
/**
|
|
4001
|
-
*
|
|
4039
|
+
* 要检查的与之冲突的目的端列表。
|
|
4002
4040
|
*/
|
|
4003
|
-
|
|
4041
|
+
DestinationCidrBlocks: Array<string>
|
|
4004
4042
|
}
|
|
4005
4043
|
|
|
4006
4044
|
/**
|
|
@@ -4008,7 +4046,7 @@ export interface DescribeNatGatewaysResponse {
|
|
|
4008
4046
|
*/
|
|
4009
4047
|
export interface DescribeFlowLogResponse {
|
|
4010
4048
|
/**
|
|
4011
|
-
*
|
|
4049
|
+
* 流日志信息。
|
|
4012
4050
|
*/
|
|
4013
4051
|
FlowLog?: Array<FlowLog>
|
|
4014
4052
|
|
|
@@ -4086,12 +4124,12 @@ export interface DescribeAssistantCidrResponse {
|
|
|
4086
4124
|
* 符合条件的辅助CIDR数组。
|
|
4087
4125
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4088
4126
|
*/
|
|
4089
|
-
AssistantCidrSet
|
|
4127
|
+
AssistantCidrSet?: Array<AssistantCidr>
|
|
4090
4128
|
|
|
4091
4129
|
/**
|
|
4092
4130
|
* 符合条件的实例数量。
|
|
4093
4131
|
*/
|
|
4094
|
-
TotalCount
|
|
4132
|
+
TotalCount?: number
|
|
4095
4133
|
|
|
4096
4134
|
/**
|
|
4097
4135
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -4114,6 +4152,36 @@ export interface BackupPolicy {
|
|
|
4114
4152
|
BackupTime: string
|
|
4115
4153
|
}
|
|
4116
4154
|
|
|
4155
|
+
/**
|
|
4156
|
+
* 占用ip的资源信息
|
|
4157
|
+
*/
|
|
4158
|
+
export interface IpAddressStates {
|
|
4159
|
+
/**
|
|
4160
|
+
* VPC实例ID。
|
|
4161
|
+
*/
|
|
4162
|
+
VpcId: string
|
|
4163
|
+
|
|
4164
|
+
/**
|
|
4165
|
+
* 子网实例ID。
|
|
4166
|
+
*/
|
|
4167
|
+
SubnetId: string
|
|
4168
|
+
|
|
4169
|
+
/**
|
|
4170
|
+
* IP地址。
|
|
4171
|
+
*/
|
|
4172
|
+
IpAddress: string
|
|
4173
|
+
|
|
4174
|
+
/**
|
|
4175
|
+
* 资源类型
|
|
4176
|
+
*/
|
|
4177
|
+
ResourceType: string
|
|
4178
|
+
|
|
4179
|
+
/**
|
|
4180
|
+
* 资源ID
|
|
4181
|
+
*/
|
|
4182
|
+
ResourceId: string
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4117
4185
|
/**
|
|
4118
4186
|
* 用于描述实例的统计信息
|
|
4119
4187
|
*/
|
|
@@ -5030,7 +5098,7 @@ export interface SecurityGroupPolicy {
|
|
|
5030
5098
|
ServiceTemplate?: ServiceTemplateSpecification
|
|
5031
5099
|
|
|
5032
5100
|
/**
|
|
5033
|
-
* 网段或IP(互斥)。
|
|
5101
|
+
* 网段或IP(互斥),特殊说明:0.0.0.0/n 都会映射为0.0.0.0/0。
|
|
5034
5102
|
*/
|
|
5035
5103
|
CidrBlock?: string
|
|
5036
5104
|
|
|
@@ -5092,6 +5160,16 @@ export interface DescribeSnapshotPoliciesRequest {
|
|
|
5092
5160
|
Limit?: number
|
|
5093
5161
|
}
|
|
5094
5162
|
|
|
5163
|
+
/**
|
|
5164
|
+
* DeleteTrafficPackages请求参数结构体
|
|
5165
|
+
*/
|
|
5166
|
+
export interface DeleteTrafficPackagesRequest {
|
|
5167
|
+
/**
|
|
5168
|
+
* 待删除的流量包唯一ID数组
|
|
5169
|
+
*/
|
|
5170
|
+
TrafficPackageIds: Array<string>
|
|
5171
|
+
}
|
|
5172
|
+
|
|
5095
5173
|
/**
|
|
5096
5174
|
* NotifyRoutes请求参数结构体
|
|
5097
5175
|
*/
|
|
@@ -5388,7 +5466,7 @@ export interface CreateCustomerGatewayResponse {
|
|
|
5388
5466
|
/**
|
|
5389
5467
|
* 对端网关对象
|
|
5390
5468
|
*/
|
|
5391
|
-
CustomerGateway
|
|
5469
|
+
CustomerGateway?: CustomerGateway
|
|
5392
5470
|
|
|
5393
5471
|
/**
|
|
5394
5472
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -5468,6 +5546,16 @@ export interface WithdrawNotifyRoutesRequest {
|
|
|
5468
5546
|
RouteItemIds: Array<string>
|
|
5469
5547
|
}
|
|
5470
5548
|
|
|
5549
|
+
/**
|
|
5550
|
+
* DescribeSubnetResourceDashboard请求参数结构体
|
|
5551
|
+
*/
|
|
5552
|
+
export interface DescribeSubnetResourceDashboardRequest {
|
|
5553
|
+
/**
|
|
5554
|
+
* Subnet实例ID,例如:subnet-f1xjkw1b。
|
|
5555
|
+
*/
|
|
5556
|
+
SubnetIds: Array<string>
|
|
5557
|
+
}
|
|
5558
|
+
|
|
5471
5559
|
/**
|
|
5472
5560
|
* Vpc任务结果详细信息。
|
|
5473
5561
|
*/
|
|
@@ -6661,7 +6749,7 @@ export interface CreateAddressTemplateResponse {
|
|
|
6661
6749
|
/**
|
|
6662
6750
|
* IP地址模板对象。
|
|
6663
6751
|
*/
|
|
6664
|
-
AddressTemplate
|
|
6752
|
+
AddressTemplate?: AddressTemplate
|
|
6665
6753
|
|
|
6666
6754
|
/**
|
|
6667
6755
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -6696,12 +6784,12 @@ export interface CreateVpnGatewaySslClientResponse {
|
|
|
6696
6784
|
/**
|
|
6697
6785
|
* 异步任务ID。
|
|
6698
6786
|
*/
|
|
6699
|
-
TaskId
|
|
6787
|
+
TaskId?: number
|
|
6700
6788
|
|
|
6701
6789
|
/**
|
|
6702
6790
|
* SSL-VPN client 唯一ID
|
|
6703
6791
|
*/
|
|
6704
|
-
SslVpnClientId
|
|
6792
|
+
SslVpnClientId?: string
|
|
6705
6793
|
|
|
6706
6794
|
/**
|
|
6707
6795
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -7583,7 +7671,7 @@ export interface ResetVpnGatewayInternetMaxBandwidthRequest {
|
|
|
7583
7671
|
VpnGatewayId: string
|
|
7584
7672
|
|
|
7585
7673
|
/**
|
|
7586
|
-
*
|
|
7674
|
+
* 新规格公网带宽设置。可选带宽规格:5, 10, 20, 50, 100, 200, 500, 1000;单位:Mbps。VPN网关带宽目前仅支持部分带宽范围内升降配,如【5,100】Mbps和【200,1000】Mbps,在各自带宽范围内可提升配额,跨范围提升配额和降配暂不支持。
|
|
7587
7675
|
*/
|
|
7588
7676
|
InternetMaxBandwidthOut: number
|
|
7589
7677
|
}
|
|
@@ -7830,7 +7918,7 @@ export interface Price {
|
|
|
7830
7918
|
InstancePrice?: ItemPrice
|
|
7831
7919
|
|
|
7832
7920
|
/**
|
|
7833
|
-
*
|
|
7921
|
+
* 带宽价格。
|
|
7834
7922
|
*/
|
|
7835
7923
|
BandwidthPrice?: ItemPrice
|
|
7836
7924
|
}
|
|
@@ -8087,9 +8175,14 @@ export interface DescribeClassicLinkInstancesResponse {
|
|
|
8087
8175
|
*/
|
|
8088
8176
|
export interface EnableVpnGatewaySslClientCertRequest {
|
|
8089
8177
|
/**
|
|
8090
|
-
* SSL-VPN-CLIENT 实例ID
|
|
8178
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
8091
8179
|
*/
|
|
8092
|
-
SslVpnClientId
|
|
8180
|
+
SslVpnClientId?: string
|
|
8181
|
+
|
|
8182
|
+
/**
|
|
8183
|
+
* SSL-VPN-CLIENT 实例ID列表。批量启用时使用。不可和SslVpnClientId同时使用。
|
|
8184
|
+
*/
|
|
8185
|
+
SslVpnClientIds?: Array<string>
|
|
8093
8186
|
}
|
|
8094
8187
|
|
|
8095
8188
|
/**
|
|
@@ -8178,7 +8271,7 @@ export interface Filter {
|
|
|
8178
8271
|
Name: string
|
|
8179
8272
|
|
|
8180
8273
|
/**
|
|
8181
|
-
* 属性值, 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR
|
|
8274
|
+
* 属性值, 若同一个Filter存在多个Values,同一Filter下Values间的关系为逻辑或(OR)关系。当值类型为布尔类型时,可直接取值为字符串"TRUE"或 "FALSE"。
|
|
8182
8275
|
*/
|
|
8183
8276
|
Values: Array<string>
|
|
8184
8277
|
}
|
|
@@ -9229,19 +9322,19 @@ export interface SslVpnSever {
|
|
|
9229
9322
|
*/
|
|
9230
9323
|
export interface DownloadVpnGatewaySslClientCertResponse {
|
|
9231
9324
|
/**
|
|
9232
|
-
*
|
|
9325
|
+
* SSL-VPN 客户端配置。
|
|
9233
9326
|
*/
|
|
9234
|
-
SslClientConfigsSet
|
|
9327
|
+
SslClientConfigsSet?: string
|
|
9235
9328
|
|
|
9236
9329
|
/**
|
|
9237
|
-
* SSL-VPN
|
|
9330
|
+
* SSL-VPN 客户端配置。
|
|
9238
9331
|
*/
|
|
9239
|
-
SslClientConfig
|
|
9332
|
+
SslClientConfig?: Array<SslClientConfig>
|
|
9240
9333
|
|
|
9241
9334
|
/**
|
|
9242
|
-
* 是否鉴权成功 只有传入SamlToken
|
|
9335
|
+
* 是否鉴权成功 只有传入SamlToken 才生效,1为成功,0为失败。
|
|
9243
9336
|
*/
|
|
9244
|
-
Authenticated
|
|
9337
|
+
Authenticated?: number
|
|
9245
9338
|
|
|
9246
9339
|
/**
|
|
9247
9340
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -9648,9 +9741,14 @@ export interface CreateVpnGatewaySslClientRequest {
|
|
|
9648
9741
|
SslVpnServerId: string
|
|
9649
9742
|
|
|
9650
9743
|
/**
|
|
9651
|
-
*
|
|
9744
|
+
* SSL-VPN-CLIENT实例Name。不可和SslVpnClientNames同时使用。
|
|
9745
|
+
*/
|
|
9746
|
+
SslVpnClientName?: string
|
|
9747
|
+
|
|
9748
|
+
/**
|
|
9749
|
+
* SSL-VPN-CLIENT实例Name数字。批量创建时使用。不可和SslVpnClientName同时使用。
|
|
9652
9750
|
*/
|
|
9653
|
-
|
|
9751
|
+
SslVpnClientNames?: Array<string>
|
|
9654
9752
|
}
|
|
9655
9753
|
|
|
9656
9754
|
/**
|
|
@@ -10322,12 +10420,12 @@ export interface DescribeNetworkAclsResponse {
|
|
|
10322
10420
|
/**
|
|
10323
10421
|
* 实例详细信息列表。
|
|
10324
10422
|
*/
|
|
10325
|
-
NetworkAclSet
|
|
10423
|
+
NetworkAclSet?: Array<NetworkAcl>
|
|
10326
10424
|
|
|
10327
10425
|
/**
|
|
10328
10426
|
* 符合条件的实例数量。
|
|
10329
10427
|
*/
|
|
10330
|
-
TotalCount
|
|
10428
|
+
TotalCount?: number
|
|
10331
10429
|
|
|
10332
10430
|
/**
|
|
10333
10431
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -10434,7 +10532,7 @@ AVAILABLE:可用的
|
|
|
10434
10532
|
State?: string
|
|
10435
10533
|
|
|
10436
10534
|
/**
|
|
10437
|
-
* IP服务质量等级,可选值:PT、AU、AG、DEFAULT
|
|
10535
|
+
* IP服务质量等级,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
|
|
10438
10536
|
*/
|
|
10439
10537
|
QosLevel?: string
|
|
10440
10538
|
}
|
|
@@ -10464,6 +10562,36 @@ export interface MigratePrivateIpAddressResponse {
|
|
|
10464
10562
|
RequestId?: string
|
|
10465
10563
|
}
|
|
10466
10564
|
|
|
10565
|
+
/**
|
|
10566
|
+
* DescribeUsedIpAddress请求参数结构体
|
|
10567
|
+
*/
|
|
10568
|
+
export interface DescribeUsedIpAddressRequest {
|
|
10569
|
+
/**
|
|
10570
|
+
* VPC实例ID。
|
|
10571
|
+
*/
|
|
10572
|
+
VpcId: string
|
|
10573
|
+
|
|
10574
|
+
/**
|
|
10575
|
+
* 子网实例ID。
|
|
10576
|
+
*/
|
|
10577
|
+
SubnetId?: string
|
|
10578
|
+
|
|
10579
|
+
/**
|
|
10580
|
+
* 查询是否占用的ip列表
|
|
10581
|
+
*/
|
|
10582
|
+
IpAddresses?: Array<string>
|
|
10583
|
+
|
|
10584
|
+
/**
|
|
10585
|
+
* 偏移量。
|
|
10586
|
+
*/
|
|
10587
|
+
Offset?: number
|
|
10588
|
+
|
|
10589
|
+
/**
|
|
10590
|
+
* 请求对象个数。
|
|
10591
|
+
*/
|
|
10592
|
+
Limit?: number
|
|
10593
|
+
}
|
|
10594
|
+
|
|
10467
10595
|
/**
|
|
10468
10596
|
* DeleteRouteTable返回参数结构体
|
|
10469
10597
|
*/
|
|
@@ -10796,7 +10924,7 @@ export interface DescribeVpcPrivateIpAddressesResponse {
|
|
|
10796
10924
|
/**
|
|
10797
10925
|
* 内网`IP`地址信息列表。
|
|
10798
10926
|
*/
|
|
10799
|
-
VpcPrivateIpAddressSet
|
|
10927
|
+
VpcPrivateIpAddressSet?: Array<VpcPrivateIpAddress>
|
|
10800
10928
|
|
|
10801
10929
|
/**
|
|
10802
10930
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -11187,9 +11315,14 @@ export interface ModifyTemplateMemberResponse {
|
|
|
11187
11315
|
*/
|
|
11188
11316
|
export interface DeleteVpnGatewaySslClientRequest {
|
|
11189
11317
|
/**
|
|
11190
|
-
* SSL-VPN-CLIENT 实例ID
|
|
11318
|
+
* SSL-VPN-CLIENT 实例ID。不可和SslVpnClientIds同时使用。
|
|
11191
11319
|
*/
|
|
11192
|
-
SslVpnClientId
|
|
11320
|
+
SslVpnClientId?: string
|
|
11321
|
+
|
|
11322
|
+
/**
|
|
11323
|
+
* SSL-VPN-CLIENT 实例ID列表。批量删除时使用。不可和SslVpnClientId同时使用。
|
|
11324
|
+
*/
|
|
11325
|
+
SslVpnClientIds?: Array<string>
|
|
11193
11326
|
}
|
|
11194
11327
|
|
|
11195
11328
|
/**
|
|
@@ -11506,6 +11639,31 @@ export interface ModifyCcnAttributeRequest {
|
|
|
11506
11639
|
CcnDescription?: string
|
|
11507
11640
|
}
|
|
11508
11641
|
|
|
11642
|
+
/**
|
|
11643
|
+
* 资源统计信息
|
|
11644
|
+
*/
|
|
11645
|
+
export interface ResourceStatistics {
|
|
11646
|
+
/**
|
|
11647
|
+
* Vpc实例ID,例如:vpc-f1xjkw1b。
|
|
11648
|
+
*/
|
|
11649
|
+
VpcId: string
|
|
11650
|
+
|
|
11651
|
+
/**
|
|
11652
|
+
* 子网实例ID,例如:subnet-bthucmmy。
|
|
11653
|
+
*/
|
|
11654
|
+
SubnetId: string
|
|
11655
|
+
|
|
11656
|
+
/**
|
|
11657
|
+
* 当前已使用的IP总数。
|
|
11658
|
+
*/
|
|
11659
|
+
Ip: number
|
|
11660
|
+
|
|
11661
|
+
/**
|
|
11662
|
+
* 资源统计信息。
|
|
11663
|
+
*/
|
|
11664
|
+
ResourceStatisticsItemSet: Array<ResourceStatisticsItem>
|
|
11665
|
+
}
|
|
11666
|
+
|
|
11509
11667
|
/**
|
|
11510
11668
|
* DeleteSecurityGroupPolicies返回参数结构体
|
|
11511
11669
|
*/
|
|
@@ -11988,6 +12146,26 @@ export interface AllocateAddressesResponse {
|
|
|
11988
12146
|
RequestId?: string
|
|
11989
12147
|
}
|
|
11990
12148
|
|
|
12149
|
+
/**
|
|
12150
|
+
* DescribeVpnConnections返回参数结构体
|
|
12151
|
+
*/
|
|
12152
|
+
export interface DescribeVpnConnectionsResponse {
|
|
12153
|
+
/**
|
|
12154
|
+
* 符合条件的实例数量。
|
|
12155
|
+
*/
|
|
12156
|
+
TotalCount?: number
|
|
12157
|
+
|
|
12158
|
+
/**
|
|
12159
|
+
* VPN通道实例。
|
|
12160
|
+
*/
|
|
12161
|
+
VpnConnectionSet?: Array<VpnConnection>
|
|
12162
|
+
|
|
12163
|
+
/**
|
|
12164
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12165
|
+
*/
|
|
12166
|
+
RequestId?: string
|
|
12167
|
+
}
|
|
12168
|
+
|
|
11991
12169
|
/**
|
|
11992
12170
|
* 描述带宽包信息的结构
|
|
11993
12171
|
*/
|
|
@@ -12217,6 +12395,11 @@ export interface SslClientConfig {
|
|
|
12217
12395
|
* 客户端证书
|
|
12218
12396
|
*/
|
|
12219
12397
|
SslVpnCert: string
|
|
12398
|
+
|
|
12399
|
+
/**
|
|
12400
|
+
* SSL-VPN-CLIENT 实例ID。
|
|
12401
|
+
*/
|
|
12402
|
+
SslVpnClientId?: string
|
|
12220
12403
|
}
|
|
12221
12404
|
|
|
12222
12405
|
/**
|
|
@@ -13629,6 +13812,16 @@ export interface InquiryPriceResetVpnGatewayInternetMaxBandwidthRequest {
|
|
|
13629
13812
|
InternetMaxBandwidthOut: number
|
|
13630
13813
|
}
|
|
13631
13814
|
|
|
13815
|
+
/**
|
|
13816
|
+
* DisableFlowLogs请求参数结构体
|
|
13817
|
+
*/
|
|
13818
|
+
export interface DisableFlowLogsRequest {
|
|
13819
|
+
/**
|
|
13820
|
+
* 流日志Id。
|
|
13821
|
+
*/
|
|
13822
|
+
FlowLogIds: Array<string>
|
|
13823
|
+
}
|
|
13824
|
+
|
|
13632
13825
|
/**
|
|
13633
13826
|
* ReplaceSecurityGroupPolicy返回参数结构体
|
|
13634
13827
|
*/
|
|
@@ -13669,12 +13862,12 @@ export interface ReplaceRoutesResponse {
|
|
|
13669
13862
|
/**
|
|
13670
13863
|
* 原路由策略信息。
|
|
13671
13864
|
*/
|
|
13672
|
-
OldRouteSet
|
|
13865
|
+
OldRouteSet?: Array<Route>
|
|
13673
13866
|
|
|
13674
13867
|
/**
|
|
13675
13868
|
* 修改后的路由策略信息。
|
|
13676
13869
|
*/
|
|
13677
|
-
NewRouteSet
|
|
13870
|
+
NewRouteSet?: Array<Route>
|
|
13678
13871
|
|
|
13679
13872
|
/**
|
|
13680
13873
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -13852,12 +14045,12 @@ export interface CreateRoutesResponse {
|
|
|
13852
14045
|
/**
|
|
13853
14046
|
* 新增的实例个数。
|
|
13854
14047
|
*/
|
|
13855
|
-
TotalCount
|
|
14048
|
+
TotalCount?: number
|
|
13856
14049
|
|
|
13857
14050
|
/**
|
|
13858
14051
|
* 路由表对象。
|
|
13859
14052
|
*/
|
|
13860
|
-
RouteTableSet
|
|
14053
|
+
RouteTableSet?: Array<RouteTable>
|
|
13861
14054
|
|
|
13862
14055
|
/**
|
|
13863
14056
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -14122,19 +14315,24 @@ export interface AttachClassicLinkVpcResponse {
|
|
|
14122
14315
|
*/
|
|
14123
14316
|
export interface DownloadVpnGatewaySslClientCertRequest {
|
|
14124
14317
|
/**
|
|
14125
|
-
* SSL-VPN-CLIENT 实例ID
|
|
14318
|
+
* SSL-VPN-CLIENT 实例ID。不可以和SslVpnClientIds同时使用。
|
|
14126
14319
|
*/
|
|
14127
|
-
SslVpnClientId
|
|
14320
|
+
SslVpnClientId?: string
|
|
14128
14321
|
|
|
14129
14322
|
/**
|
|
14130
|
-
* SAML
|
|
14323
|
+
* SAML Token(SAML令牌)。
|
|
14131
14324
|
*/
|
|
14132
14325
|
SamlToken?: string
|
|
14133
14326
|
|
|
14134
14327
|
/**
|
|
14135
|
-
* VPN门户网站使用。默认
|
|
14328
|
+
* VPN门户网站使用。默认False
|
|
14136
14329
|
*/
|
|
14137
14330
|
IsVpnPortal?: boolean
|
|
14331
|
+
|
|
14332
|
+
/**
|
|
14333
|
+
* SSL-VPN-CLIENT 实例ID列表。批量下载时使用。不可以和SslVpnClientId同时使用。
|
|
14334
|
+
*/
|
|
14335
|
+
SslVpnClientIds?: Array<string>
|
|
14138
14336
|
}
|
|
14139
14337
|
|
|
14140
14338
|
/**
|
|
@@ -14158,18 +14356,23 @@ export interface CreateAddressTemplateRequest {
|
|
|
14158
14356
|
}
|
|
14159
14357
|
|
|
14160
14358
|
/**
|
|
14161
|
-
*
|
|
14359
|
+
* DescribeNatGateways返回参数结构体
|
|
14162
14360
|
*/
|
|
14163
|
-
export interface
|
|
14361
|
+
export interface DescribeNatGatewaysResponse {
|
|
14164
14362
|
/**
|
|
14165
|
-
*
|
|
14363
|
+
* NAT网关对象数组。
|
|
14166
14364
|
*/
|
|
14167
|
-
|
|
14365
|
+
NatGatewaySet: Array<NatGateway>
|
|
14168
14366
|
|
|
14169
14367
|
/**
|
|
14170
|
-
*
|
|
14368
|
+
* 符合条件的NAT网关对象个数。
|
|
14171
14369
|
*/
|
|
14172
|
-
|
|
14370
|
+
TotalCount: number
|
|
14371
|
+
|
|
14372
|
+
/**
|
|
14373
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
14374
|
+
*/
|
|
14375
|
+
RequestId?: string
|
|
14173
14376
|
}
|
|
14174
14377
|
|
|
14175
14378
|
/**
|
|
@@ -14418,7 +14621,7 @@ export interface DeleteRoutesRequest {
|
|
|
14418
14621
|
/**
|
|
14419
14622
|
* 路由策略对象,删除路由策略时,仅需使用Route的RouteId字段。
|
|
14420
14623
|
*/
|
|
14421
|
-
Routes
|
|
14624
|
+
Routes?: Array<Route>
|
|
14422
14625
|
}
|
|
14423
14626
|
|
|
14424
14627
|
/**
|
|
@@ -15253,19 +15456,9 @@ export interface CreateDhcpIpRequest {
|
|
|
15253
15456
|
}
|
|
15254
15457
|
|
|
15255
15458
|
/**
|
|
15256
|
-
*
|
|
15459
|
+
* DeleteTrafficPackages返回参数结构体
|
|
15257
15460
|
*/
|
|
15258
|
-
export interface
|
|
15259
|
-
/**
|
|
15260
|
-
* 符合条件的实例数量。
|
|
15261
|
-
*/
|
|
15262
|
-
TotalCount?: number
|
|
15263
|
-
|
|
15264
|
-
/**
|
|
15265
|
-
* VPN通道实例。
|
|
15266
|
-
*/
|
|
15267
|
-
VpnConnectionSet?: Array<VpnConnection>
|
|
15268
|
-
|
|
15461
|
+
export interface DeleteTrafficPackagesResponse {
|
|
15269
15462
|
/**
|
|
15270
15463
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15271
15464
|
*/
|
|
@@ -15455,13 +15648,18 @@ export interface CreateVpcRequest {
|
|
|
15455
15648
|
}
|
|
15456
15649
|
|
|
15457
15650
|
/**
|
|
15458
|
-
*
|
|
15651
|
+
* DescribeSubnetResourceDashboard返回参数结构体
|
|
15459
15652
|
*/
|
|
15460
|
-
export interface
|
|
15653
|
+
export interface DescribeSubnetResourceDashboardResponse {
|
|
15461
15654
|
/**
|
|
15462
|
-
*
|
|
15655
|
+
* 资源统计结果。
|
|
15463
15656
|
*/
|
|
15464
|
-
|
|
15657
|
+
ResourceStatisticsSet?: Array<ResourceStatistics>
|
|
15658
|
+
|
|
15659
|
+
/**
|
|
15660
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15661
|
+
*/
|
|
15662
|
+
RequestId?: string
|
|
15465
15663
|
}
|
|
15466
15664
|
|
|
15467
15665
|
/**
|
|
@@ -15518,8 +15716,9 @@ LOCAL_GATEWAY:本地网关。
|
|
|
15518
15716
|
GatewayType: string
|
|
15519
15717
|
|
|
15520
15718
|
/**
|
|
15521
|
-
|
|
15522
|
-
|
|
15719
|
+
* 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
|
|
15720
|
+
特殊说明:GatewayType为NORMAL_CVM时,GatewayId填写实例的内网IP。
|
|
15721
|
+
*/
|
|
15523
15722
|
GatewayId: string
|
|
15524
15723
|
|
|
15525
15724
|
/**
|
|
@@ -15581,7 +15780,7 @@ export interface EnableVpnGatewaySslClientCertResponse {
|
|
|
15581
15780
|
/**
|
|
15582
15781
|
* 异步任务实例ID。
|
|
15583
15782
|
*/
|
|
15584
|
-
TaskId
|
|
15783
|
+
TaskId?: number
|
|
15585
15784
|
|
|
15586
15785
|
/**
|
|
15587
15786
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -15715,6 +15914,28 @@ export interface AcceptAttachCcnInstancesResponse {
|
|
|
15715
15914
|
RequestId?: string
|
|
15716
15915
|
}
|
|
15717
15916
|
|
|
15917
|
+
/**
|
|
15918
|
+
* DescribeUsedIpAddress返回参数结构体
|
|
15919
|
+
*/
|
|
15920
|
+
export interface DescribeUsedIpAddressResponse {
|
|
15921
|
+
/**
|
|
15922
|
+
* 占用ip地址的资源信息
|
|
15923
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15924
|
+
*/
|
|
15925
|
+
IpAddressStates?: Array<IpAddressStates>
|
|
15926
|
+
|
|
15927
|
+
/**
|
|
15928
|
+
* 返回占用资源的个数
|
|
15929
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
15930
|
+
*/
|
|
15931
|
+
TotalCount?: number
|
|
15932
|
+
|
|
15933
|
+
/**
|
|
15934
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15935
|
+
*/
|
|
15936
|
+
RequestId?: string
|
|
15937
|
+
}
|
|
15938
|
+
|
|
15718
15939
|
/**
|
|
15719
15940
|
* IP地址模板信息
|
|
15720
15941
|
*/
|