tencentcloud-sdk-nodejs-vpc 4.0.293 → 4.0.296

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.
@@ -322,6 +322,56 @@ export interface DescribeVpcIpv6AddressesRequest {
322
322
  */
323
323
  Limit?: number;
324
324
  }
325
+ /**
326
+ * SSL-VPN-CLIENT 出参
327
+ */
328
+ export interface SslVpnClient {
329
+ /**
330
+ * VPC实例ID
331
+ */
332
+ VpcId: string;
333
+ /**
334
+ * SSL-VPN-SERVER 实例ID
335
+ */
336
+ SslVpnServerId: string;
337
+ /**
338
+ * 证书状态.
339
+ 0:创建中
340
+ 1:正常
341
+ 2:已停用
342
+ 3.已过期
343
+ 4.创建出错
344
+ */
345
+ CertStatus: number;
346
+ /**
347
+ * SSL-VPN-CLIENT 实例ID
348
+ */
349
+ SslVpnClientId: string;
350
+ /**
351
+ * 证书开始时间
352
+ */
353
+ CertBeginTime: string;
354
+ /**
355
+ * 证书到期时间
356
+ */
357
+ CertEndTime: string;
358
+ /**
359
+ * CLIENT NAME
360
+ */
361
+ Name: string;
362
+ /**
363
+ * 创建CLIENT 状态。
364
+ 0 创建中
365
+ 1 创建出错
366
+ 2 更新中
367
+ 3 更新出错
368
+ 4 销毁中
369
+ 5 销毁出粗
370
+ 6 已连通
371
+ 7 未知
372
+ */
373
+ State: string;
374
+ }
325
375
  /**
326
376
  * NAT的SNAT规则
327
377
  */
@@ -462,6 +512,19 @@ export interface CreateDhcpIpResponse {
462
512
  */
463
513
  RequestId?: string;
464
514
  }
515
+ /**
516
+ * DeleteVpnGatewaySslServer返回参数结构体
517
+ */
518
+ export interface DeleteVpnGatewaySslServerResponse {
519
+ /**
520
+ * 异步任务ID。
521
+ */
522
+ TaskId: number;
523
+ /**
524
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
525
+ */
526
+ RequestId?: string;
527
+ }
465
528
  /**
466
529
  * DescribeIpGeolocationInfos请求参数结构体
467
530
  */
@@ -764,6 +827,19 @@ export interface AssignIpv6SubnetCidrBlockRequest {
764
827
  */
765
828
  Ipv6SubnetCidrBlocks: Array<Ipv6SubnetCidrBlock>;
766
829
  }
830
+ /**
831
+ * DeleteVpnGatewaySslClient返回参数结构体
832
+ */
833
+ export interface DeleteVpnGatewaySslClientResponse {
834
+ /**
835
+ * 异步任务ID。
836
+ */
837
+ TaskId: number;
838
+ /**
839
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
840
+ */
841
+ RequestId?: string;
842
+ }
767
843
  /**
768
844
  * CreateVpc返回参数结构体
769
845
  */
@@ -1107,6 +1183,47 @@ export interface CreateDirectConnectGatewayRequest {
1107
1183
  */
1108
1184
  HaZoneGroupId?: string;
1109
1185
  }
1186
+ /**
1187
+ * CreateVpnGatewaySslServer请求参数结构体
1188
+ */
1189
+ export interface CreateVpnGatewaySslServerRequest {
1190
+ /**
1191
+ * VPN实例ID
1192
+ */
1193
+ VpnGatewayId: string;
1194
+ /**
1195
+ * SSL_VPN_SERVER 实例名
1196
+ */
1197
+ SslVpnServerName: string;
1198
+ /**
1199
+ * 本端地址网段
1200
+ */
1201
+ LocalAddress: Array<string>;
1202
+ /**
1203
+ * 客户端地址网段
1204
+ */
1205
+ RemoteAddress: string;
1206
+ /**
1207
+ * SSL VPN服务端监听协议。当前仅支持 UDP。默认UDP
1208
+ */
1209
+ SslVpnProtocol?: string;
1210
+ /**
1211
+ * SSL VPN服务端监听协议端口。默认1194。
1212
+ */
1213
+ SslVpnPort?: number;
1214
+ /**
1215
+ * 认证算法。可选 'SHA1', 'MD5', 'NONE'。默认NONE
1216
+ */
1217
+ IntegrityAlgorithm?: string;
1218
+ /**
1219
+ * 加密算法。可选 'AES-128-CBC', 'AES-192-CBC', 'AES-256-CBC', 'NONE'。默认NONE
1220
+ */
1221
+ EncryptAlgorithm?: string;
1222
+ /**
1223
+ * 是否支持压缩。当前仅支持不支持压缩。默认False
1224
+ */
1225
+ Compress?: boolean;
1226
+ }
1110
1227
  /**
1111
1228
  * CreateVpcEndPoint请求参数结构体
1112
1229
  */
@@ -1437,6 +1554,15 @@ export interface DeleteVpcEndPointServiceWhiteListRequest {
1437
1554
  */
1438
1555
  EndPointServiceId: string;
1439
1556
  }
1557
+ /**
1558
+ * DetachNetworkInterface返回参数结构体
1559
+ */
1560
+ export interface DetachNetworkInterfaceResponse {
1561
+ /**
1562
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1563
+ */
1564
+ RequestId?: string;
1565
+ }
1440
1566
  /**
1441
1567
  * DeleteVpcEndPointService请求参数结构体
1442
1568
  */
@@ -1617,17 +1743,26 @@ export interface DescribeDirectConnectGatewaysRequest {
1617
1743
  Limit?: number;
1618
1744
  }
1619
1745
  /**
1620
- * DisassociateVpcEndPointSecurityGroups请求参数结构体
1746
+ * DisableVpnGatewaySslClientCert请求参数结构体
1621
1747
  */
1622
- export interface DisassociateVpcEndPointSecurityGroupsRequest {
1748
+ export interface DisableVpnGatewaySslClientCertRequest {
1623
1749
  /**
1624
- * 安全组ID数组。
1750
+ * SSL-VPN-CLIENT 实例ID
1625
1751
  */
1626
- SecurityGroupIds: Array<string>;
1752
+ SslVpnClientId: string;
1753
+ }
1754
+ /**
1755
+ * DescribeVpcPrivateIpAddresses返回参数结构体
1756
+ */
1757
+ export interface DescribeVpcPrivateIpAddressesResponse {
1627
1758
  /**
1628
- * 终端节点ID。
1759
+ * 内网`IP`地址信息列表。
1629
1760
  */
1630
- EndPointId: string;
1761
+ VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>;
1762
+ /**
1763
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1764
+ */
1765
+ RequestId?: string;
1631
1766
  }
1632
1767
  /**
1633
1768
  * ModifyIp6Translator返回参数结构体
@@ -1848,6 +1983,19 @@ export interface HaVipDisassociateAddressIpResponse {
1848
1983
  */
1849
1984
  RequestId?: string;
1850
1985
  }
1986
+ /**
1987
+ * DisassociateVpcEndPointSecurityGroups请求参数结构体
1988
+ */
1989
+ export interface DisassociateVpcEndPointSecurityGroupsRequest {
1990
+ /**
1991
+ * 安全组ID数组。
1992
+ */
1993
+ SecurityGroupIds: Array<string>;
1994
+ /**
1995
+ * 终端节点ID。
1996
+ */
1997
+ EndPointId: string;
1998
+ }
1851
1999
  /**
1852
2000
  * DescribeTaskResult请求参数结构体
1853
2001
  */
@@ -2375,6 +2523,19 @@ export interface ModifyIp6AddressesBandwidthRequest {
2375
2523
  */
2376
2524
  Ip6AddressIds?: Array<string>;
2377
2525
  }
2526
+ /**
2527
+ * DisableVpnGatewaySslClientCert返回参数结构体
2528
+ */
2529
+ export interface DisableVpnGatewaySslClientCertResponse {
2530
+ /**
2531
+ * 异步任务实例ID。
2532
+ */
2533
+ TaskId: number;
2534
+ /**
2535
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2536
+ */
2537
+ RequestId?: string;
2538
+ }
2378
2539
  /**
2379
2540
  * CreateLocalGateway请求参数结构体
2380
2541
  */
@@ -2681,6 +2842,32 @@ export interface CreateNatGatewayResponse {
2681
2842
  */
2682
2843
  RequestId?: string;
2683
2844
  }
2845
+ /**
2846
+ * DescribeVpnGatewaySslClients请求参数结构体
2847
+ */
2848
+ export interface DescribeVpnGatewaySslClientsRequest {
2849
+ /**
2850
+ * 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。
2851
+ <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
2852
+ <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
2853
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
2854
+ <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpngwSslClient-123456。</li>
2855
+ <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
2856
+ */
2857
+ Filters?: Array<Filter>;
2858
+ /**
2859
+ * 偏移量
2860
+ */
2861
+ Offset?: number;
2862
+ /**
2863
+ * 请求对象个数
2864
+ */
2865
+ Limit?: number;
2866
+ /**
2867
+ * SSL-VPN-CLIENT实例ID。形如:vpngwSslClient-f49l6u0z。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
2868
+ */
2869
+ SslVpnClientIds?: Array<string>;
2870
+ }
2684
2871
  /**
2685
2872
  * DescribeIp6TranslatorQuota请求参数结构体
2686
2873
  */
@@ -2707,6 +2894,32 @@ export interface ModifySecurityGroupAttributeRequest {
2707
2894
  */
2708
2895
  GroupDescription?: string;
2709
2896
  }
2897
+ /**
2898
+ * DescribeVpnGatewaySslServers请求参数结构体
2899
+ */
2900
+ export interface DescribeVpnGatewaySslServersRequest {
2901
+ /**
2902
+ * 偏移量
2903
+ */
2904
+ Offset?: number;
2905
+ /**
2906
+ * 请求对象个数
2907
+ */
2908
+ Limit?: number;
2909
+ /**
2910
+ * SSL-VPN-SERVER实例ID。形如:vpngwSslServer-12345678。每次请求的实例的上限为100。参数不支持同时指定SslVpnServerIds和Filters。
2911
+ */
2912
+ SslVpnServerIds?: Array<string>;
2913
+ /**
2914
+ * 过滤条件,参数不支持同时指定SslVpnServerIds和Filters。
2915
+ <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
2916
+ <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
2917
+ <li>vpn-gateway-name - String - (过滤条件)VPN实例名称。</li>
2918
+ <li>ssl-vpn-server-name - String - (过滤条件)SSL-VPN-SERVER实例名称。</li>
2919
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
2920
+ */
2921
+ Filters?: Array<FilterObject>;
2922
+ }
2710
2923
  /**
2711
2924
  * ModifyNetDetect请求参数结构体
2712
2925
  */
@@ -2768,17 +2981,13 @@ export interface DescribeNetDetectStatesResponse {
2768
2981
  RequestId?: string;
2769
2982
  }
2770
2983
  /**
2771
- * DescribeVpcResourceDashboard返回参数结构体
2984
+ * DeleteVpnGatewaySslServer请求参数结构体
2772
2985
  */
2773
- export interface DescribeVpcResourceDashboardResponse {
2986
+ export interface DeleteVpnGatewaySslServerRequest {
2774
2987
  /**
2775
- * 资源对象列表。
2988
+ * SSL-VPN-SERVER 实例ID。
2776
2989
  */
2777
- ResourceDashboardSet?: Array<ResourceDashboard>;
2778
- /**
2779
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2780
- */
2781
- RequestId?: string;
2990
+ SslVpnServerId: string;
2782
2991
  }
2783
2992
  /**
2784
2993
  * AllocateIp6AddressesBandwidth返回参数结构体
@@ -3241,11 +3450,11 @@ export interface DescribeNetDetectsRequest {
3241
3450
  */
3242
3451
  export interface CreateAddressTemplateGroupRequest {
3243
3452
  /**
3244
- * IP地址模版集合名称。
3453
+ * IP地址模板集合名称。
3245
3454
  */
3246
3455
  AddressTemplateGroupName: string;
3247
3456
  /**
3248
- * IP地址模版实例ID,例如:ipm-mdunqeb6。
3457
+ * IP地址模板实例ID,例如:ipm-mdunqeb6。
3249
3458
  */
3250
3459
  AddressTemplateIds: Array<string>;
3251
3460
  }
@@ -3953,6 +4162,23 @@ export interface DeleteVpnConnectionResponse {
3953
4162
  */
3954
4163
  RequestId?: string;
3955
4164
  }
4165
+ /**
4166
+ * DescribeVpnGatewaySslClients返回参数结构体
4167
+ */
4168
+ export interface DescribeVpnGatewaySslClientsResponse {
4169
+ /**
4170
+ * 符合条件的实例数量。
4171
+ */
4172
+ TotalCount: number;
4173
+ /**
4174
+ * 符合条件的实例个数。
4175
+ */
4176
+ SslVpnClientSet: Array<SslVpnClient>;
4177
+ /**
4178
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4179
+ */
4180
+ RequestId?: string;
4181
+ }
3956
4182
  /**
3957
4183
  * DescribeBandwidthPackageResources请求参数结构体
3958
4184
  */
@@ -4005,17 +4231,13 @@ export interface Tag {
4005
4231
  Value?: string;
4006
4232
  }
4007
4233
  /**
4008
- * DescribeCcnAttachedInstances返回参数结构体
4234
+ * CreateFlowLog返回参数结构体
4009
4235
  */
4010
- export interface DescribeCcnAttachedInstancesResponse {
4011
- /**
4012
- * 符合条件的对象数。
4013
- */
4014
- TotalCount: number;
4236
+ export interface CreateFlowLogResponse {
4015
4237
  /**
4016
- * 关联实例列表。
4238
+ * 创建的流日志信息
4017
4239
  */
4018
- InstanceSet: Array<CcnAttachedInstance>;
4240
+ FlowLog: Array<FlowLog>;
4019
4241
  /**
4020
4242
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4021
4243
  */
@@ -4191,9 +4413,13 @@ export interface ModifyBandwidthPackageAttributeResponse {
4191
4413
  RequestId?: string;
4192
4414
  }
4193
4415
  /**
4194
- * DetachNetworkInterface返回参数结构体
4416
+ * CreateVpnGatewaySslServer返回参数结构体
4195
4417
  */
4196
- export interface DetachNetworkInterfaceResponse {
4418
+ export interface CreateVpnGatewaySslServerResponse {
4419
+ /**
4420
+ * 创建SSL-VPN server 异步任务ID
4421
+ */
4422
+ TaskId: number;
4197
4423
  /**
4198
4424
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4199
4425
  */
@@ -4315,7 +4541,7 @@ export interface CreateVpnConnectionResponse {
4315
4541
  RequestId?: string;
4316
4542
  }
4317
4543
  /**
4318
- * IP地址模版
4544
+ * IP地址模板
4319
4545
  */
4320
4546
  export interface AddressTemplateSpecification {
4321
4547
  /**
@@ -4676,13 +4902,17 @@ export interface ResourceDashboard {
4676
4902
  RouteTable: number;
4677
4903
  }
4678
4904
  /**
4679
- * DescribeVpcPrivateIpAddresses返回参数结构体
4905
+ * DescribeCcnAttachedInstances返回参数结构体
4680
4906
  */
4681
- export interface DescribeVpcPrivateIpAddressesResponse {
4907
+ export interface DescribeCcnAttachedInstancesResponse {
4682
4908
  /**
4683
- * 内网`IP`地址信息列表。
4909
+ * 符合条件的对象数。
4684
4910
  */
4685
- VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>;
4911
+ TotalCount: number;
4912
+ /**
4913
+ * 关联实例列表。
4914
+ */
4915
+ InstanceSet: Array<CcnAttachedInstance>;
4686
4916
  /**
4687
4917
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4688
4918
  */
@@ -4795,6 +5025,19 @@ export interface DeleteAddressTemplateGroupRequest {
4795
5025
  */
4796
5026
  AddressTemplateGroupId: string;
4797
5027
  }
5028
+ /**
5029
+ * CreateVpnGatewaySslClient返回参数结构体
5030
+ */
5031
+ export interface CreateVpnGatewaySslClientResponse {
5032
+ /**
5033
+ * 异步任务ID。
5034
+ */
5035
+ TaskId: number;
5036
+ /**
5037
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5038
+ */
5039
+ RequestId?: string;
5040
+ }
4798
5041
  /**
4799
5042
  * DescribeNetworkInterfaceLimit请求参数结构体
4800
5043
  */
@@ -5766,6 +6009,19 @@ export interface EndPointService {
5766
6009
  */
5767
6010
  CreateTime: string;
5768
6011
  }
6012
+ /**
6013
+ * DescribeVpcResourceDashboard返回参数结构体
6014
+ */
6015
+ export interface DescribeVpcResourceDashboardResponse {
6016
+ /**
6017
+ * 资源对象列表。
6018
+ */
6019
+ ResourceDashboardSet?: Array<ResourceDashboard>;
6020
+ /**
6021
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6022
+ */
6023
+ RequestId?: string;
6024
+ }
5769
6025
  /**
5770
6026
  * DescribeVpnGatewayCcnRoutes请求参数结构体
5771
6027
  */
@@ -5822,6 +6078,15 @@ export interface DescribeClassicLinkInstancesResponse {
5822
6078
  */
5823
6079
  RequestId?: string;
5824
6080
  }
6081
+ /**
6082
+ * EnableVpnGatewaySslClientCert请求参数结构体
6083
+ */
6084
+ export interface EnableVpnGatewaySslClientCertRequest {
6085
+ /**
6086
+ * SSL-VPN-CLIENT 实例ID。
6087
+ */
6088
+ SslVpnClientId: string;
6089
+ }
5825
6090
  /**
5826
6091
  * DescribeVpnGatewayCcnRoutes返回参数结构体
5827
6092
  */
@@ -5883,13 +6148,9 @@ export interface Filter {
5883
6148
  Values: Array<string>;
5884
6149
  }
5885
6150
  /**
5886
- * CreateFlowLog返回参数结构体
6151
+ * MigrateNetworkInterface返回参数结构体
5887
6152
  */
5888
- export interface CreateFlowLogResponse {
5889
- /**
5890
- * 创建的流日志信息
5891
- */
5892
- FlowLog: Array<FlowLog>;
6153
+ export interface MigrateNetworkInterfaceResponse {
5893
6154
  /**
5894
6155
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5895
6156
  */
@@ -6591,24 +6852,91 @@ export interface DeleteDhcpIpResponse {
6591
6852
  RequestId?: string;
6592
6853
  }
6593
6854
  /**
6594
- * ModifyGatewayFlowQos请求参数结构体
6855
+ * SSL-VPN-SERVER 信息 SET
6595
6856
  */
6596
- export interface ModifyGatewayFlowQosRequest {
6857
+ export interface SslVpnSever {
6597
6858
  /**
6598
- * 网关实例ID,目前我们支持的网关实例类型有,
6599
- 专线网关实例ID,形如,`dcg-ltjahce6`;
6600
- Nat网关实例ID,形如,`nat-ltjahce6`;
6601
- VPN网关实例ID,形如,`vpn-ltjahce6`。
6859
+ * VPC实例ID.
6860
+ 注意:此字段可能返回 null,表示取不到有效值。
6602
6861
  */
6603
- GatewayId: string;
6862
+ VpcId: string;
6604
6863
  /**
6605
- * 流控带宽值。取值大于0,表示限流到指定的Mbps;取值等于0,表示完全限流;取值为-1,不限流。
6864
+ * SSL-VPN-SERVER 实例ID。
6606
6865
  */
6607
- Bandwidth: number;
6866
+ SslVpnServerId: string;
6608
6867
  /**
6609
- * 限流的云服务器内网IP
6868
+ * VPN 实例ID
6610
6869
  */
6611
- IpAddresses: Array<string>;
6870
+ VpnGatewayId: string;
6871
+ /**
6872
+ * SSL-VPN-SERVER name。
6873
+ */
6874
+ SslVpnServerName: string;
6875
+ /**
6876
+ * 本端地址段。
6877
+ */
6878
+ LocalAddress: Array<string>;
6879
+ /**
6880
+ * 客户端地址段。
6881
+ */
6882
+ RemoteAddress: string;
6883
+ /**
6884
+ * 客户端最大连接数。
6885
+ */
6886
+ MaxConnection: number;
6887
+ /**
6888
+ * SSL-VPN 网关公网IP。
6889
+ */
6890
+ WanIp: string;
6891
+ /**
6892
+ * SSL VPN服务端监听协议
6893
+ */
6894
+ SslVpnProtocol: string;
6895
+ /**
6896
+ * SSL VPN服务端监听协议端口
6897
+ */
6898
+ SslVpnPort: number;
6899
+ /**
6900
+ * 加密算法。
6901
+ */
6902
+ EncryptAlgorithm: string;
6903
+ /**
6904
+ * 认证算法。
6905
+ */
6906
+ IntegrityAlgorithm: string;
6907
+ /**
6908
+ * 是否支持压缩。
6909
+ */
6910
+ Compress: number;
6911
+ /**
6912
+ * 创建时间。
6913
+ */
6914
+ CreateTime: string;
6915
+ /**
6916
+ * SSL-VPN-SERVER 创建状态。
6917
+ 0 创建中
6918
+ 1 创建出错
6919
+ 2 更新中
6920
+ 3 更新出错
6921
+ 4 销毁中
6922
+ 5 销毁出粗
6923
+ 6 已连通
6924
+ 7 未知
6925
+ */
6926
+ State: number;
6927
+ }
6928
+ /**
6929
+ * DownloadVpnGatewaySslClientCert返回参数结构体
6930
+ */
6931
+ export interface DownloadVpnGatewaySslClientCertResponse {
6932
+ /**
6933
+ * SSL-VPN-CLIENT 证书配置
6934
+ */
6935
+ SslClientConfigsSet: string;
6936
+ /**
6937
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6938
+ */
6939
+ RequestId?: string;
6612
6940
  }
6613
6941
  /**
6614
6942
  * DeleteNetDetect返回参数结构体
@@ -6927,6 +7255,36 @@ export interface GatewayFlowMonitorDetail {
6927
7255
  */
6928
7256
  OutTraffic: number;
6929
7257
  }
7258
+ /**
7259
+ * CreateVpnGatewaySslClient请求参数结构体
7260
+ */
7261
+ export interface CreateVpnGatewaySslClientRequest {
7262
+ /**
7263
+ * SSL-VPN-SERVER 实例ID。
7264
+ */
7265
+ SslVpnServerId: string;
7266
+ /**
7267
+ * name
7268
+ */
7269
+ SslVpnClientName: string;
7270
+ }
7271
+ /**
7272
+ * DescribeVpnGatewaySslServers返回参数结构体
7273
+ */
7274
+ export interface DescribeVpnGatewaySslServersResponse {
7275
+ /**
7276
+ * 符合条件的实例数量。
7277
+ */
7278
+ TotalCount: number;
7279
+ /**
7280
+ * SSL-VPN-SERVER 实例详细信息列表。
7281
+ */
7282
+ SslVpnSeverSet: Array<SslVpnSever>;
7283
+ /**
7284
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7285
+ */
7286
+ RequestId?: string;
7287
+ }
6930
7288
  /**
6931
7289
  * DeleteNatGatewayDestinationIpPortTranslationNatRule返回参数结构体
6932
7290
  */
@@ -7747,6 +8105,26 @@ export interface CreateDirectConnectGatewayCcnRoutesRequest {
7747
8105
  */
7748
8106
  Routes: Array<DirectConnectGatewayCcnRoute>;
7749
8107
  }
8108
+ /**
8109
+ * ModifyGatewayFlowQos请求参数结构体
8110
+ */
8111
+ export interface ModifyGatewayFlowQosRequest {
8112
+ /**
8113
+ * 网关实例ID,目前我们支持的网关实例类型有,
8114
+ 专线网关实例ID,形如,`dcg-ltjahce6`;
8115
+ Nat网关实例ID,形如,`nat-ltjahce6`;
8116
+ VPN网关实例ID,形如,`vpn-ltjahce6`。
8117
+ */
8118
+ GatewayId: string;
8119
+ /**
8120
+ * 流控带宽值。取值大于0,表示限流到指定的Mbps;取值等于0,表示完全限流;取值为-1,不限流。
8121
+ */
8122
+ Bandwidth: number;
8123
+ /**
8124
+ * 限流的云服务器内网IP。
8125
+ */
8126
+ IpAddresses: Array<string>;
8127
+ }
7750
8128
  /**
7751
8129
  * CreateDirectConnectGatewayCcnRoutes返回参数结构体
7752
8130
  */
@@ -7951,6 +8329,15 @@ export interface ModifyTemplateMemberResponse {
7951
8329
  */
7952
8330
  RequestId?: string;
7953
8331
  }
8332
+ /**
8333
+ * DeleteVpnGatewaySslClient请求参数结构体
8334
+ */
8335
+ export interface DeleteVpnGatewaySslClientRequest {
8336
+ /**
8337
+ * SSL-VPN-CLIENT 实例ID。
8338
+ */
8339
+ SslVpnClientId: string;
8340
+ }
7954
8341
  /**
7955
8342
  * 子网对象
7956
8343
  */
@@ -8658,7 +9045,7 @@ export interface CreateAddressTemplateGroupResponse {
8658
9045
  /**
8659
9046
  * IP地址模板集合对象。
8660
9047
  */
8661
- AddressTemplateGroup?: AddressTemplateGroup;
9048
+ AddressTemplateGroup: AddressTemplateGroup;
8662
9049
  /**
8663
9050
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8664
9051
  */
@@ -9902,7 +10289,7 @@ export interface ModifyNatGatewayDestinationIpPortTranslationNatRuleRequest {
9902
10289
  DestinationNatRule: DestinationIpPortTranslationNatRule;
9903
10290
  }
9904
10291
  /**
9905
- * 协议端口模版
10292
+ * 协议端口模板
9906
10293
  */
9907
10294
  export interface ServiceTemplateSpecification {
9908
10295
  /**
@@ -9977,6 +10364,15 @@ export interface AttachClassicLinkVpcResponse {
9977
10364
  */
9978
10365
  RequestId?: string;
9979
10366
  }
10367
+ /**
10368
+ * DownloadVpnGatewaySslClientCert请求参数结构体
10369
+ */
10370
+ export interface DownloadVpnGatewaySslClientCertRequest {
10371
+ /**
10372
+ * SSL-VPN-CLIENT 实例ID。
10373
+ */
10374
+ SslVpnClientId: string;
10375
+ }
9980
10376
  /**
9981
10377
  * CreateAddressTemplate请求参数结构体
9982
10378
  */
@@ -10495,15 +10891,6 @@ export interface DetachClassicLinkVpcResponse {
10495
10891
  */
10496
10892
  RequestId?: string;
10497
10893
  }
10498
- /**
10499
- * MigrateNetworkInterface返回参数结构体
10500
- */
10501
- export interface MigrateNetworkInterfaceResponse {
10502
- /**
10503
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
10504
- */
10505
- RequestId?: string;
10506
- }
10507
10894
  /**
10508
10895
  * UnassignPrivateIpAddresses请求参数结构体
10509
10896
  */
@@ -10994,7 +11381,7 @@ export interface DescribeAddressTemplatesResponse {
10994
11381
  */
10995
11382
  TotalCount: number;
10996
11383
  /**
10997
- * IP地址模版。
11384
+ * IP地址模板。
10998
11385
  */
10999
11386
  AddressTemplateSet: Array<AddressTemplate>;
11000
11387
  /**
@@ -11236,6 +11623,19 @@ export interface Route {
11236
11623
  */
11237
11624
  CreatedTime?: string;
11238
11625
  }
11626
+ /**
11627
+ * EnableVpnGatewaySslClientCert返回参数结构体
11628
+ */
11629
+ export interface EnableVpnGatewaySslClientCertResponse {
11630
+ /**
11631
+ * 异步任务实例ID。
11632
+ */
11633
+ TaskId: number;
11634
+ /**
11635
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11636
+ */
11637
+ RequestId?: string;
11638
+ }
11239
11639
  /**
11240
11640
  * ModifySubnetAttribute请求参数结构体
11241
11641
  */