tencentcloud-sdk-nodejs 4.0.217 → 4.0.218
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 +194 -60
- package/package.json +1 -1
- package/products.md +9 -9
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +20 -3
- package/src/services/ckafka/v20190819/ckafka_client.ts +1 -0
- package/src/services/ckafka/v20190819/ckafka_models.ts +35 -0
- package/src/services/gaap/v20180529/gaap_client.ts +3 -2
- package/src/services/gaap/v20180529/gaap_models.ts +142 -64
- package/src/services/lighthouse/v20200324/lighthouse_client.ts +1 -1
- package/src/services/live/v20180801/live_models.ts +3 -3
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +1 -1
- package/src/services/trtc/v20190722/trtc_models.ts +10 -0
- package/src/services/vpc/v20170312/vpc_client.ts +47 -10
- package/src/services/vpc/v20170312/vpc_models.ts +119 -24
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +18 -3
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +30 -0
- package/tencentcloud/services/gaap/v20180529/gaap_client.d.ts +1 -1
- package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +121 -56
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +1 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +3 -3
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +1 -1
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +8 -0
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +15 -3
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +21 -3
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +105 -22
- package/test/vpc.v20170312.test.js +32 -2
|
@@ -28,6 +28,21 @@ export interface RegionDetail {
|
|
|
28
28
|
* 区域英文名或中文名
|
|
29
29
|
*/
|
|
30
30
|
RegionName: string
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 机房所属大区
|
|
34
|
+
*/
|
|
35
|
+
RegionArea: string
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 机房所属大区名
|
|
39
|
+
*/
|
|
40
|
+
RegionAreaName: string
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* 机房类型, dc表示DataCenter数据中心, ec表示EdgeComputing边缘节点
|
|
44
|
+
*/
|
|
45
|
+
IDCType: string
|
|
31
46
|
}
|
|
32
47
|
|
|
33
48
|
/**
|
|
@@ -1209,63 +1224,48 @@ export interface DescribeProxyDetailRequest {
|
|
|
1209
1224
|
}
|
|
1210
1225
|
|
|
1211
1226
|
/**
|
|
1212
|
-
*
|
|
1227
|
+
* ip信息详情
|
|
1213
1228
|
*/
|
|
1214
|
-
export interface
|
|
1215
|
-
/**
|
|
1216
|
-
* 监听器ID
|
|
1217
|
-
*/
|
|
1218
|
-
ListenerId: string
|
|
1219
|
-
|
|
1220
|
-
/**
|
|
1221
|
-
* 通道组ID,ProxyId和GroupId必须设置一个,但不能同时设置。
|
|
1222
|
-
*/
|
|
1223
|
-
GroupId?: string
|
|
1224
|
-
|
|
1229
|
+
export interface IPDetail {
|
|
1225
1230
|
/**
|
|
1226
|
-
*
|
|
1227
|
-
*/
|
|
1228
|
-
ProxyId?: string
|
|
1229
|
-
|
|
1230
|
-
/**
|
|
1231
|
-
* 监听器名称
|
|
1232
|
-
*/
|
|
1233
|
-
ListenerName?: string
|
|
1234
|
-
|
|
1235
|
-
/**
|
|
1236
|
-
* 监听器源站调度策略,支持轮询(rr),加权轮询(wrr),最小连接数(lc)。
|
|
1237
|
-
*/
|
|
1238
|
-
Scheduler?: string
|
|
1239
|
-
|
|
1240
|
-
/**
|
|
1241
|
-
* 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
|
1242
|
-
*/
|
|
1243
|
-
DelayLoop?: number
|
|
1244
|
-
|
|
1245
|
-
/**
|
|
1246
|
-
* 源站健康检查响应超时时间,单位:秒。超时时间取值在[2,60]之间。超时时间应小于健康检查时间间隔DelayLoop。
|
|
1231
|
+
* IP字符串
|
|
1247
1232
|
*/
|
|
1248
|
-
|
|
1233
|
+
IP: string
|
|
1249
1234
|
|
|
1250
1235
|
/**
|
|
1251
|
-
*
|
|
1236
|
+
* 供应商,BGP表示默认,CMCC表示中国移动,CUCC表示中国联通,CTCC表示中国电信
|
|
1252
1237
|
*/
|
|
1253
|
-
|
|
1238
|
+
Provider: string
|
|
1254
1239
|
|
|
1255
1240
|
/**
|
|
1256
|
-
*
|
|
1241
|
+
* 带宽
|
|
1257
1242
|
*/
|
|
1258
|
-
|
|
1243
|
+
Bandwidth: number
|
|
1244
|
+
}
|
|
1259
1245
|
|
|
1246
|
+
/**
|
|
1247
|
+
* 通道状态信息
|
|
1248
|
+
*/
|
|
1249
|
+
export interface ProxyStatus {
|
|
1260
1250
|
/**
|
|
1261
|
-
*
|
|
1251
|
+
* 通道实例ID。
|
|
1262
1252
|
*/
|
|
1263
|
-
|
|
1253
|
+
InstanceId: string
|
|
1264
1254
|
|
|
1265
1255
|
/**
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1256
|
+
* 通道状态。
|
|
1257
|
+
其中:
|
|
1258
|
+
RUNNING表示运行中;
|
|
1259
|
+
CREATING表示创建中;
|
|
1260
|
+
DESTROYING表示销毁中;
|
|
1261
|
+
OPENING表示开启中;
|
|
1262
|
+
CLOSING表示关闭中;
|
|
1263
|
+
CLOSED表示已关闭;
|
|
1264
|
+
ADJUSTING表示配置变更中;
|
|
1265
|
+
ISOLATING表示隔离中;
|
|
1266
|
+
ISOLATED表示已隔离。
|
|
1267
|
+
*/
|
|
1268
|
+
Status: string
|
|
1269
1269
|
}
|
|
1270
1270
|
|
|
1271
1271
|
/**
|
|
@@ -1505,6 +1505,12 @@ export interface RealServerStatus {
|
|
|
1505
1505
|
* 绑定此源站的通道ID,没有绑定时为空字符串。
|
|
1506
1506
|
*/
|
|
1507
1507
|
ProxyId: string
|
|
1508
|
+
|
|
1509
|
+
/**
|
|
1510
|
+
* 绑定此源站的通道组ID,没有绑定时为空字符串。
|
|
1511
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1512
|
+
*/
|
|
1513
|
+
GroupId: string
|
|
1508
1514
|
}
|
|
1509
1515
|
|
|
1510
1516
|
/**
|
|
@@ -1801,6 +1807,24 @@ IPAddressVersion - String - 是否必填:否 - (过滤条件)按照IP版
|
|
|
1801
1807
|
不存在该字段时,拉取所有通道,包括独立通道和通道组通道。
|
|
1802
1808
|
*/
|
|
1803
1809
|
Independent?: number
|
|
1810
|
+
|
|
1811
|
+
/**
|
|
1812
|
+
* 输出通道列表的排列顺序。取值范围:
|
|
1813
|
+
asc:升序排列
|
|
1814
|
+
desc:降序排列。
|
|
1815
|
+
默认为降序。
|
|
1816
|
+
*/
|
|
1817
|
+
Order?: string
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* 通道列表排序的依据字段。取值范围:
|
|
1821
|
+
create_time:依据通道的创建时间排序
|
|
1822
|
+
proxy_id:依据通道的ID排序
|
|
1823
|
+
bandwidth:依据通道带宽上限排序
|
|
1824
|
+
concurrent_connections:依据通道并发排序
|
|
1825
|
+
默认按通道创建时间排序。
|
|
1826
|
+
*/
|
|
1827
|
+
OrderField?: string
|
|
1804
1828
|
}
|
|
1805
1829
|
|
|
1806
1830
|
/**
|
|
@@ -2427,29 +2451,63 @@ export interface DescribeProxiesStatusRequest {
|
|
|
2427
2451
|
}
|
|
2428
2452
|
|
|
2429
2453
|
/**
|
|
2430
|
-
*
|
|
2454
|
+
* ModifyTCPListenerAttribute请求参数结构体
|
|
2431
2455
|
*/
|
|
2432
|
-
export interface
|
|
2456
|
+
export interface ModifyTCPListenerAttributeRequest {
|
|
2433
2457
|
/**
|
|
2434
|
-
*
|
|
2458
|
+
* 监听器ID
|
|
2435
2459
|
*/
|
|
2436
|
-
|
|
2460
|
+
ListenerId: string
|
|
2437
2461
|
|
|
2438
2462
|
/**
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2463
|
+
* 通道组ID,ProxyId和GroupId必须设置一个,但不能同时设置。
|
|
2464
|
+
*/
|
|
2465
|
+
GroupId?: string
|
|
2466
|
+
|
|
2467
|
+
/**
|
|
2468
|
+
* 通道ID,ProxyId和GroupId必须设置一个,但不能同时设置。
|
|
2469
|
+
*/
|
|
2470
|
+
ProxyId?: string
|
|
2471
|
+
|
|
2472
|
+
/**
|
|
2473
|
+
* 监听器名称
|
|
2474
|
+
*/
|
|
2475
|
+
ListenerName?: string
|
|
2476
|
+
|
|
2477
|
+
/**
|
|
2478
|
+
* 监听器源站调度策略,支持轮询(rr),加权轮询(wrr),最小连接数(lc)。
|
|
2479
|
+
*/
|
|
2480
|
+
Scheduler?: string
|
|
2481
|
+
|
|
2482
|
+
/**
|
|
2483
|
+
* 源站健康检查时间间隔,单位:秒。时间间隔取值在[5,300]之间。
|
|
2484
|
+
*/
|
|
2485
|
+
DelayLoop?: number
|
|
2486
|
+
|
|
2487
|
+
/**
|
|
2488
|
+
* 源站健康检查响应超时时间,单位:秒。超时时间取值在[2,60]之间。超时时间应小于健康检查时间间隔DelayLoop。
|
|
2489
|
+
*/
|
|
2490
|
+
ConnectTimeout?: number
|
|
2491
|
+
|
|
2492
|
+
/**
|
|
2493
|
+
* 是否开启健康检查,1开启,0关闭。
|
|
2494
|
+
*/
|
|
2495
|
+
HealthCheck?: number
|
|
2496
|
+
|
|
2497
|
+
/**
|
|
2498
|
+
* 源站是否开启主备模式:1开启,0关闭,DOMAIN类型源站不支持开启
|
|
2499
|
+
*/
|
|
2500
|
+
FailoverSwitch?: number
|
|
2501
|
+
|
|
2502
|
+
/**
|
|
2503
|
+
* 健康阈值,表示连续检查成功多少次数后认定源站健康。范围为1到10
|
|
2504
|
+
*/
|
|
2505
|
+
HealthyThreshold?: number
|
|
2506
|
+
|
|
2507
|
+
/**
|
|
2508
|
+
* 不健康阈值,表示连续检查失败次数后认定源站不健康。范围为1到10
|
|
2509
|
+
*/
|
|
2510
|
+
UnhealthyThreshold?: number
|
|
2453
2511
|
}
|
|
2454
2512
|
|
|
2455
2513
|
/**
|
|
@@ -3882,6 +3940,21 @@ export interface AccessRegionDetial {
|
|
|
3882
3940
|
* 可选的带宽取值数组
|
|
3883
3941
|
*/
|
|
3884
3942
|
BandwidthList: Array<number>
|
|
3943
|
+
|
|
3944
|
+
/**
|
|
3945
|
+
* 机房所属大区
|
|
3946
|
+
*/
|
|
3947
|
+
RegionArea: string
|
|
3948
|
+
|
|
3949
|
+
/**
|
|
3950
|
+
* 机房所属大区名
|
|
3951
|
+
*/
|
|
3952
|
+
RegionAreaName: string
|
|
3953
|
+
|
|
3954
|
+
/**
|
|
3955
|
+
* 机房类型, dc表示DataCenter数据中心, ec表示EdgeComputing边缘节点
|
|
3956
|
+
*/
|
|
3957
|
+
IDCType: string
|
|
3885
3958
|
}
|
|
3886
3959
|
|
|
3887
3960
|
/**
|
|
@@ -5144,8 +5217,7 @@ CLOSED表示已关闭;
|
|
|
5144
5217
|
ADJUSTING表示配置变更中;
|
|
5145
5218
|
ISOLATING表示隔离中;
|
|
5146
5219
|
ISOLATED表示已隔离;
|
|
5147
|
-
CLONING
|
|
5148
|
-
UNKNOWN表示未知状态。
|
|
5220
|
+
CLONING表示复制中。
|
|
5149
5221
|
*/
|
|
5150
5222
|
Status: string
|
|
5151
5223
|
|
|
@@ -5258,7 +5330,7 @@ UNKNOWN表示未知状态。
|
|
|
5258
5330
|
IPAddressVersion: string
|
|
5259
5331
|
|
|
5260
5332
|
/**
|
|
5261
|
-
* 网络类型:normal
|
|
5333
|
+
* 网络类型:normal表示常规BGP,cn2表示精品BGP,triple表示三网
|
|
5262
5334
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5263
5335
|
*/
|
|
5264
5336
|
NetworkType: string
|
|
@@ -5274,6 +5346,12 @@ UNKNOWN表示未知状态。
|
|
|
5274
5346
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5275
5347
|
*/
|
|
5276
5348
|
BanStatus: string
|
|
5349
|
+
|
|
5350
|
+
/**
|
|
5351
|
+
* IP列表
|
|
5352
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5353
|
+
*/
|
|
5354
|
+
IPList: Array<IPDetail>
|
|
5277
5355
|
}
|
|
5278
5356
|
|
|
5279
5357
|
/**
|
|
@@ -3624,7 +3624,7 @@ export interface PushDataInfo {
|
|
|
3624
3624
|
VideoFps: number
|
|
3625
3625
|
|
|
3626
3626
|
/**
|
|
3627
|
-
* 推流视频码率,单位:
|
|
3627
|
+
* 推流视频码率,单位: Kbps。
|
|
3628
3628
|
*/
|
|
3629
3629
|
VideoSpeed: number
|
|
3630
3630
|
|
|
@@ -3634,7 +3634,7 @@ export interface PushDataInfo {
|
|
|
3634
3634
|
AudioFps: number
|
|
3635
3635
|
|
|
3636
3636
|
/**
|
|
3637
|
-
* 推流音频码率,单位:
|
|
3637
|
+
* 推流音频码率,单位: Kbps。
|
|
3638
3638
|
*/
|
|
3639
3639
|
AudioSpeed: number
|
|
3640
3640
|
|
|
@@ -6751,7 +6751,7 @@ export interface CreateLiveSnapshotTemplateRequest {
|
|
|
6751
6751
|
|
|
6752
6752
|
/**
|
|
6753
6753
|
* 截图间隔,单位s,默认10s。
|
|
6754
|
-
范围:
|
|
6754
|
+
范围: 2s ~ 300s。
|
|
6755
6755
|
*/
|
|
6756
6756
|
SnapshotInterval?: number
|
|
6757
6757
|
|
|
@@ -590,6 +590,11 @@ export interface EncodeParams {
|
|
|
590
590
|
* 混流-输出流音频编码类型,取值范围[0,1, 2],0为LC-AAC,1为HE-AAC,2为HE-AACv2。默认值为0。当音频编码设置为HE-AACv2时,只支持输出流音频声道数为双声道。HE-AAC和HE-AACv2支持的输出流音频采样率范围为[48000, 44100, 32000, 24000, 16000]
|
|
591
591
|
*/
|
|
592
592
|
AudioCodec?: number
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* 混流-输出流背景图片URL地址,支持png、jpg、jpeg、bmp格式,暂不支持透明通道。URL链接长度限制为512字节。BackgroundImageUrl和BackgroundImageId参数都填时,以BackgroundImageUrl为准。图片大小限制不超过10MB。
|
|
596
|
+
*/
|
|
597
|
+
BackgroundImageUrl?: string
|
|
593
598
|
}
|
|
594
599
|
|
|
595
600
|
/**
|
|
@@ -1703,6 +1708,11 @@ export interface WaterMarkParams {
|
|
|
1703
1708
|
* 水印在输出时的Y偏移。单位为像素值。
|
|
1704
1709
|
*/
|
|
1705
1710
|
LocationY: number
|
|
1711
|
+
|
|
1712
|
+
/**
|
|
1713
|
+
* 混流-水印图片URL地址,支持png、jpg、jpeg、bmp格式,暂不支持透明通道。URL链接长度限制为512字节。WaterMarkUrl和WaterMarkId参数都填时,以WaterMarkUrl为准。图片大小限制不超过10MB。
|
|
1714
|
+
*/
|
|
1715
|
+
WaterMarkUrl?: string
|
|
1706
1716
|
}
|
|
1707
1717
|
|
|
1708
1718
|
/**
|
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
ServiceTemplateGroup,
|
|
46
46
|
CreateDhcpIpResponse,
|
|
47
47
|
DescribeIpGeolocationInfosRequest,
|
|
48
|
+
AddTemplateMemberResponse,
|
|
48
49
|
CreateDefaultSecurityGroupRequest,
|
|
49
50
|
DescribeServiceTemplateGroupsResponse,
|
|
50
51
|
DescribeVpcEndPointRequest,
|
|
@@ -69,6 +70,7 @@ import {
|
|
|
69
70
|
UnassignIpv6AddressesResponse,
|
|
70
71
|
CreateIp6TranslatorsResponse,
|
|
71
72
|
DescribeFlowLogsRequest,
|
|
73
|
+
DeleteTemplateMemberRequest,
|
|
72
74
|
CloneSecurityGroupRequest,
|
|
73
75
|
AssociateNatGatewayAddressRequest,
|
|
74
76
|
CreateDirectConnectGatewayRequest,
|
|
@@ -165,7 +167,7 @@ import {
|
|
|
165
167
|
ReferredSecurityGroup,
|
|
166
168
|
ModifyAddressTemplateAttributeRequest,
|
|
167
169
|
CreateNatGatewayResponse,
|
|
168
|
-
|
|
170
|
+
DescribeIp6TranslatorQuotaRequest,
|
|
169
171
|
ModifySecurityGroupAttributeRequest,
|
|
170
172
|
ModifyNetDetectRequest,
|
|
171
173
|
DescribeNetDetectStatesResponse,
|
|
@@ -181,6 +183,7 @@ import {
|
|
|
181
183
|
InstanceStatistic,
|
|
182
184
|
CreateVpnConnectionRequest,
|
|
183
185
|
CcnRoute,
|
|
186
|
+
ModifyIpv6AddressesAttributeResponse,
|
|
184
187
|
DeleteSecurityGroupPoliciesRequest,
|
|
185
188
|
VpnConnection,
|
|
186
189
|
DescribeCcnsRequest,
|
|
@@ -252,7 +255,7 @@ import {
|
|
|
252
255
|
CreateServiceTemplateGroupResponse,
|
|
253
256
|
NetDetect,
|
|
254
257
|
VpnGatewayRouteModify,
|
|
255
|
-
|
|
258
|
+
MemberInfo,
|
|
256
259
|
ReplaceSecurityGroupPolicyRequest,
|
|
257
260
|
ModifyVpcEndPointServiceAttributeResponse,
|
|
258
261
|
ResourceDashboard,
|
|
@@ -283,10 +286,11 @@ import {
|
|
|
283
286
|
ModifyNetworkInterfaceAttributeResponse,
|
|
284
287
|
CreateSecurityGroupResponse,
|
|
285
288
|
DisassociateNetworkInterfaceSecurityGroupsResponse,
|
|
286
|
-
|
|
289
|
+
DescribeVpcsResponse,
|
|
287
290
|
DescribeNetworkInterfaceLimitResponse,
|
|
288
291
|
AssignIpv6CidrBlockResponse,
|
|
289
292
|
CreateCcnRequest,
|
|
293
|
+
DeleteTemplateMemberResponse,
|
|
290
294
|
ModifyNatGatewaySourceIpTranslationNatRuleRequest,
|
|
291
295
|
RemoveIp6RulesRequest,
|
|
292
296
|
DescribeIpGeolocationDatabaseUrlRequest,
|
|
@@ -383,6 +387,7 @@ import {
|
|
|
383
387
|
CreateVpcEndPointResponse,
|
|
384
388
|
DeleteAssistantCidrResponse,
|
|
385
389
|
DescribeCcnRegionBandwidthLimitsResponse,
|
|
390
|
+
ModifyTemplateMemberRequest,
|
|
386
391
|
DescribeAddressesResponse,
|
|
387
392
|
GatewayQos,
|
|
388
393
|
ModifyIpv6AddressesAttributeRequest,
|
|
@@ -432,7 +437,7 @@ import {
|
|
|
432
437
|
ModifyAddressAttributeRequest,
|
|
433
438
|
DhcpIp,
|
|
434
439
|
DeleteAssistantCidrRequest,
|
|
435
|
-
|
|
440
|
+
ModifyTemplateMemberResponse,
|
|
436
441
|
SubnetInput,
|
|
437
442
|
DescribeNatGatewayDirectConnectGatewayRouteResponse,
|
|
438
443
|
EnableVpcEndPointConnectResponse,
|
|
@@ -626,9 +631,11 @@ import {
|
|
|
626
631
|
NotifyRoutesResponse,
|
|
627
632
|
Route,
|
|
628
633
|
ModifySubnetAttributeRequest,
|
|
634
|
+
ModifyVpcEndPointServiceWhiteListResponse,
|
|
629
635
|
DescribeBandwidthPackageQuotaRequest,
|
|
630
636
|
DeleteVpcResponse,
|
|
631
637
|
DescribeTemplateLimitsRequest,
|
|
638
|
+
AddTemplateMemberRequest,
|
|
632
639
|
DescribeVpcEndPointServiceWhiteListResponse,
|
|
633
640
|
AcceptAttachCcnInstancesResponse,
|
|
634
641
|
InstanceChargePrepaid,
|
|
@@ -834,6 +841,16 @@ export class Client extends AbstractClient {
|
|
|
834
841
|
return this.request("ModifyFlowLogAttribute", req, cb)
|
|
835
842
|
}
|
|
836
843
|
|
|
844
|
+
/**
|
|
845
|
+
* 修改弹性网卡服务质量
|
|
846
|
+
*/
|
|
847
|
+
async ModifyNetworkInterfaceQos(
|
|
848
|
+
req: ModifyNetworkInterfaceQosRequest,
|
|
849
|
+
cb?: (error: string, rep: ModifyNetworkInterfaceQosResponse) => void
|
|
850
|
+
): Promise<ModifyNetworkInterfaceQosResponse> {
|
|
851
|
+
return this.request("ModifyNetworkInterfaceQos", req, cb)
|
|
852
|
+
}
|
|
853
|
+
|
|
837
854
|
/**
|
|
838
855
|
* 本接口(DisassociateNetworkInterfaceSecurityGroups)用于弹性网卡解绑安全组。支持弹性网卡完全解绑安全组。
|
|
839
856
|
*/
|
|
@@ -1395,13 +1412,13 @@ export class Client extends AbstractClient {
|
|
|
1395
1412
|
}
|
|
1396
1413
|
|
|
1397
1414
|
/**
|
|
1398
|
-
*
|
|
1415
|
+
* 删除模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
1399
1416
|
*/
|
|
1400
|
-
async
|
|
1401
|
-
req:
|
|
1402
|
-
cb?: (error: string, rep:
|
|
1403
|
-
): Promise<
|
|
1404
|
-
return this.request("
|
|
1417
|
+
async DeleteTemplateMember(
|
|
1418
|
+
req: DeleteTemplateMemberRequest,
|
|
1419
|
+
cb?: (error: string, rep: DeleteTemplateMemberResponse) => void
|
|
1420
|
+
): Promise<DeleteTemplateMemberResponse> {
|
|
1421
|
+
return this.request("DeleteTemplateMember", req, cb)
|
|
1405
1422
|
}
|
|
1406
1423
|
|
|
1407
1424
|
/**
|
|
@@ -1424,6 +1441,16 @@ export class Client extends AbstractClient {
|
|
|
1424
1441
|
return this.request("DescribeGatewayFlowQos", req, cb)
|
|
1425
1442
|
}
|
|
1426
1443
|
|
|
1444
|
+
/**
|
|
1445
|
+
* 修改模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
1446
|
+
*/
|
|
1447
|
+
async ModifyTemplateMember(
|
|
1448
|
+
req: ModifyTemplateMemberRequest,
|
|
1449
|
+
cb?: (error: string, rep: ModifyTemplateMemberResponse) => void
|
|
1450
|
+
): Promise<ModifyTemplateMemberResponse> {
|
|
1451
|
+
return this.request("ModifyTemplateMember", req, cb)
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1427
1454
|
/**
|
|
1428
1455
|
* 将专线网关与NAT网关解绑,解绑之后,专线网关将不能通过NAT网关访问公网
|
|
1429
1456
|
*/
|
|
@@ -2727,6 +2754,16 @@ LimitTypes取值范围:
|
|
|
2727
2754
|
return this.request("CreateNatGatewaySourceIpTranslationNatRule", req, cb)
|
|
2728
2755
|
}
|
|
2729
2756
|
|
|
2757
|
+
/**
|
|
2758
|
+
* 增加模版对象中的IP地址、协议端口、IP地址组、协议端口组。当前仅支持北京、泰国、北美地域请求。
|
|
2759
|
+
*/
|
|
2760
|
+
async AddTemplateMember(
|
|
2761
|
+
req: AddTemplateMemberRequest,
|
|
2762
|
+
cb?: (error: string, rep: AddTemplateMemberResponse) => void
|
|
2763
|
+
): Promise<AddTemplateMemberResponse> {
|
|
2764
|
+
return this.request("AddTemplateMember", req, cb)
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2730
2767
|
/**
|
|
2731
2768
|
* 1. 该接口用于删除IPV6转换规则
|
|
2732
2769
|
2. 支持批量删除同一个转换实例下的多个转换规则
|