tencentcloud-sdk-nodejs 4.0.308 → 4.0.309
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 +149 -0
- package/SERVICE_CHANGELOG.md +183 -99
- package/package.json +1 -1
- package/products.md +12 -12
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_models.ts +31 -3
- package/src/services/ckafka/v20190819/ckafka_models.ts +10 -0
- package/src/services/cls/v20201016/cls_models.ts +1 -1
- package/src/services/dlc/v20210125/dlc_models.ts +82 -5
- package/src/services/iecp/v20210914/iecp_client.ts +560 -474
- package/src/services/iecp/v20210914/iecp_models.ts +491 -188
- package/src/services/mps/v20190612/mps_client.ts +3 -3
- package/src/services/mps/v20190612/mps_models.ts +158 -158
- package/src/services/redis/v20180412/redis_models.ts +1 -1
- package/src/services/smh/v20210712/smh_models.ts +35 -0
- package/src/services/vpc/v20170312/vpc_client.ts +108 -15
- package/src/services/vpc/v20170312/vpc_models.ts +114 -24
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +27 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +8 -0
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +69 -5
- package/tencentcloud/services/iecp/v20210914/iecp_client.d.ts +183 -155
- package/tencentcloud/services/iecp/v20210914/iecp_client.js +273 -231
- package/tencentcloud/services/iecp/v20210914/iecp_models.d.ts +416 -157
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +3 -3
- package/tencentcloud/services/mps/v20190612/mps_client.js +3 -3
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +158 -158
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/smh/v20210712/smh_models.d.ts +28 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +51 -6
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +64 -7
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +98 -20
- package/test/iecp.v20210914.test.js +226 -156
- package/test/vpc.v20170312.test.js +64 -4
|
@@ -201,6 +201,21 @@ export interface DescribeTrafficPackagesRequest {
|
|
|
201
201
|
* 每页数目,整型,配合 PageNumber 使用,默认值为 20,最大值为 100。
|
|
202
202
|
*/
|
|
203
203
|
PageSize?: number
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* 对指定列进行排序
|
|
207
|
+
*/
|
|
208
|
+
OrderBy?: string
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* 排序方式
|
|
212
|
+
*/
|
|
213
|
+
OrderByType?: string
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* 来源类型筛选
|
|
217
|
+
*/
|
|
218
|
+
Type?: number
|
|
204
219
|
}
|
|
205
220
|
|
|
206
221
|
/**
|
|
@@ -296,6 +311,26 @@ export interface DescribeOfficialInstancesRequest {
|
|
|
296
311
|
* 每页数目,整型,配合 PageNumber 使用,默认值为 20,最大值为 100。
|
|
297
312
|
*/
|
|
298
313
|
PageSize?: number
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* 对指定列进行排序
|
|
317
|
+
*/
|
|
318
|
+
OrderBy?: string
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* 排序方式
|
|
322
|
+
*/
|
|
323
|
+
OrderByType?: string
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* 续费管理筛选类型
|
|
327
|
+
*/
|
|
328
|
+
AutoRenew?: number
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* 超级管理管理员账号是否绑定了手机号
|
|
332
|
+
*/
|
|
333
|
+
BindPhone?: boolean
|
|
299
334
|
}
|
|
300
335
|
|
|
301
336
|
/**
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
ModifyAddressTemplateAttributeResponse,
|
|
24
24
|
DisassociateDhcpIpWithAddressIpRequest,
|
|
25
25
|
SecurityGroupLimitSet,
|
|
26
|
+
LockCcnsRequest,
|
|
26
27
|
CreateRoutesRequest,
|
|
27
28
|
DescribeHaVipsResponse,
|
|
28
29
|
SecurityGroupAssociationStatistics,
|
|
@@ -113,6 +114,7 @@ import {
|
|
|
113
114
|
ModifyIp6TranslatorResponse,
|
|
114
115
|
CreateVpcEndPointServiceWhiteListResponse,
|
|
115
116
|
DescribeIpGeolocationDatabaseUrlResponse,
|
|
117
|
+
UnlockCcnBandwidthsRequest,
|
|
116
118
|
DeleteIp6TranslatorsResponse,
|
|
117
119
|
DescribeNatGatewaySourceIpTranslationNatRulesResponse,
|
|
118
120
|
DescribeVpcsRequest,
|
|
@@ -144,6 +146,7 @@ import {
|
|
|
144
146
|
ModifyNetworkAclEntriesResponse,
|
|
145
147
|
ModifyVpcEndPointAttributeResponse,
|
|
146
148
|
DescribeFlowLogRequest,
|
|
149
|
+
DescribeTenantCcnsRequest,
|
|
147
150
|
DescribeIp6AddressesRequest,
|
|
148
151
|
AddIp6RulesRequest,
|
|
149
152
|
DescribeAccountAttributesResponse,
|
|
@@ -336,6 +339,7 @@ import {
|
|
|
336
339
|
DescribeVpnGatewayCcnRoutesResponse,
|
|
337
340
|
DetachCcnInstancesRequest,
|
|
338
341
|
ModifyVpcEndPointServiceWhiteListRequest,
|
|
342
|
+
DescribeTenantCcnsResponse,
|
|
339
343
|
Filter,
|
|
340
344
|
MigrateNetworkInterfaceResponse,
|
|
341
345
|
DeleteDirectConnectGatewayRequest,
|
|
@@ -387,6 +391,7 @@ import {
|
|
|
387
391
|
AttachClassicLinkVpcRequest,
|
|
388
392
|
GatewayFlowMonitorDetail,
|
|
389
393
|
CreateVpnGatewaySslClientRequest,
|
|
394
|
+
UnlockCcnsRequest,
|
|
390
395
|
DescribeVpnGatewaySslServersResponse,
|
|
391
396
|
DeleteNatGatewayDestinationIpPortTranslationNatRuleResponse,
|
|
392
397
|
DeleteVpnGatewayRequest,
|
|
@@ -411,6 +416,7 @@ import {
|
|
|
411
416
|
DescribeCustomerGatewayVendorsRequest,
|
|
412
417
|
DeleteLocalGatewayRequest,
|
|
413
418
|
ResetVpnGatewayInternetMaxBandwidthResponse,
|
|
419
|
+
LockCcnBandwidthsRequest,
|
|
414
420
|
AddressChargePrepaid,
|
|
415
421
|
DescribeVpnGatewayRoutesResponse,
|
|
416
422
|
DescribeNetworkAclsResponse,
|
|
@@ -507,6 +513,7 @@ import {
|
|
|
507
513
|
DeleteVpcEndPointRequest,
|
|
508
514
|
UnassignIpv6CidrBlockRequest,
|
|
509
515
|
CCN,
|
|
516
|
+
VpcEndPointServiceUser,
|
|
510
517
|
InquirePriceCreateDirectConnectGatewayResponse,
|
|
511
518
|
DeleteIp6TranslatorsRequest,
|
|
512
519
|
Ip6Translator,
|
|
@@ -558,9 +565,11 @@ import {
|
|
|
558
565
|
ReplaceRoutesResponse,
|
|
559
566
|
ModifyHaVipAttributeResponse,
|
|
560
567
|
CcnBandwidthInfo,
|
|
568
|
+
DescribeCrossBorderCcnRegionBandwidthLimitsResponse,
|
|
561
569
|
DeleteSecurityGroupResponse,
|
|
562
570
|
CreateNetworkInterfaceResponse,
|
|
563
571
|
DescribeAddressQuotaRequest,
|
|
572
|
+
LockCcnsResponse,
|
|
564
573
|
RemoveBandwidthPackageResourcesResponse,
|
|
565
574
|
AssignIpv6AddressesResponse,
|
|
566
575
|
CreateRoutesResponse,
|
|
@@ -585,6 +594,7 @@ import {
|
|
|
585
594
|
DescribeCcnRoutesResponse,
|
|
586
595
|
AllocateIp6AddressesBandwidthRequest,
|
|
587
596
|
SecurityGroup,
|
|
597
|
+
UnlockCcnsResponse,
|
|
588
598
|
DisableGatewayFlowMonitorResponse,
|
|
589
599
|
DisassociateAddressResponse,
|
|
590
600
|
DirectConnectSubnet,
|
|
@@ -593,7 +603,7 @@ import {
|
|
|
593
603
|
DeleteRoutesRequest,
|
|
594
604
|
AssociateAddressRequest,
|
|
595
605
|
CcnRegionBandwidthLimit,
|
|
596
|
-
|
|
606
|
+
UnlockCcnBandwidthsResponse,
|
|
597
607
|
CreateDefaultSecurityGroupResponse,
|
|
598
608
|
ClassicLinkInstance,
|
|
599
609
|
DeleteLocalGatewayResponse,
|
|
@@ -610,11 +620,13 @@ import {
|
|
|
610
620
|
ModifyNetDetectResponse,
|
|
611
621
|
CreateHaVipRequest,
|
|
612
622
|
Ipv6SubnetCidrBlock,
|
|
623
|
+
LockCcnBandwidthsResponse,
|
|
613
624
|
DescribeAddressQuotaResponse,
|
|
614
625
|
CreateCustomerGatewayRequest,
|
|
615
626
|
DeleteSecurityGroupRequest,
|
|
616
627
|
DescribeDhcpIpsResponse,
|
|
617
628
|
CreateRouteTableResponse,
|
|
629
|
+
DescribeCrossBorderCcnRegionBandwidthLimitsRequest,
|
|
618
630
|
GetCcnRegionBandwidthLimitsRequest,
|
|
619
631
|
DescribeDirectConnectGatewayCcnRoutesResponse,
|
|
620
632
|
ModifyPrivateIpAddressesAttributeRequest,
|
|
@@ -1211,13 +1223,14 @@ export class Client extends AbstractClient {
|
|
|
1211
1223
|
}
|
|
1212
1224
|
|
|
1213
1225
|
/**
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1226
|
+
* 本接口(EnableRoutes)用于启用已禁用的子网路由。<br />
|
|
1227
|
+
本接口会校验启用后,是否与已有路由冲突,如果冲突,则无法启用,失败处理。路由冲突时,需要先禁用与之冲突的路由,才能启用该路由。
|
|
1228
|
+
*/
|
|
1229
|
+
async EnableRoutes(
|
|
1230
|
+
req: EnableRoutesRequest,
|
|
1231
|
+
cb?: (error: string, rep: EnableRoutesResponse) => void
|
|
1232
|
+
): Promise<EnableRoutesResponse> {
|
|
1233
|
+
return this.request("EnableRoutes", req, cb)
|
|
1221
1234
|
}
|
|
1222
1235
|
|
|
1223
1236
|
/**
|
|
@@ -1434,6 +1447,18 @@ export class Client extends AbstractClient {
|
|
|
1434
1447
|
return this.request("DeleteDhcpIp", req, cb)
|
|
1435
1448
|
}
|
|
1436
1449
|
|
|
1450
|
+
/**
|
|
1451
|
+
* 本接口(LockCcnBandwidths)用户锁定云联网限速实例。
|
|
1452
|
+
该接口一般用来封禁地域间限速的云联网实例下的限速实例, 目前联通内部运营系统通过云API调用, 如果是出口限速, 一般使用更粗的云联网实例粒度封禁(LockCcns)。
|
|
1453
|
+
如有需要, 可以封禁任意限速实例, 可接入到内部运营系统。
|
|
1454
|
+
*/
|
|
1455
|
+
async LockCcnBandwidths(
|
|
1456
|
+
req?: LockCcnBandwidthsRequest,
|
|
1457
|
+
cb?: (error: string, rep: LockCcnBandwidthsResponse) => void
|
|
1458
|
+
): Promise<LockCcnBandwidthsResponse> {
|
|
1459
|
+
return this.request("LockCcnBandwidths", req, cb)
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1437
1462
|
/**
|
|
1438
1463
|
* 本接口(ModifyAddressTemplateAttribute)用于修改IP地址模板
|
|
1439
1464
|
*/
|
|
@@ -1740,6 +1765,16 @@ export class Client extends AbstractClient {
|
|
|
1740
1765
|
return this.request("DescribeLocalGateway", req, cb)
|
|
1741
1766
|
}
|
|
1742
1767
|
|
|
1768
|
+
/**
|
|
1769
|
+
* 刷新专线直连nat路由,更新nat到专线的路由表
|
|
1770
|
+
*/
|
|
1771
|
+
async RefreshDirectConnectGatewayRouteToNatGateway(
|
|
1772
|
+
req: RefreshDirectConnectGatewayRouteToNatGatewayRequest,
|
|
1773
|
+
cb?: (error: string, rep: RefreshDirectConnectGatewayRouteToNatGatewayResponse) => void
|
|
1774
|
+
): Promise<RefreshDirectConnectGatewayRouteToNatGatewayResponse> {
|
|
1775
|
+
return this.request("RefreshDirectConnectGatewayRouteToNatGateway", req, cb)
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1743
1778
|
/**
|
|
1744
1779
|
* 本接口(MigratePrivateIpAddress)用于弹性网卡内网IP迁移。
|
|
1745
1780
|
* 该接口用于将一个内网IP从一个弹性网卡上迁移到另外一个弹性网卡,主IP地址不支持迁移。
|
|
@@ -2511,6 +2546,18 @@ export class Client extends AbstractClient {
|
|
|
2511
2546
|
return this.request("CreateAddressTemplateGroup", req, cb)
|
|
2512
2547
|
}
|
|
2513
2548
|
|
|
2549
|
+
/**
|
|
2550
|
+
* 本接口(UnlockCcnBandwidths)用户解锁云联网限速实例。
|
|
2551
|
+
该接口一般用来封禁地域间限速的云联网实例下的限速实例, 目前联通内部运营系统通过云API调用, 如果是出口限速, 一般使用更粗的云联网实例粒度封禁(SecurityUnlockCcns)。
|
|
2552
|
+
如有需要, 可以封禁任意限速实例, 可接入到内部运营系统。
|
|
2553
|
+
*/
|
|
2554
|
+
async UnlockCcnBandwidths(
|
|
2555
|
+
req?: UnlockCcnBandwidthsRequest,
|
|
2556
|
+
cb?: (error: string, rep: UnlockCcnBandwidthsResponse) => void
|
|
2557
|
+
): Promise<UnlockCcnBandwidthsResponse> {
|
|
2558
|
+
return this.request("UnlockCcnBandwidths", req, cb)
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2514
2561
|
/**
|
|
2515
2562
|
* 本接口(CreateSecurityGroup)用于创建新的安全组(SecurityGroup)。
|
|
2516
2563
|
* 每个账户下每个地域的每个项目的<a href="https://cloud.tencent.com/document/product/213/12453">安全组数量限制</a>。
|
|
@@ -2816,6 +2863,22 @@ LimitTypes取值范围:
|
|
|
2816
2863
|
return this.request("DescribeVpcLimits", req, cb)
|
|
2817
2864
|
}
|
|
2818
2865
|
|
|
2866
|
+
/**
|
|
2867
|
+
* 本接口(UnlockCcns)用于解锁云联网实例
|
|
2868
|
+
|
|
2869
|
+
该接口一般用来解封禁出口限速的云联网实例, 目前联通内部运营系统通过云API调用, 因为出口限速无法按地域间解封禁, 只能按更粗的云联网实例粒度解封禁, 如果是地域间限速, 一般可以通过更细的限速实例粒度解封禁(UnlockCcnBandwidths)
|
|
2870
|
+
|
|
2871
|
+
如有需要, 可以封禁任意限速实例, 可接入到内部运营系统
|
|
2872
|
+
|
|
2873
|
+
|
|
2874
|
+
*/
|
|
2875
|
+
async UnlockCcns(
|
|
2876
|
+
req?: UnlockCcnsRequest,
|
|
2877
|
+
cb?: (error: string, rep: UnlockCcnsResponse) => void
|
|
2878
|
+
): Promise<UnlockCcnsResponse> {
|
|
2879
|
+
return this.request("UnlockCcns", req, cb)
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2819
2882
|
/**
|
|
2820
2883
|
* 本接口(HaVipAssociateAddressIp)用于高可用虚拟IP(HAVIP)绑定弹性公网IP(EIP)。<br />
|
|
2821
2884
|
本接口是异步完成,如需查询异步任务执行结果,请使用本接口返回的`RequestId`轮询`DescribeVpcTaskResult`接口。
|
|
@@ -3135,14 +3198,16 @@ LimitTypes取值范围:
|
|
|
3135
3198
|
}
|
|
3136
3199
|
|
|
3137
3200
|
/**
|
|
3138
|
-
* 本接口(
|
|
3139
|
-
|
|
3201
|
+
* 本接口(DescribeCrossBorderCcnRegionBandwidthLimits)用于获取要锁定的限速实例列表。
|
|
3202
|
+
该接口一般用来封禁地域间限速的云联网实例下的限速实例, 目前联通内部运营系统通过云API调用, 如果是出口限速, 一般使用更粗的云联网实例粒度封禁(DescribeTenantCcns)
|
|
3203
|
+
如有需要, 可以封禁任意限速实例, 可接入到内部运营系统
|
|
3204
|
+
|
|
3140
3205
|
*/
|
|
3141
|
-
async
|
|
3142
|
-
req
|
|
3143
|
-
cb?: (error: string, rep:
|
|
3144
|
-
): Promise<
|
|
3145
|
-
return this.request("
|
|
3206
|
+
async DescribeCrossBorderCcnRegionBandwidthLimits(
|
|
3207
|
+
req?: DescribeCrossBorderCcnRegionBandwidthLimitsRequest,
|
|
3208
|
+
cb?: (error: string, rep: DescribeCrossBorderCcnRegionBandwidthLimitsResponse) => void
|
|
3209
|
+
): Promise<DescribeCrossBorderCcnRegionBandwidthLimitsResponse> {
|
|
3210
|
+
return this.request("DescribeCrossBorderCcnRegionBandwidthLimits", req, cb)
|
|
3146
3211
|
}
|
|
3147
3212
|
|
|
3148
3213
|
/**
|
|
@@ -3190,6 +3255,18 @@ LimitTypes取值范围:
|
|
|
3190
3255
|
return this.request("DeleteSecurityGroup", req, cb)
|
|
3191
3256
|
}
|
|
3192
3257
|
|
|
3258
|
+
/**
|
|
3259
|
+
* 本接口(DescribeTenantCcns)用于获取要锁定的云联网实例列表。
|
|
3260
|
+
该接口一般用来封禁出口限速的云联网实例, 目前联通内部运营系统通过云API调用, 因为出口限速无法按地域间封禁, 只能按更粗的云联网实例粒度封禁, 如果是地域间限速, 一般可以通过更细的限速实例粒度封禁(DescribeCrossBorderCcnRegionBandwidthLimits)
|
|
3261
|
+
如有需要, 可以封禁任意云联网实例, 可接入到内部运营系统
|
|
3262
|
+
*/
|
|
3263
|
+
async DescribeTenantCcns(
|
|
3264
|
+
req?: DescribeTenantCcnsRequest,
|
|
3265
|
+
cb?: (error: string, rep: DescribeTenantCcnsResponse) => void
|
|
3266
|
+
): Promise<DescribeTenantCcnsResponse> {
|
|
3267
|
+
return this.request("DescribeTenantCcns", req, cb)
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3193
3270
|
/**
|
|
3194
3271
|
* 本接口(DisassociateNetworkAclSubnets)用于网络ACL解关联vpc下的子网。
|
|
3195
3272
|
*/
|
|
@@ -3271,6 +3348,22 @@ LimitTypes取值范围:
|
|
|
3271
3348
|
return this.request("DeleteNatGatewayDestinationIpPortTranslationNatRule", req, cb)
|
|
3272
3349
|
}
|
|
3273
3350
|
|
|
3351
|
+
/**
|
|
3352
|
+
* 本接口(LockCcns)用于锁定云联网实例
|
|
3353
|
+
|
|
3354
|
+
该接口一般用来封禁出口限速的云联网实例, 目前联通内部运营系统通过云API调用, 因为出口限速无法按地域间封禁, 只能按更粗的云联网实例粒度封禁, 如果是地域间限速, 一般可以通过更细的限速实例粒度封禁(LockCcnBandwidths)
|
|
3355
|
+
|
|
3356
|
+
如有需要, 可以封禁任意限速实例, 可接入到内部运营系统
|
|
3357
|
+
|
|
3358
|
+
|
|
3359
|
+
*/
|
|
3360
|
+
async LockCcns(
|
|
3361
|
+
req?: LockCcnsRequest,
|
|
3362
|
+
cb?: (error: string, rep: LockCcnsResponse) => void
|
|
3363
|
+
): Promise<LockCcnsResponse> {
|
|
3364
|
+
return this.request("LockCcns", req, cb)
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3274
3367
|
/**
|
|
3275
3368
|
* 本接口(CreateRoutes)用于创建路由策略。
|
|
3276
3369
|
* 向指定路由表批量新增路由策略。
|
|
@@ -120,6 +120,11 @@ export interface SecurityGroupLimitSet {
|
|
|
120
120
|
InstanceSecurityGroupLimit: number
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
/**
|
|
124
|
+
* LockCcns请求参数结构体
|
|
125
|
+
*/
|
|
126
|
+
export type LockCcnsRequest = null
|
|
127
|
+
|
|
123
128
|
/**
|
|
124
129
|
* CreateRoutes请求参数结构体
|
|
125
130
|
*/
|
|
@@ -2128,6 +2133,11 @@ export interface DescribeIpGeolocationDatabaseUrlResponse {
|
|
|
2128
2133
|
RequestId?: string
|
|
2129
2134
|
}
|
|
2130
2135
|
|
|
2136
|
+
/**
|
|
2137
|
+
* UnlockCcnBandwidths请求参数结构体
|
|
2138
|
+
*/
|
|
2139
|
+
export type UnlockCcnBandwidthsRequest = null
|
|
2140
|
+
|
|
2131
2141
|
/**
|
|
2132
2142
|
* DeleteIp6Translators返回参数结构体
|
|
2133
2143
|
*/
|
|
@@ -2709,6 +2719,11 @@ export interface DescribeFlowLogRequest {
|
|
|
2709
2719
|
FlowLogId: string
|
|
2710
2720
|
}
|
|
2711
2721
|
|
|
2722
|
+
/**
|
|
2723
|
+
* DescribeTenantCcns请求参数结构体
|
|
2724
|
+
*/
|
|
2725
|
+
export type DescribeTenantCcnsRequest = null
|
|
2726
|
+
|
|
2712
2727
|
/**
|
|
2713
2728
|
* DescribeIp6Addresses请求参数结构体
|
|
2714
2729
|
*/
|
|
@@ -7213,6 +7228,16 @@ export interface ModifyVpcEndPointServiceWhiteListRequest {
|
|
|
7213
7228
|
Description?: string
|
|
7214
7229
|
}
|
|
7215
7230
|
|
|
7231
|
+
/**
|
|
7232
|
+
* DescribeTenantCcns返回参数结构体
|
|
7233
|
+
*/
|
|
7234
|
+
export interface DescribeTenantCcnsResponse {
|
|
7235
|
+
/**
|
|
7236
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7237
|
+
*/
|
|
7238
|
+
RequestId?: string
|
|
7239
|
+
}
|
|
7240
|
+
|
|
7216
7241
|
/**
|
|
7217
7242
|
* 过滤器
|
|
7218
7243
|
*/
|
|
@@ -8551,6 +8576,11 @@ export interface CreateVpnGatewaySslClientRequest {
|
|
|
8551
8576
|
SslVpnClientName: string
|
|
8552
8577
|
}
|
|
8553
8578
|
|
|
8579
|
+
/**
|
|
8580
|
+
* UnlockCcns请求参数结构体
|
|
8581
|
+
*/
|
|
8582
|
+
export type UnlockCcnsRequest = null
|
|
8583
|
+
|
|
8554
8584
|
/**
|
|
8555
8585
|
* DescribeVpnGatewaySslServers返回参数结构体
|
|
8556
8586
|
*/
|
|
@@ -8948,6 +8978,11 @@ export interface ResetVpnGatewayInternetMaxBandwidthResponse {
|
|
|
8948
8978
|
RequestId?: string
|
|
8949
8979
|
}
|
|
8950
8980
|
|
|
8981
|
+
/**
|
|
8982
|
+
* LockCcnBandwidths请求参数结构体
|
|
8983
|
+
*/
|
|
8984
|
+
export type LockCcnBandwidthsRequest = null
|
|
8985
|
+
|
|
8951
8986
|
/**
|
|
8952
8987
|
* 用于描述弹性公网IP的费用对象
|
|
8953
8988
|
*/
|
|
@@ -10880,6 +10915,36 @@ export interface CCN {
|
|
|
10880
10915
|
RouteTableFlag: boolean
|
|
10881
10916
|
}
|
|
10882
10917
|
|
|
10918
|
+
/**
|
|
10919
|
+
* 终端节点服务的服务白名单对象详情。
|
|
10920
|
+
*/
|
|
10921
|
+
export interface VpcEndPointServiceUser {
|
|
10922
|
+
/**
|
|
10923
|
+
* AppId。
|
|
10924
|
+
*/
|
|
10925
|
+
Owner: number
|
|
10926
|
+
|
|
10927
|
+
/**
|
|
10928
|
+
* Uin。
|
|
10929
|
+
*/
|
|
10930
|
+
UserUin: string
|
|
10931
|
+
|
|
10932
|
+
/**
|
|
10933
|
+
* 描述信息。
|
|
10934
|
+
*/
|
|
10935
|
+
Description: string
|
|
10936
|
+
|
|
10937
|
+
/**
|
|
10938
|
+
* 创建时间。
|
|
10939
|
+
*/
|
|
10940
|
+
CreateTime: string
|
|
10941
|
+
|
|
10942
|
+
/**
|
|
10943
|
+
* 终端节点服务ID。
|
|
10944
|
+
*/
|
|
10945
|
+
EndPointServiceId: string
|
|
10946
|
+
}
|
|
10947
|
+
|
|
10883
10948
|
/**
|
|
10884
10949
|
* InquirePriceCreateDirectConnectGateway返回参数结构体
|
|
10885
10950
|
*/
|
|
@@ -11871,6 +11936,16 @@ export interface CcnBandwidthInfo {
|
|
|
11871
11936
|
MarketId: string
|
|
11872
11937
|
}
|
|
11873
11938
|
|
|
11939
|
+
/**
|
|
11940
|
+
* DescribeCrossBorderCcnRegionBandwidthLimits返回参数结构体
|
|
11941
|
+
*/
|
|
11942
|
+
export interface DescribeCrossBorderCcnRegionBandwidthLimitsResponse {
|
|
11943
|
+
/**
|
|
11944
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11945
|
+
*/
|
|
11946
|
+
RequestId?: string
|
|
11947
|
+
}
|
|
11948
|
+
|
|
11874
11949
|
/**
|
|
11875
11950
|
* DeleteSecurityGroup返回参数结构体
|
|
11876
11951
|
*/
|
|
@@ -11901,6 +11976,16 @@ export interface CreateNetworkInterfaceResponse {
|
|
|
11901
11976
|
*/
|
|
11902
11977
|
export type DescribeAddressQuotaRequest = null
|
|
11903
11978
|
|
|
11979
|
+
/**
|
|
11980
|
+
* LockCcns返回参数结构体
|
|
11981
|
+
*/
|
|
11982
|
+
export interface LockCcnsResponse {
|
|
11983
|
+
/**
|
|
11984
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
11985
|
+
*/
|
|
11986
|
+
RequestId?: string
|
|
11987
|
+
}
|
|
11988
|
+
|
|
11904
11989
|
/**
|
|
11905
11990
|
* RemoveBandwidthPackageResources返回参数结构体
|
|
11906
11991
|
*/
|
|
@@ -12454,6 +12539,16 @@ export interface SecurityGroup {
|
|
|
12454
12539
|
UpdateTime?: string
|
|
12455
12540
|
}
|
|
12456
12541
|
|
|
12542
|
+
/**
|
|
12543
|
+
* UnlockCcns返回参数结构体
|
|
12544
|
+
*/
|
|
12545
|
+
export interface UnlockCcnsResponse {
|
|
12546
|
+
/**
|
|
12547
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12548
|
+
*/
|
|
12549
|
+
RequestId?: string
|
|
12550
|
+
}
|
|
12551
|
+
|
|
12457
12552
|
/**
|
|
12458
12553
|
* DisableGatewayFlowMonitor返回参数结构体
|
|
12459
12554
|
*/
|
|
@@ -12618,33 +12713,13 @@ export interface CcnRegionBandwidthLimit {
|
|
|
12618
12713
|
}
|
|
12619
12714
|
|
|
12620
12715
|
/**
|
|
12621
|
-
*
|
|
12716
|
+
* UnlockCcnBandwidths返回参数结构体
|
|
12622
12717
|
*/
|
|
12623
|
-
export interface
|
|
12718
|
+
export interface UnlockCcnBandwidthsResponse {
|
|
12624
12719
|
/**
|
|
12625
|
-
*
|
|
12626
|
-
*/
|
|
12627
|
-
Owner: number
|
|
12628
|
-
|
|
12629
|
-
/**
|
|
12630
|
-
* Uin。
|
|
12631
|
-
*/
|
|
12632
|
-
UserUin: string
|
|
12633
|
-
|
|
12634
|
-
/**
|
|
12635
|
-
* 描述信息。
|
|
12636
|
-
*/
|
|
12637
|
-
Description: string
|
|
12638
|
-
|
|
12639
|
-
/**
|
|
12640
|
-
* 创建时间。
|
|
12641
|
-
*/
|
|
12642
|
-
CreateTime: string
|
|
12643
|
-
|
|
12644
|
-
/**
|
|
12645
|
-
* 终端节点服务ID。
|
|
12720
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12646
12721
|
*/
|
|
12647
|
-
|
|
12722
|
+
RequestId?: string
|
|
12648
12723
|
}
|
|
12649
12724
|
|
|
12650
12725
|
/**
|
|
@@ -12892,6 +12967,16 @@ export interface Ipv6SubnetCidrBlock {
|
|
|
12892
12967
|
Ipv6CidrBlock?: string
|
|
12893
12968
|
}
|
|
12894
12969
|
|
|
12970
|
+
/**
|
|
12971
|
+
* LockCcnBandwidths返回参数结构体
|
|
12972
|
+
*/
|
|
12973
|
+
export interface LockCcnBandwidthsResponse {
|
|
12974
|
+
/**
|
|
12975
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12976
|
+
*/
|
|
12977
|
+
RequestId?: string
|
|
12978
|
+
}
|
|
12979
|
+
|
|
12895
12980
|
/**
|
|
12896
12981
|
* DescribeAddressQuota返回参数结构体
|
|
12897
12982
|
*/
|
|
@@ -12972,6 +13057,11 @@ export interface CreateRouteTableResponse {
|
|
|
12972
13057
|
RequestId?: string
|
|
12973
13058
|
}
|
|
12974
13059
|
|
|
13060
|
+
/**
|
|
13061
|
+
* DescribeCrossBorderCcnRegionBandwidthLimits请求参数结构体
|
|
13062
|
+
*/
|
|
13063
|
+
export type DescribeCrossBorderCcnRegionBandwidthLimitsRequest = null
|
|
13064
|
+
|
|
12975
13065
|
/**
|
|
12976
13066
|
* GetCcnRegionBandwidthLimits请求参数结构体
|
|
12977
13067
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.309";
|
|
@@ -1241,7 +1241,7 @@ export interface DescribeServiceForApiAppResponse {
|
|
|
1241
1241
|
*/
|
|
1242
1242
|
export interface ServiceConfig {
|
|
1243
1243
|
/**
|
|
1244
|
-
* 后端类型。启用vpc时生效,目前支持的类型为clb和
|
|
1244
|
+
* 后端类型。启用vpc时生效,目前支持的类型为clb, cvm和upstream
|
|
1245
1245
|
*/
|
|
1246
1246
|
Product?: string;
|
|
1247
1247
|
/**
|
|
@@ -3880,6 +3880,15 @@ DELETE: DeleteObject。
|
|
|
3880
3880
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3881
3881
|
*/
|
|
3882
3882
|
Authorization?: boolean;
|
|
3883
|
+
/**
|
|
3884
|
+
* API后端COS的路径匹配模式,可选值:
|
|
3885
|
+
BackEndPath : 后端路径匹配
|
|
3886
|
+
FullPath : 全路径匹配
|
|
3887
|
+
|
|
3888
|
+
默认值为:BackEndPath
|
|
3889
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3890
|
+
*/
|
|
3891
|
+
PathMatchMode?: string;
|
|
3883
3892
|
}
|
|
3884
3893
|
/**
|
|
3885
3894
|
* ModifyApiIncrement请求参数结构体
|
|
@@ -4103,12 +4112,12 @@ export interface CreateApiRsp {
|
|
|
4103
4112
|
*/
|
|
4104
4113
|
ApiId: string;
|
|
4105
4114
|
/**
|
|
4106
|
-
*
|
|
4115
|
+
* 路径
|
|
4107
4116
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4108
4117
|
*/
|
|
4109
4118
|
Path: string;
|
|
4110
4119
|
/**
|
|
4111
|
-
*
|
|
4120
|
+
* 请求方法
|
|
4112
4121
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4113
4122
|
*/
|
|
4114
4123
|
Method: string;
|
|
@@ -4117,6 +4126,21 @@ export interface CreateApiRsp {
|
|
|
4117
4126
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4118
4127
|
*/
|
|
4119
4128
|
CreatedTime: string;
|
|
4129
|
+
/**
|
|
4130
|
+
* 导入状态
|
|
4131
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4132
|
+
*/
|
|
4133
|
+
Status: string;
|
|
4134
|
+
/**
|
|
4135
|
+
* 异常信息
|
|
4136
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4137
|
+
*/
|
|
4138
|
+
ErrMsg: string;
|
|
4139
|
+
/**
|
|
4140
|
+
* api name
|
|
4141
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4142
|
+
*/
|
|
4143
|
+
ApiName: string;
|
|
4120
4144
|
}
|
|
4121
4145
|
/**
|
|
4122
4146
|
* 使用计划绑定环境信息
|
|
@@ -3171,6 +3171,14 @@ export interface CreateInstancePreRequest {
|
|
|
3171
3171
|
* 磁盘类型(ssd填写CLOUD_SSD,sata填写CLOUD_BASIC)
|
|
3172
3172
|
*/
|
|
3173
3173
|
DiskType?: string;
|
|
3174
|
+
/**
|
|
3175
|
+
* 跨可用区,zoneIds必填
|
|
3176
|
+
*/
|
|
3177
|
+
MultiZoneFlag?: boolean;
|
|
3178
|
+
/**
|
|
3179
|
+
* 可用区列表
|
|
3180
|
+
*/
|
|
3181
|
+
ZoneIds?: Array<number>;
|
|
3174
3182
|
}
|
|
3175
3183
|
/**
|
|
3176
3184
|
* DeleteTopicIpWhiteList请求参数结构体
|