tencentcloud-sdk-nodejs-vpc 4.0.294 → 4.0.295

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.
@@ -393,6 +393,64 @@ export interface DescribeVpcIpv6AddressesRequest {
393
393
  Limit?: number
394
394
  }
395
395
 
396
+ /**
397
+ * SSL-VPN-CLIENT 出参
398
+ */
399
+ export interface SslVpnClient {
400
+ /**
401
+ * VPC实例ID
402
+ */
403
+ VpcId: string
404
+
405
+ /**
406
+ * SSL-VPN-SERVER 实例ID
407
+ */
408
+ SslVpnServerId: string
409
+
410
+ /**
411
+ * 证书状态.
412
+ 0:创建中
413
+ 1:正常
414
+ 2:已停用
415
+ 3.已过期
416
+ 4.创建出错
417
+ */
418
+ CertStatus: number
419
+
420
+ /**
421
+ * SSL-VPN-CLIENT 实例ID
422
+ */
423
+ SslVpnClientId: string
424
+
425
+ /**
426
+ * 证书开始时间
427
+ */
428
+ CertBeginTime: string
429
+
430
+ /**
431
+ * 证书到期时间
432
+ */
433
+ CertEndTime: string
434
+
435
+ /**
436
+ * CLIENT NAME
437
+ */
438
+ Name: string
439
+
440
+ /**
441
+ * 创建CLIENT 状态。
442
+ 0 创建中
443
+ 1 创建出错
444
+ 2 更新中
445
+ 3 更新出错
446
+ 4 销毁中
447
+ 5 销毁出粗
448
+ 6 已连通
449
+ 7 未知
450
+ */
451
+ State: string
452
+ }
453
+
396
454
  /**
397
455
  * NAT的SNAT规则
398
456
  */
@@ -557,6 +615,21 @@ export interface CreateDhcpIpResponse {
557
615
  RequestId?: string
558
616
  }
559
617
 
618
+ /**
619
+ * DeleteVpnGatewaySslServer返回参数结构体
620
+ */
621
+ export interface DeleteVpnGatewaySslServerResponse {
622
+ /**
623
+ * 异步任务ID。
624
+ */
625
+ TaskId: number
626
+
627
+ /**
628
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
629
+ */
630
+ RequestId?: string
631
+ }
632
+
560
633
  /**
561
634
  * DescribeIpGeolocationInfos请求参数结构体
562
635
  */
@@ -914,6 +987,21 @@ export interface AssignIpv6SubnetCidrBlockRequest {
914
987
  Ipv6SubnetCidrBlocks: Array<Ipv6SubnetCidrBlock>
915
988
  }
916
989
 
990
+ /**
991
+ * DeleteVpnGatewaySslClient返回参数结构体
992
+ */
993
+ export interface DeleteVpnGatewaySslClientResponse {
994
+ /**
995
+ * 异步任务ID。
996
+ */
997
+ TaskId: number
998
+
999
+ /**
1000
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1001
+ */
1002
+ RequestId?: string
1003
+ }
1004
+
917
1005
  /**
918
1006
  * CreateVpc返回参数结构体
919
1007
  */
@@ -1322,6 +1410,56 @@ export interface CreateDirectConnectGatewayRequest {
1322
1410
  HaZoneGroupId?: string
1323
1411
  }
1324
1412
 
1413
+ /**
1414
+ * CreateVpnGatewaySslServer请求参数结构体
1415
+ */
1416
+ export interface CreateVpnGatewaySslServerRequest {
1417
+ /**
1418
+ * VPN实例ID
1419
+ */
1420
+ VpnGatewayId: string
1421
+
1422
+ /**
1423
+ * SSL_VPN_SERVER 实例名
1424
+ */
1425
+ SslVpnServerName: string
1426
+
1427
+ /**
1428
+ * 本端地址网段
1429
+ */
1430
+ LocalAddress: Array<string>
1431
+
1432
+ /**
1433
+ * 客户端地址网段
1434
+ */
1435
+ RemoteAddress: string
1436
+
1437
+ /**
1438
+ * SSL VPN服务端监听协议。当前仅支持 UDP。默认UDP
1439
+ */
1440
+ SslVpnProtocol?: string
1441
+
1442
+ /**
1443
+ * SSL VPN服务端监听协议端口。默认1194。
1444
+ */
1445
+ SslVpnPort?: number
1446
+
1447
+ /**
1448
+ * 认证算法。可选 'SHA1', 'MD5', 'NONE'。默认NONE
1449
+ */
1450
+ IntegrityAlgorithm?: string
1451
+
1452
+ /**
1453
+ * 加密算法。可选 'AES-128-CBC', 'AES-192-CBC', 'AES-256-CBC', 'NONE'。默认NONE
1454
+ */
1455
+ EncryptAlgorithm?: string
1456
+
1457
+ /**
1458
+ * 是否支持压缩。当前仅支持不支持压缩。默认False
1459
+ */
1460
+ Compress?: boolean
1461
+ }
1462
+
1325
1463
  /**
1326
1464
  * CreateVpcEndPoint请求参数结构体
1327
1465
  */
@@ -1707,6 +1845,16 @@ export interface DeleteVpcEndPointServiceWhiteListRequest {
1707
1845
  EndPointServiceId: string
1708
1846
  }
1709
1847
 
1848
+ /**
1849
+ * DetachNetworkInterface返回参数结构体
1850
+ */
1851
+ export interface DetachNetworkInterfaceResponse {
1852
+ /**
1853
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1854
+ */
1855
+ RequestId?: string
1856
+ }
1857
+
1710
1858
  /**
1711
1859
  * DeleteVpcEndPointService请求参数结构体
1712
1860
  */
@@ -1916,18 +2064,28 @@ export interface DescribeDirectConnectGatewaysRequest {
1916
2064
  }
1917
2065
 
1918
2066
  /**
1919
- * DisassociateVpcEndPointSecurityGroups请求参数结构体
2067
+ * DisableVpnGatewaySslClientCert请求参数结构体
1920
2068
  */
1921
- export interface DisassociateVpcEndPointSecurityGroupsRequest {
2069
+ export interface DisableVpnGatewaySslClientCertRequest {
1922
2070
  /**
1923
- * 安全组ID数组。
2071
+ * SSL-VPN-CLIENT 实例ID
1924
2072
  */
1925
- SecurityGroupIds: Array<string>
2073
+ SslVpnClientId: string
2074
+ }
1926
2075
 
2076
+ /**
2077
+ * DescribeVpcPrivateIpAddresses返回参数结构体
2078
+ */
2079
+ export interface DescribeVpcPrivateIpAddressesResponse {
1927
2080
  /**
1928
- * 终端节点ID。
2081
+ * 内网`IP`地址信息列表。
1929
2082
  */
1930
- EndPointId: string
2083
+ VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>
2084
+
2085
+ /**
2086
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2087
+ */
2088
+ RequestId?: string
1931
2089
  }
1932
2090
 
1933
2091
  /**
@@ -2183,6 +2341,21 @@ export interface HaVipDisassociateAddressIpResponse {
2183
2341
  RequestId?: string
2184
2342
  }
2185
2343
 
2344
+ /**
2345
+ * DisassociateVpcEndPointSecurityGroups请求参数结构体
2346
+ */
2347
+ export interface DisassociateVpcEndPointSecurityGroupsRequest {
2348
+ /**
2349
+ * 安全组ID数组。
2350
+ */
2351
+ SecurityGroupIds: Array<string>
2352
+
2353
+ /**
2354
+ * 终端节点ID。
2355
+ */
2356
+ EndPointId: string
2357
+ }
2358
+
2186
2359
  /**
2187
2360
  * DescribeTaskResult请求参数结构体
2188
2361
  */
@@ -2796,6 +2969,21 @@ export interface ModifyIp6AddressesBandwidthRequest {
2796
2969
  Ip6AddressIds?: Array<string>
2797
2970
  }
2798
2971
 
2972
+ /**
2973
+ * DisableVpnGatewaySslClientCert返回参数结构体
2974
+ */
2975
+ export interface DisableVpnGatewaySslClientCertResponse {
2976
+ /**
2977
+ * 异步任务实例ID。
2978
+ */
2979
+ TaskId: number
2980
+
2981
+ /**
2982
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2983
+ */
2984
+ RequestId?: string
2985
+ }
2986
+
2799
2987
  /**
2800
2988
  * CreateLocalGateway请求参数结构体
2801
2989
  */
@@ -3155,6 +3343,36 @@ export interface CreateNatGatewayResponse {
3155
3343
  RequestId?: string
3156
3344
  }
3157
3345
 
3346
+ /**
3347
+ * DescribeVpnGatewaySslClients请求参数结构体
3348
+ */
3349
+ export interface DescribeVpnGatewaySslClientsRequest {
3350
+ /**
3351
+ * 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。
3352
+ <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
3353
+ <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
3354
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
3355
+ <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpngwSslClient-123456。</li>
3356
+ <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
3357
+ */
3358
+ Filters?: Array<Filter>
3359
+
3360
+ /**
3361
+ * 偏移量
3362
+ */
3363
+ Offset?: number
3364
+
3365
+ /**
3366
+ * 请求对象个数
3367
+ */
3368
+ Limit?: number
3369
+
3370
+ /**
3371
+ * SSL-VPN-CLIENT实例ID。形如:vpngwSslClient-f49l6u0z。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
3372
+ */
3373
+ SslVpnClientIds?: Array<string>
3374
+ }
3375
+
3158
3376
  /**
3159
3377
  * DescribeIp6TranslatorQuota请求参数结构体
3160
3378
  */
@@ -3185,6 +3403,36 @@ export interface ModifySecurityGroupAttributeRequest {
3185
3403
  GroupDescription?: string
3186
3404
  }
3187
3405
 
3406
+ /**
3407
+ * DescribeVpnGatewaySslServers请求参数结构体
3408
+ */
3409
+ export interface DescribeVpnGatewaySslServersRequest {
3410
+ /**
3411
+ * 偏移量
3412
+ */
3413
+ Offset?: number
3414
+
3415
+ /**
3416
+ * 请求对象个数
3417
+ */
3418
+ Limit?: number
3419
+
3420
+ /**
3421
+ * SSL-VPN-SERVER实例ID。形如:vpngwSslServer-12345678。每次请求的实例的上限为100。参数不支持同时指定SslVpnServerIds和Filters。
3422
+ */
3423
+ SslVpnServerIds?: Array<string>
3424
+
3425
+ /**
3426
+ * 过滤条件,参数不支持同时指定SslVpnServerIds和Filters。
3427
+ <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
3428
+ <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
3429
+ <li>vpn-gateway-name - String - (过滤条件)VPN实例名称。</li>
3430
+ <li>ssl-vpn-server-name - String - (过滤条件)SSL-VPN-SERVER实例名称。</li>
3431
+ <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
3432
+ */
3433
+ Filters?: Array<FilterObject>
3434
+ }
3435
+
3188
3436
  /**
3189
3437
  * ModifyNetDetect请求参数结构体
3190
3438
  */
@@ -3255,18 +3503,13 @@ export interface DescribeNetDetectStatesResponse {
3255
3503
  }
3256
3504
 
3257
3505
  /**
3258
- * DescribeVpcResourceDashboard返回参数结构体
3506
+ * DeleteVpnGatewaySslServer请求参数结构体
3259
3507
  */
3260
- export interface DescribeVpcResourceDashboardResponse {
3508
+ export interface DeleteVpnGatewaySslServerRequest {
3261
3509
  /**
3262
- * 资源对象列表。
3510
+ * SSL-VPN-SERVER 实例ID。
3263
3511
  */
3264
- ResourceDashboardSet?: Array<ResourceDashboard>
3265
-
3266
- /**
3267
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3268
- */
3269
- RequestId?: string
3512
+ SslVpnServerId: string
3270
3513
  }
3271
3514
 
3272
3515
  /**
@@ -4657,6 +4900,26 @@ export interface DeleteVpnConnectionResponse {
4657
4900
  RequestId?: string
4658
4901
  }
4659
4902
 
4903
+ /**
4904
+ * DescribeVpnGatewaySslClients返回参数结构体
4905
+ */
4906
+ export interface DescribeVpnGatewaySslClientsResponse {
4907
+ /**
4908
+ * 符合条件的实例数量。
4909
+ */
4910
+ TotalCount: number
4911
+
4912
+ /**
4913
+ * 符合条件的实例个数。
4914
+ */
4915
+ SslVpnClientSet: Array<SslVpnClient>
4916
+
4917
+ /**
4918
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4919
+ */
4920
+ RequestId?: string
4921
+ }
4922
+
4660
4923
  /**
4661
4924
  * DescribeBandwidthPackageResources请求参数结构体
4662
4925
  */
@@ -4717,18 +4980,13 @@ export interface Tag {
4717
4980
  }
4718
4981
 
4719
4982
  /**
4720
- * DescribeCcnAttachedInstances返回参数结构体
4983
+ * CreateFlowLog返回参数结构体
4721
4984
  */
4722
- export interface DescribeCcnAttachedInstancesResponse {
4723
- /**
4724
- * 符合条件的对象数。
4725
- */
4726
- TotalCount: number
4727
-
4985
+ export interface CreateFlowLogResponse {
4728
4986
  /**
4729
- * 关联实例列表。
4987
+ * 创建的流日志信息
4730
4988
  */
4731
- InstanceSet: Array<CcnAttachedInstance>
4989
+ FlowLog: Array<FlowLog>
4732
4990
 
4733
4991
  /**
4734
4992
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4936,9 +5194,14 @@ export interface ModifyBandwidthPackageAttributeResponse {
4936
5194
  }
4937
5195
 
4938
5196
  /**
4939
- * DetachNetworkInterface返回参数结构体
5197
+ * CreateVpnGatewaySslServer返回参数结构体
4940
5198
  */
4941
- export interface DetachNetworkInterfaceResponse {
5199
+ export interface CreateVpnGatewaySslServerResponse {
5200
+ /**
5201
+ * 创建SSL-VPN server 异步任务ID
5202
+ */
5203
+ TaskId: number
5204
+
4942
5205
  /**
4943
5206
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4944
5207
  */
@@ -5515,13 +5778,18 @@ export interface ResourceDashboard {
5515
5778
  }
5516
5779
 
5517
5780
  /**
5518
- * DescribeVpcPrivateIpAddresses返回参数结构体
5781
+ * DescribeCcnAttachedInstances返回参数结构体
5519
5782
  */
5520
- export interface DescribeVpcPrivateIpAddressesResponse {
5783
+ export interface DescribeCcnAttachedInstancesResponse {
5521
5784
  /**
5522
- * 内网`IP`地址信息列表。
5785
+ * 符合条件的对象数。
5523
5786
  */
5524
- VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>
5787
+ TotalCount: number
5788
+
5789
+ /**
5790
+ * 关联实例列表。
5791
+ */
5792
+ InstanceSet: Array<CcnAttachedInstance>
5525
5793
 
5526
5794
  /**
5527
5795
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5651,6 +5919,21 @@ export interface DeleteAddressTemplateGroupRequest {
5651
5919
  AddressTemplateGroupId: string
5652
5920
  }
5653
5921
 
5922
+ /**
5923
+ * CreateVpnGatewaySslClient返回参数结构体
5924
+ */
5925
+ export interface CreateVpnGatewaySslClientResponse {
5926
+ /**
5927
+ * 异步任务ID。
5928
+ */
5929
+ TaskId: number
5930
+
5931
+ /**
5932
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5933
+ */
5934
+ RequestId?: string
5935
+ }
5936
+
5654
5937
  /**
5655
5938
  * DescribeNetworkInterfaceLimit请求参数结构体
5656
5939
  */
@@ -6784,6 +7067,21 @@ export interface EndPointService {
6784
7067
  CreateTime: string
6785
7068
  }
6786
7069
 
7070
+ /**
7071
+ * DescribeVpcResourceDashboard返回参数结构体
7072
+ */
7073
+ export interface DescribeVpcResourceDashboardResponse {
7074
+ /**
7075
+ * 资源对象列表。
7076
+ */
7077
+ ResourceDashboardSet?: Array<ResourceDashboard>
7078
+
7079
+ /**
7080
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7081
+ */
7082
+ RequestId?: string
7083
+ }
7084
+
6787
7085
  /**
6788
7086
  * DescribeVpnGatewayCcnRoutes请求参数结构体
6789
7087
  */
@@ -6849,6 +7147,16 @@ export interface DescribeClassicLinkInstancesResponse {
6849
7147
  RequestId?: string
6850
7148
  }
6851
7149
 
7150
+ /**
7151
+ * EnableVpnGatewaySslClientCert请求参数结构体
7152
+ */
7153
+ export interface EnableVpnGatewaySslClientCertRequest {
7154
+ /**
7155
+ * SSL-VPN-CLIENT 实例ID。
7156
+ */
7157
+ SslVpnClientId: string
7158
+ }
7159
+
6852
7160
  /**
6853
7161
  * DescribeVpnGatewayCcnRoutes返回参数结构体
6854
7162
  */
@@ -6920,14 +7228,9 @@ export interface Filter {
6920
7228
  }
6921
7229
 
6922
7230
  /**
6923
- * CreateFlowLog返回参数结构体
7231
+ * MigrateNetworkInterface返回参数结构体
6924
7232
  */
6925
- export interface CreateFlowLogResponse {
6926
- /**
6927
- * 创建的流日志信息
6928
- */
6929
- FlowLog: Array<FlowLog>
6930
-
7233
+ export interface MigrateNetworkInterfaceResponse {
6931
7234
  /**
6932
7235
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6933
7236
  */
@@ -7755,26 +8058,107 @@ export interface DeleteDhcpIpResponse {
7755
8058
  }
7756
8059
 
7757
8060
  /**
7758
- * ModifyGatewayFlowQos请求参数结构体
8061
+ * SSL-VPN-SERVER 信息 SET
7759
8062
  */
7760
- export interface ModifyGatewayFlowQosRequest {
8063
+ export interface SslVpnSever {
7761
8064
  /**
7762
- * 网关实例ID,目前我们支持的网关实例类型有,
7763
- 专线网关实例ID,形如,`dcg-ltjahce6`;
7764
- Nat网关实例ID,形如,`nat-ltjahce6`;
7765
- VPN网关实例ID,形如,`vpn-ltjahce6`。
8065
+ * VPC实例ID.
8066
+ 注意:此字段可能返回 null,表示取不到有效值。
7766
8067
  */
7767
- GatewayId: string
8068
+ VpcId: string
7768
8069
 
7769
8070
  /**
7770
- * 流控带宽值。取值大于0,表示限流到指定的Mbps;取值等于0,表示完全限流;取值为-1,不限流。
8071
+ * SSL-VPN-SERVER 实例ID。
7771
8072
  */
7772
- Bandwidth: number
8073
+ SslVpnServerId: string
7773
8074
 
7774
8075
  /**
7775
- * 限流的云服务器内网IP
8076
+ * VPN 实例ID
7776
8077
  */
7777
- IpAddresses: Array<string>
8078
+ VpnGatewayId: string
8079
+
8080
+ /**
8081
+ * SSL-VPN-SERVER name。
8082
+ */
8083
+ SslVpnServerName: string
8084
+
8085
+ /**
8086
+ * 本端地址段。
8087
+ */
8088
+ LocalAddress: Array<string>
8089
+
8090
+ /**
8091
+ * 客户端地址段。
8092
+ */
8093
+ RemoteAddress: string
8094
+
8095
+ /**
8096
+ * 客户端最大连接数。
8097
+ */
8098
+ MaxConnection: number
8099
+
8100
+ /**
8101
+ * SSL-VPN 网关公网IP。
8102
+ */
8103
+ WanIp: string
8104
+
8105
+ /**
8106
+ * SSL VPN服务端监听协议
8107
+ */
8108
+ SslVpnProtocol: string
8109
+
8110
+ /**
8111
+ * SSL VPN服务端监听协议端口
8112
+ */
8113
+ SslVpnPort: number
8114
+
8115
+ /**
8116
+ * 加密算法。
8117
+ */
8118
+ EncryptAlgorithm: string
8119
+
8120
+ /**
8121
+ * 认证算法。
8122
+ */
8123
+ IntegrityAlgorithm: string
8124
+
8125
+ /**
8126
+ * 是否支持压缩。
8127
+ */
8128
+ Compress: number
8129
+
8130
+ /**
8131
+ * 创建时间。
8132
+ */
8133
+ CreateTime: string
8134
+
8135
+ /**
8136
+ * SSL-VPN-SERVER 创建状态。
8137
+ 0 创建中
8138
+ 1 创建出错
8139
+ 2 更新中
8140
+ 3 更新出错
8141
+ 4 销毁中
8142
+ 5 销毁出粗
8143
+ 6 已连通
8144
+ 7 未知
8145
+ */
8146
+ State: number
8147
+ }
8148
+
8149
+ /**
8150
+ * DownloadVpnGatewaySslClientCert返回参数结构体
8151
+ */
8152
+ export interface DownloadVpnGatewaySslClientCertResponse {
8153
+ /**
8154
+ * SSL-VPN-CLIENT 证书配置
8155
+ */
8156
+ SslClientConfigsSet: string
8157
+
8158
+ /**
8159
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8160
+ */
8161
+ RequestId?: string
7778
8162
  }
7779
8163
 
7780
8164
  /**
@@ -8151,6 +8535,41 @@ export interface GatewayFlowMonitorDetail {
8151
8535
  OutTraffic: number
8152
8536
  }
8153
8537
 
8538
+ /**
8539
+ * CreateVpnGatewaySslClient请求参数结构体
8540
+ */
8541
+ export interface CreateVpnGatewaySslClientRequest {
8542
+ /**
8543
+ * SSL-VPN-SERVER 实例ID。
8544
+ */
8545
+ SslVpnServerId: string
8546
+
8547
+ /**
8548
+ * name
8549
+ */
8550
+ SslVpnClientName: string
8551
+ }
8552
+
8553
+ /**
8554
+ * DescribeVpnGatewaySslServers返回参数结构体
8555
+ */
8556
+ export interface DescribeVpnGatewaySslServersResponse {
8557
+ /**
8558
+ * 符合条件的实例数量。
8559
+ */
8560
+ TotalCount: number
8561
+
8562
+ /**
8563
+ * SSL-VPN-SERVER 实例详细信息列表。
8564
+ */
8565
+ SslVpnSeverSet: Array<SslVpnSever>
8566
+
8567
+ /**
8568
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8569
+ */
8570
+ RequestId?: string
8571
+ }
8572
+
8154
8573
  /**
8155
8574
  * DeleteNatGatewayDestinationIpPortTranslationNatRule返回参数结构体
8156
8575
  */
@@ -9103,6 +9522,29 @@ export interface CreateDirectConnectGatewayCcnRoutesRequest {
9103
9522
  Routes: Array<DirectConnectGatewayCcnRoute>
9104
9523
  }
9105
9524
 
9525
+ /**
9526
+ * ModifyGatewayFlowQos请求参数结构体
9527
+ */
9528
+ export interface ModifyGatewayFlowQosRequest {
9529
+ /**
9530
+ * 网关实例ID,目前我们支持的网关实例类型有,
9531
+ 专线网关实例ID,形如,`dcg-ltjahce6`;
9532
+ Nat网关实例ID,形如,`nat-ltjahce6`;
9533
+ VPN网关实例ID,形如,`vpn-ltjahce6`。
9534
+ */
9535
+ GatewayId: string
9536
+
9537
+ /**
9538
+ * 流控带宽值。取值大于0,表示限流到指定的Mbps;取值等于0,表示完全限流;取值为-1,不限流。
9539
+ */
9540
+ Bandwidth: number
9541
+
9542
+ /**
9543
+ * 限流的云服务器内网IP。
9544
+ */
9545
+ IpAddresses: Array<string>
9546
+ }
9547
+
9106
9548
  /**
9107
9549
  * CreateDirectConnectGatewayCcnRoutes返回参数结构体
9108
9550
  */
@@ -9343,6 +9785,16 @@ export interface ModifyTemplateMemberResponse {
9343
9785
  RequestId?: string
9344
9786
  }
9345
9787
 
9788
+ /**
9789
+ * DeleteVpnGatewaySslClient请求参数结构体
9790
+ */
9791
+ export interface DeleteVpnGatewaySslClientRequest {
9792
+ /**
9793
+ * SSL-VPN-CLIENT 实例ID。
9794
+ */
9795
+ SslVpnClientId: string
9796
+ }
9797
+
9346
9798
  /**
9347
9799
  * 子网对象
9348
9800
  */
@@ -11716,6 +12168,16 @@ export interface AttachClassicLinkVpcResponse {
11716
12168
  RequestId?: string
11717
12169
  }
11718
12170
 
12171
+ /**
12172
+ * DownloadVpnGatewaySslClientCert请求参数结构体
12173
+ */
12174
+ export interface DownloadVpnGatewaySslClientCertRequest {
12175
+ /**
12176
+ * SSL-VPN-CLIENT 实例ID。
12177
+ */
12178
+ SslVpnClientId: string
12179
+ }
12180
+
11719
12181
  /**
11720
12182
  * CreateAddressTemplate请求参数结构体
11721
12183
  */
@@ -12328,16 +12790,6 @@ export interface DetachClassicLinkVpcResponse {
12328
12790
  RequestId?: string
12329
12791
  }
12330
12792
 
12331
- /**
12332
- * MigrateNetworkInterface返回参数结构体
12333
- */
12334
- export interface MigrateNetworkInterfaceResponse {
12335
- /**
12336
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
12337
- */
12338
- RequestId?: string
12339
- }
12340
-
12341
12793
  /**
12342
12794
  * UnassignPrivateIpAddresses请求参数结构体
12343
12795
  */
@@ -13189,6 +13641,21 @@ CCN:云联网路由,系统默认下发,不可编辑与删除。
13189
13641
  CreatedTime?: string
13190
13642
  }
13191
13643
 
13644
+ /**
13645
+ * EnableVpnGatewaySslClientCert返回参数结构体
13646
+ */
13647
+ export interface EnableVpnGatewaySslClientCertResponse {
13648
+ /**
13649
+ * 异步任务实例ID。
13650
+ */
13651
+ TaskId: number
13652
+
13653
+ /**
13654
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
13655
+ */
13656
+ RequestId?: string
13657
+ }
13658
+
13192
13659
  /**
13193
13660
  * ModifySubnetAttribute请求参数结构体
13194
13661
  */