tencentcloud-sdk-nodejs 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.
- package/CHANGELOG.md +99 -0
- package/SERVICE_CHANGELOG.md +125 -75
- package/package.json +1 -1
- package/products.md +9 -9
- package/src/common/sdk_version.ts +1 -1
- package/src/services/asr/v20190614/asr_client.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +5 -0
- package/src/services/eiam/v20210420/eiam_models.ts +4 -4
- package/src/services/live/v20180801/live_client.ts +81 -23
- package/src/services/live/v20180801/live_models.ts +453 -251
- package/src/services/oceanus/v20190422/oceanus_models.ts +11 -0
- package/src/services/tsf/v20180326/tsf_models.ts +12 -0
- package/src/services/vpc/v20170312/vpc_client.ts +148 -38
- package/src/services/vpc/v20170312/vpc_models.ts +525 -58
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
- package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +5 -0
- package/tencentcloud/services/eiam/v20210420/eiam_models.d.ts +4 -4
- package/tencentcloud/services/live/v20180801/live_client.d.ts +32 -7
- package/tencentcloud/services/live/v20180801/live_client.js +41 -8
- package/tencentcloud/services/live/v20180801/live_models.d.ts +392 -221
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +9 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +10 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +47 -11
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +69 -15
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +454 -54
- package/test/live.v20180801.test.js +44 -4
- package/test/vpc.v20170312.test.js +100 -10
|
@@ -313,6 +313,11 @@ export interface CreateJobConfigRequest {
|
|
|
313
313
|
* 日志采集类型 2:CLS;3:COS
|
|
314
314
|
*/
|
|
315
315
|
LogCollectType?: number
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* pyflink作业运行时使用的python版本
|
|
319
|
+
*/
|
|
320
|
+
PythonVersion?: string
|
|
316
321
|
}
|
|
317
322
|
|
|
318
323
|
/**
|
|
@@ -1304,6 +1309,12 @@ export interface JobConfig {
|
|
|
1304
1309
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1305
1310
|
*/
|
|
1306
1311
|
ClsTopicId: string
|
|
1312
|
+
|
|
1313
|
+
/**
|
|
1314
|
+
* pyflink作业运行的python版本
|
|
1315
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1316
|
+
*/
|
|
1317
|
+
PythonVersion: string
|
|
1307
1318
|
}
|
|
1308
1319
|
|
|
1309
1320
|
/**
|
|
@@ -7273,6 +7273,18 @@ export interface ServiceSetting {
|
|
|
7273
7273
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
7274
7274
|
*/
|
|
7275
7275
|
AllowDeleteService?: boolean
|
|
7276
|
+
|
|
7277
|
+
/**
|
|
7278
|
+
* 开启SessionAffinity,true为开启,false为不开启,默认为false
|
|
7279
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7280
|
+
*/
|
|
7281
|
+
OpenSessionAffinity?: boolean
|
|
7282
|
+
|
|
7283
|
+
/**
|
|
7284
|
+
* SessionAffinity会话时间,默认10800
|
|
7285
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7286
|
+
*/
|
|
7287
|
+
SessionAffinityTimeoutSeconds?: number
|
|
7276
7288
|
}
|
|
7277
7289
|
|
|
7278
7290
|
/**
|
|
@@ -36,6 +36,7 @@ import {
|
|
|
36
36
|
DescribeVpcLimitsRequest,
|
|
37
37
|
ReleaseIp6AddressesBandwidthResponse,
|
|
38
38
|
DescribeVpcIpv6AddressesRequest,
|
|
39
|
+
SslVpnClient,
|
|
39
40
|
SourceIpTranslationNatRule,
|
|
40
41
|
DisableCcnRoutesRequest,
|
|
41
42
|
ModifyNatGatewayDestinationIpPortTranslationNatRuleResponse,
|
|
@@ -44,6 +45,7 @@ import {
|
|
|
44
45
|
DescribeVpnGatewaysResponse,
|
|
45
46
|
ServiceTemplateGroup,
|
|
46
47
|
CreateDhcpIpResponse,
|
|
48
|
+
DeleteVpnGatewaySslServerResponse,
|
|
47
49
|
DescribeIpGeolocationInfosRequest,
|
|
48
50
|
AddTemplateMemberResponse,
|
|
49
51
|
CreateDefaultSecurityGroupRequest,
|
|
@@ -59,6 +61,7 @@ import {
|
|
|
59
61
|
IpField,
|
|
60
62
|
AddBandwidthPackageResourcesRequest,
|
|
61
63
|
AssignIpv6SubnetCidrBlockRequest,
|
|
64
|
+
DeleteVpnGatewaySslClientResponse,
|
|
62
65
|
CreateVpcResponse,
|
|
63
66
|
AssistantCidr,
|
|
64
67
|
ModifyNetworkAclEntriesRequest,
|
|
@@ -74,6 +77,7 @@ import {
|
|
|
74
77
|
CloneSecurityGroupRequest,
|
|
75
78
|
AssociateNatGatewayAddressRequest,
|
|
76
79
|
CreateDirectConnectGatewayRequest,
|
|
80
|
+
CreateVpnGatewaySslServerRequest,
|
|
77
81
|
CreateVpcEndPointRequest,
|
|
78
82
|
ModifyBandwidthPackageAttributeRequest,
|
|
79
83
|
TransformAddressResponse,
|
|
@@ -94,6 +98,7 @@ import {
|
|
|
94
98
|
ModifyCustomerGatewayAttributeRequest,
|
|
95
99
|
DescribeRouteTablesResponse,
|
|
96
100
|
DeleteVpcEndPointServiceWhiteListRequest,
|
|
101
|
+
DetachNetworkInterfaceResponse,
|
|
97
102
|
DeleteVpcEndPointServiceRequest,
|
|
98
103
|
DeleteCcnResponse,
|
|
99
104
|
ServiceTemplate,
|
|
@@ -103,7 +108,8 @@ import {
|
|
|
103
108
|
ModifyFlowLogAttributeResponse,
|
|
104
109
|
DescribeBandwidthPackagesResponse,
|
|
105
110
|
DescribeDirectConnectGatewaysRequest,
|
|
106
|
-
|
|
111
|
+
DisableVpnGatewaySslClientCertRequest,
|
|
112
|
+
DescribeVpcPrivateIpAddressesResponse,
|
|
107
113
|
ModifyIp6TranslatorResponse,
|
|
108
114
|
CreateVpcEndPointServiceWhiteListResponse,
|
|
109
115
|
DescribeIpGeolocationDatabaseUrlResponse,
|
|
@@ -117,6 +123,7 @@ import {
|
|
|
117
123
|
DeleteFlowLogRequest,
|
|
118
124
|
NetDetectState,
|
|
119
125
|
HaVipDisassociateAddressIpResponse,
|
|
126
|
+
DisassociateVpcEndPointSecurityGroupsRequest,
|
|
120
127
|
DescribeTaskResultRequest,
|
|
121
128
|
ModifyAddressInternetChargeTypeResponse,
|
|
122
129
|
UnassignIpv6SubnetCidrBlockRequest,
|
|
@@ -150,6 +157,7 @@ import {
|
|
|
150
157
|
SetCcnRegionBandwidthLimitsRequest,
|
|
151
158
|
ModifyAddressInternetChargeTypeRequest,
|
|
152
159
|
ModifyIp6AddressesBandwidthRequest,
|
|
160
|
+
DisableVpnGatewaySslClientCertResponse,
|
|
153
161
|
CreateLocalGatewayRequest,
|
|
154
162
|
DescribeDirectConnectGatewaysResponse,
|
|
155
163
|
AddBandwidthPackageResourcesResponse,
|
|
@@ -167,11 +175,13 @@ import {
|
|
|
167
175
|
ReferredSecurityGroup,
|
|
168
176
|
ModifyAddressTemplateAttributeRequest,
|
|
169
177
|
CreateNatGatewayResponse,
|
|
178
|
+
DescribeVpnGatewaySslClientsRequest,
|
|
170
179
|
DescribeIp6TranslatorQuotaRequest,
|
|
171
180
|
ModifySecurityGroupAttributeRequest,
|
|
181
|
+
DescribeVpnGatewaySslServersRequest,
|
|
172
182
|
ModifyNetDetectRequest,
|
|
173
183
|
DescribeNetDetectStatesResponse,
|
|
174
|
-
|
|
184
|
+
DeleteVpnGatewaySslServerRequest,
|
|
175
185
|
AllocateIp6AddressesBandwidthResponse,
|
|
176
186
|
DescribeNetDetectStatesRequest,
|
|
177
187
|
DescribeNatGatewaysResponse,
|
|
@@ -228,10 +238,11 @@ import {
|
|
|
228
238
|
DisassociateAddressRequest,
|
|
229
239
|
NetworkAclEntrySet,
|
|
230
240
|
DeleteVpnConnectionResponse,
|
|
241
|
+
DescribeVpnGatewaySslClientsResponse,
|
|
231
242
|
DescribeBandwidthPackageResourcesRequest,
|
|
232
243
|
EnableCcnRoutesRequest,
|
|
233
244
|
Tag,
|
|
234
|
-
|
|
245
|
+
CreateFlowLogResponse,
|
|
235
246
|
DefaultVpcSubnet,
|
|
236
247
|
DescribeIp6TranslatorsRequest,
|
|
237
248
|
CreateSubnetsResponse,
|
|
@@ -241,7 +252,7 @@ import {
|
|
|
241
252
|
CustomerGateway,
|
|
242
253
|
ModifyDirectConnectGatewayAttributeRequest,
|
|
243
254
|
ModifyBandwidthPackageAttributeResponse,
|
|
244
|
-
|
|
255
|
+
CreateVpnGatewaySslServerResponse,
|
|
245
256
|
ResetRoutesResponse,
|
|
246
257
|
DeleteNetworkAclRequest,
|
|
247
258
|
NatGatewayDestinationIpPortTranslationNatRule,
|
|
@@ -259,7 +270,7 @@ import {
|
|
|
259
270
|
ReplaceSecurityGroupPolicyRequest,
|
|
260
271
|
ModifyVpcEndPointServiceAttributeResponse,
|
|
261
272
|
ResourceDashboard,
|
|
262
|
-
|
|
273
|
+
DescribeCcnAttachedInstancesResponse,
|
|
263
274
|
HaVipAssociateAddressIpResponse,
|
|
264
275
|
DeleteCustomerGatewayResponse,
|
|
265
276
|
CreateVpnGatewayRoutesResponse,
|
|
@@ -267,6 +278,7 @@ import {
|
|
|
267
278
|
CreateAddressTemplateResponse,
|
|
268
279
|
CreateNatGatewayDestinationIpPortTranslationNatRuleResponse,
|
|
269
280
|
DeleteAddressTemplateGroupRequest,
|
|
281
|
+
CreateVpnGatewaySslClientResponse,
|
|
270
282
|
DescribeNetworkInterfaceLimitRequest,
|
|
271
283
|
CreateBandwidthPackageRequest,
|
|
272
284
|
DescribeIp6AddressesResponse,
|
|
@@ -315,15 +327,17 @@ import {
|
|
|
315
327
|
ModifyVpnGatewayAttributeResponse,
|
|
316
328
|
AssociateDirectConnectGatewayNatGatewayResponse,
|
|
317
329
|
EndPointService,
|
|
330
|
+
DescribeVpcResourceDashboardResponse,
|
|
318
331
|
DescribeVpnGatewayCcnRoutesRequest,
|
|
319
332
|
DisassociateDirectConnectGatewayNatGatewayResponse,
|
|
320
333
|
CreateServiceTemplateGroupRequest,
|
|
321
334
|
DescribeClassicLinkInstancesResponse,
|
|
335
|
+
EnableVpnGatewaySslClientCertRequest,
|
|
322
336
|
DescribeVpnGatewayCcnRoutesResponse,
|
|
323
337
|
DetachCcnInstancesRequest,
|
|
324
338
|
ModifyVpcEndPointServiceWhiteListRequest,
|
|
325
339
|
Filter,
|
|
326
|
-
|
|
340
|
+
MigrateNetworkInterfaceResponse,
|
|
327
341
|
DeleteDirectConnectGatewayRequest,
|
|
328
342
|
CreateNatGatewaySourceIpTranslationNatRuleResponse,
|
|
329
343
|
DeleteNatGatewaySourceIpTranslationNatRuleResponse,
|
|
@@ -356,7 +370,8 @@ import {
|
|
|
356
370
|
CreateAndAttachNetworkInterfaceRequest,
|
|
357
371
|
DeleteVpcEndPointResponse,
|
|
358
372
|
DeleteDhcpIpResponse,
|
|
359
|
-
|
|
373
|
+
SslVpnSever,
|
|
374
|
+
DownloadVpnGatewaySslClientCertResponse,
|
|
360
375
|
DeleteNetDetectResponse,
|
|
361
376
|
AllocateAddressesRequest,
|
|
362
377
|
CrossBorderCompliance,
|
|
@@ -371,6 +386,8 @@ import {
|
|
|
371
386
|
ModifyAddressAttributeResponse,
|
|
372
387
|
AttachClassicLinkVpcRequest,
|
|
373
388
|
GatewayFlowMonitorDetail,
|
|
389
|
+
CreateVpnGatewaySslClientRequest,
|
|
390
|
+
DescribeVpnGatewaySslServersResponse,
|
|
374
391
|
DeleteNatGatewayDestinationIpPortTranslationNatRuleResponse,
|
|
375
392
|
DeleteVpnGatewayRequest,
|
|
376
393
|
ReplaceRouteTableAssociationResponse,
|
|
@@ -428,6 +445,7 @@ import {
|
|
|
428
445
|
DescribeAddressTemplateGroupsResponse,
|
|
429
446
|
ReleaseAddressesRequest,
|
|
430
447
|
CreateDirectConnectGatewayCcnRoutesRequest,
|
|
448
|
+
ModifyGatewayFlowQosRequest,
|
|
431
449
|
CreateDirectConnectGatewayCcnRoutesResponse,
|
|
432
450
|
CreateRouteTableRequest,
|
|
433
451
|
MigrateNetworkInterfaceRequest,
|
|
@@ -439,6 +457,7 @@ import {
|
|
|
439
457
|
DhcpIp,
|
|
440
458
|
DeleteAssistantCidrRequest,
|
|
441
459
|
ModifyTemplateMemberResponse,
|
|
460
|
+
DeleteVpnGatewaySslClientRequest,
|
|
442
461
|
SubnetInput,
|
|
443
462
|
DescribeNatGatewayDirectConnectGatewayRouteResponse,
|
|
444
463
|
EnableVpcEndPointConnectResponse,
|
|
@@ -557,6 +576,7 @@ import {
|
|
|
557
576
|
DetachNetworkInterfaceRequest,
|
|
558
577
|
Ip6Rule,
|
|
559
578
|
AttachClassicLinkVpcResponse,
|
|
579
|
+
DownloadVpnGatewaySslClientCertRequest,
|
|
560
580
|
CreateAddressTemplateRequest,
|
|
561
581
|
DescribeRouteConflictsRequest,
|
|
562
582
|
NatDirectConnectGatewayRoute,
|
|
@@ -584,7 +604,6 @@ import {
|
|
|
584
604
|
ModifyAddressTemplateGroupAttributeResponse,
|
|
585
605
|
VpcLimit,
|
|
586
606
|
DetachClassicLinkVpcResponse,
|
|
587
|
-
MigrateNetworkInterfaceResponse,
|
|
588
607
|
UnassignPrivateIpAddressesRequest,
|
|
589
608
|
DeleteVpnGatewayRoutesRequest,
|
|
590
609
|
DescribeProductQuotaRequest,
|
|
@@ -632,6 +651,7 @@ import {
|
|
|
632
651
|
DescribeSecurityGroupAssociationStatisticsRequest,
|
|
633
652
|
NotifyRoutesResponse,
|
|
634
653
|
Route,
|
|
654
|
+
EnableVpnGatewaySslClientCertResponse,
|
|
635
655
|
ModifySubnetAttributeRequest,
|
|
636
656
|
ModifyVpcEndPointServiceWhiteListResponse,
|
|
637
657
|
DescribeBandwidthPackageQuotaRequest,
|
|
@@ -897,6 +917,16 @@ export class Client extends AbstractClient {
|
|
|
897
917
|
return this.request("ResetRoutes", req, cb)
|
|
898
918
|
}
|
|
899
919
|
|
|
920
|
+
/**
|
|
921
|
+
* 删除SSL-VPN-SERVER 实例
|
|
922
|
+
*/
|
|
923
|
+
async DeleteVpnGatewaySslServer(
|
|
924
|
+
req: DeleteVpnGatewaySslServerRequest,
|
|
925
|
+
cb?: (error: string, rep: DeleteVpnGatewaySslServerResponse) => void
|
|
926
|
+
): Promise<DeleteVpnGatewaySslServerResponse> {
|
|
927
|
+
return this.request("DeleteVpnGatewaySslServer", req, cb)
|
|
928
|
+
}
|
|
929
|
+
|
|
900
930
|
/**
|
|
901
931
|
* 本接口(DescribeNetworkInterfaceLimit)根据CVM实例ID或弹性网卡ID查询弹性网卡配额,返回该CVM实例或弹性网卡能绑定的弹性网卡配额,以及弹性网卡可以分配的IP配额
|
|
902
932
|
*/
|
|
@@ -1285,13 +1315,13 @@ export class Client extends AbstractClient {
|
|
|
1285
1315
|
}
|
|
1286
1316
|
|
|
1287
1317
|
/**
|
|
1288
|
-
*
|
|
1318
|
+
* 删除SSL-VPN-CLIENT
|
|
1289
1319
|
*/
|
|
1290
|
-
async
|
|
1291
|
-
req:
|
|
1292
|
-
cb?: (error: string, rep:
|
|
1293
|
-
): Promise<
|
|
1294
|
-
return this.request("
|
|
1320
|
+
async DeleteVpnGatewaySslClient(
|
|
1321
|
+
req: DeleteVpnGatewaySslClientRequest,
|
|
1322
|
+
cb?: (error: string, rep: DeleteVpnGatewaySslClientResponse) => void
|
|
1323
|
+
): Promise<DeleteVpnGatewaySslClientResponse> {
|
|
1324
|
+
return this.request("DeleteVpnGatewaySslClient", req, cb)
|
|
1295
1325
|
}
|
|
1296
1326
|
|
|
1297
1327
|
/**
|
|
@@ -1372,6 +1402,16 @@ export class Client extends AbstractClient {
|
|
|
1372
1402
|
return this.request("CreateSubnet", req, cb)
|
|
1373
1403
|
}
|
|
1374
1404
|
|
|
1405
|
+
/**
|
|
1406
|
+
* 创建SSL-VPN-CLIENT
|
|
1407
|
+
*/
|
|
1408
|
+
async CreateVpnGatewaySslClient(
|
|
1409
|
+
req: CreateVpnGatewaySslClientRequest,
|
|
1410
|
+
cb?: (error: string, rep: CreateVpnGatewaySslClientResponse) => void
|
|
1411
|
+
): Promise<CreateVpnGatewaySslClientResponse> {
|
|
1412
|
+
return this.request("CreateVpnGatewaySslClient", req, cb)
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1375
1415
|
/**
|
|
1376
1416
|
* 该接口用于给IPv6地址初次分配公网带宽
|
|
1377
1417
|
*/
|
|
@@ -1455,13 +1495,13 @@ export class Client extends AbstractClient {
|
|
|
1455
1495
|
}
|
|
1456
1496
|
|
|
1457
1497
|
/**
|
|
1458
|
-
*
|
|
1498
|
+
* 本接口(DescribeVpcs)用于查询私有网络列表。
|
|
1459
1499
|
*/
|
|
1460
|
-
async
|
|
1461
|
-
req:
|
|
1462
|
-
cb?: (error: string, rep:
|
|
1463
|
-
): Promise<
|
|
1464
|
-
return this.request("
|
|
1500
|
+
async DescribeVpcs(
|
|
1501
|
+
req: DescribeVpcsRequest,
|
|
1502
|
+
cb?: (error: string, rep: DescribeVpcsResponse) => void
|
|
1503
|
+
): Promise<DescribeVpcsResponse> {
|
|
1504
|
+
return this.request("DescribeVpcs", req, cb)
|
|
1465
1505
|
}
|
|
1466
1506
|
|
|
1467
1507
|
/**
|
|
@@ -1609,13 +1649,13 @@ export class Client extends AbstractClient {
|
|
|
1609
1649
|
}
|
|
1610
1650
|
|
|
1611
1651
|
/**
|
|
1612
|
-
* 本接口(
|
|
1652
|
+
* 本接口(DescribeDhcpIps)用于查询DhcpIp列表
|
|
1613
1653
|
*/
|
|
1614
|
-
async
|
|
1615
|
-
req:
|
|
1616
|
-
cb?: (error: string, rep:
|
|
1617
|
-
): Promise<
|
|
1618
|
-
return this.request("
|
|
1654
|
+
async DescribeDhcpIps(
|
|
1655
|
+
req: DescribeDhcpIpsRequest,
|
|
1656
|
+
cb?: (error: string, rep: DescribeDhcpIpsResponse) => void
|
|
1657
|
+
): Promise<DescribeDhcpIpsResponse> {
|
|
1658
|
+
return this.request("DescribeDhcpIps", req, cb)
|
|
1619
1659
|
}
|
|
1620
1660
|
|
|
1621
1661
|
/**
|
|
@@ -2121,6 +2161,16 @@ export class Client extends AbstractClient {
|
|
|
2121
2161
|
return this.request("UnassignPrivateIpAddresses", req, cb)
|
|
2122
2162
|
}
|
|
2123
2163
|
|
|
2164
|
+
/**
|
|
2165
|
+
* 本接口(ModifyIpv6AddressesAttribute)用于修改弹性网卡内网IPv6地址属性。
|
|
2166
|
+
*/
|
|
2167
|
+
async ModifyIpv6AddressesAttribute(
|
|
2168
|
+
req: ModifyIpv6AddressesAttributeRequest,
|
|
2169
|
+
cb?: (error: string, rep: ModifyIpv6AddressesAttributeResponse) => void
|
|
2170
|
+
): Promise<ModifyIpv6AddressesAttributeResponse> {
|
|
2171
|
+
return this.request("ModifyIpv6AddressesAttribute", req, cb)
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2124
2174
|
/**
|
|
2125
2175
|
* 本接口(DeleteAddressTemplateGroup)用于删除IP地址模板集合
|
|
2126
2176
|
*/
|
|
@@ -2131,6 +2181,16 @@ export class Client extends AbstractClient {
|
|
|
2131
2181
|
return this.request("DeleteAddressTemplateGroup", req, cb)
|
|
2132
2182
|
}
|
|
2133
2183
|
|
|
2184
|
+
/**
|
|
2185
|
+
* 启用SSL-VPN-CLIENT 证书
|
|
2186
|
+
*/
|
|
2187
|
+
async EnableVpnGatewaySslClientCert(
|
|
2188
|
+
req: EnableVpnGatewaySslClientCertRequest,
|
|
2189
|
+
cb?: (error: string, rep: EnableVpnGatewaySslClientCertResponse) => void
|
|
2190
|
+
): Promise<EnableVpnGatewaySslClientCertResponse> {
|
|
2191
|
+
return this.request("EnableVpnGatewaySslClientCert", req, cb)
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2134
2194
|
/**
|
|
2135
2195
|
* 本接口(DescribeCcnRoutes)用于查询已加入云联网(CCN)的路由
|
|
2136
2196
|
*/
|
|
@@ -2207,13 +2267,13 @@ export class Client extends AbstractClient {
|
|
|
2207
2267
|
}
|
|
2208
2268
|
|
|
2209
2269
|
/**
|
|
2210
|
-
*
|
|
2270
|
+
* 查询SSL-VPN-CLIENT 列表
|
|
2211
2271
|
*/
|
|
2212
|
-
async
|
|
2213
|
-
req:
|
|
2214
|
-
cb?: (error: string, rep:
|
|
2215
|
-
): Promise<
|
|
2216
|
-
return this.request("
|
|
2272
|
+
async DescribeVpnGatewaySslClients(
|
|
2273
|
+
req: DescribeVpnGatewaySslClientsRequest,
|
|
2274
|
+
cb?: (error: string, rep: DescribeVpnGatewaySslClientsResponse) => void
|
|
2275
|
+
): Promise<DescribeVpnGatewaySslClientsResponse> {
|
|
2276
|
+
return this.request("DescribeVpnGatewaySslClients", req, cb)
|
|
2217
2277
|
}
|
|
2218
2278
|
|
|
2219
2279
|
/**
|
|
@@ -2526,6 +2586,26 @@ export class Client extends AbstractClient {
|
|
|
2526
2586
|
return this.request("DescribeVpcInstances", req, cb)
|
|
2527
2587
|
}
|
|
2528
2588
|
|
|
2589
|
+
/**
|
|
2590
|
+
* 下载SSL-VPN-CLIENT 客户端证书
|
|
2591
|
+
*/
|
|
2592
|
+
async DownloadVpnGatewaySslClientCert(
|
|
2593
|
+
req: DownloadVpnGatewaySslClientCertRequest,
|
|
2594
|
+
cb?: (error: string, rep: DownloadVpnGatewaySslClientCertResponse) => void
|
|
2595
|
+
): Promise<DownloadVpnGatewaySslClientCertResponse> {
|
|
2596
|
+
return this.request("DownloadVpnGatewaySslClientCert", req, cb)
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
/**
|
|
2600
|
+
* 查询SSL-VPN SERVER 列表信息
|
|
2601
|
+
*/
|
|
2602
|
+
async DescribeVpnGatewaySslServers(
|
|
2603
|
+
req: DescribeVpnGatewaySslServersRequest,
|
|
2604
|
+
cb?: (error: string, rep: DescribeVpnGatewaySslServersResponse) => void
|
|
2605
|
+
): Promise<DescribeVpnGatewaySslServersResponse> {
|
|
2606
|
+
return this.request("DescribeVpnGatewaySslServers", req, cb)
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2529
2609
|
/**
|
|
2530
2610
|
* 删除路由表
|
|
2531
2611
|
*/
|
|
@@ -2581,13 +2661,13 @@ export class Client extends AbstractClient {
|
|
|
2581
2661
|
}
|
|
2582
2662
|
|
|
2583
2663
|
/**
|
|
2584
|
-
*
|
|
2664
|
+
* 禁用SSL-VPN-CLIENT 证书
|
|
2585
2665
|
*/
|
|
2586
|
-
async
|
|
2587
|
-
req:
|
|
2588
|
-
cb?: (error: string, rep:
|
|
2589
|
-
): Promise<
|
|
2590
|
-
return this.request("
|
|
2666
|
+
async DisableVpnGatewaySslClientCert(
|
|
2667
|
+
req: DisableVpnGatewaySslClientCertRequest,
|
|
2668
|
+
cb?: (error: string, rep: DisableVpnGatewaySslClientCertResponse) => void
|
|
2669
|
+
): Promise<DisableVpnGatewaySslClientCertResponse> {
|
|
2670
|
+
return this.request("DisableVpnGatewaySslClientCert", req, cb)
|
|
2591
2671
|
}
|
|
2592
2672
|
|
|
2593
2673
|
/**
|
|
@@ -2869,6 +2949,16 @@ LimitTypes取值范围:
|
|
|
2869
2949
|
return this.request("CreateAddressTemplate", req, cb)
|
|
2870
2950
|
}
|
|
2871
2951
|
|
|
2952
|
+
/**
|
|
2953
|
+
* 创建 Server端
|
|
2954
|
+
*/
|
|
2955
|
+
async CreateVpnGatewaySslServer(
|
|
2956
|
+
req: CreateVpnGatewaySslServerRequest,
|
|
2957
|
+
cb?: (error: string, rep: CreateVpnGatewaySslServerResponse) => void
|
|
2958
|
+
): Promise<CreateVpnGatewaySslServerResponse> {
|
|
2959
|
+
return this.request("CreateVpnGatewaySslServer", req, cb)
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2872
2962
|
/**
|
|
2873
2963
|
* 本接口(ModifyVpnGatewayAttribute)用于修改VPN网关属性。
|
|
2874
2964
|
*/
|
|
@@ -3003,6 +3093,16 @@ LimitTypes取值范围:
|
|
|
3003
3093
|
return this.request("DescribeAssistantCidr", req, cb)
|
|
3004
3094
|
}
|
|
3005
3095
|
|
|
3096
|
+
/**
|
|
3097
|
+
* 本接口(ReplaceDirectConnectGatewayCcnRoutes)根据路由ID(RouteId)修改指定的路由(Route),支持批量修改。
|
|
3098
|
+
*/
|
|
3099
|
+
async ReplaceDirectConnectGatewayCcnRoutes(
|
|
3100
|
+
req: ReplaceDirectConnectGatewayCcnRoutesRequest,
|
|
3101
|
+
cb?: (error: string, rep: ReplaceDirectConnectGatewayCcnRoutesResponse) => void
|
|
3102
|
+
): Promise<ReplaceDirectConnectGatewayCcnRoutesResponse> {
|
|
3103
|
+
return this.request("ReplaceDirectConnectGatewayCcnRoutes", req, cb)
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3006
3106
|
/**
|
|
3007
3107
|
* 本接口(CreateDirectConnectGateway)用于创建专线网关。
|
|
3008
3108
|
*/
|
|
@@ -3317,6 +3417,16 @@ LimitTypes取值范围:
|
|
|
3317
3417
|
return this.request("UnassignIpv6SubnetCidrBlock", req, cb)
|
|
3318
3418
|
}
|
|
3319
3419
|
|
|
3420
|
+
/**
|
|
3421
|
+
* 将专线网关与NAT网关解绑,解绑之后,专线网关将不能通过NAT网关访问公网
|
|
3422
|
+
*/
|
|
3423
|
+
async DisassociateDirectConnectGatewayNatGateway(
|
|
3424
|
+
req: DisassociateDirectConnectGatewayNatGatewayRequest,
|
|
3425
|
+
cb?: (error: string, rep: DisassociateDirectConnectGatewayNatGatewayResponse) => void
|
|
3426
|
+
): Promise<DisassociateDirectConnectGatewayNatGatewayResponse> {
|
|
3427
|
+
return this.request("DisassociateDirectConnectGatewayNatGateway", req, cb)
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3320
3430
|
/**
|
|
3321
3431
|
* 本接口(DescribeIpGeolocationDatabaseUrl)用于获取IP地理位置库下载链接。
|
|
3322
3432
|
*/
|