tencentcloud-sdk-nodejs 4.0.668 → 4.0.669
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 +155 -0
- package/SERVICE_CHANGELOG.md +192 -100
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +4 -0
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +15 -11
- package/src/services/dts/v20211206/dts_client.ts +30 -6
- package/src/services/dts/v20211206/dts_models.ts +80 -0
- package/src/services/ess/v20201111/ess_models.ts +29 -5
- package/src/services/essbasic/v20210526/essbasic_client.ts +14 -6
- package/src/services/essbasic/v20210526/essbasic_models.ts +64 -14
- package/src/services/nlp/v20190408/nlp_client.ts +1 -1
- package/src/services/ocr/v20181119/ocr_client.ts +1 -1
- package/src/services/tcb/v20180608/tcb_models.ts +19 -14
- package/src/services/tdmq/v20200217/tdmq_models.ts +1 -1
- package/src/services/tse/v20201207/tse_client.ts +152 -33
- package/src/services/tse/v20201207/tse_models.ts +792 -121
- package/src/services/tts/v20190823/tts_client.ts +0 -1
- 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 +4 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +15 -11
- package/tencentcloud/services/dts/v20211206/dts_client.d.ts +11 -3
- package/tencentcloud/services/dts/v20211206/dts_client.js +15 -3
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +76 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +29 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +13 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +13 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +64 -14
- package/tencentcloud/services/nlp/v20190408/nlp_client.d.ts +1 -1
- package/tencentcloud/services/nlp/v20190408/nlp_client.js +1 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +1 -1
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +19 -14
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +1 -1
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +45 -9
- package/tencentcloud/services/tse/v20201207/tse_client.js +66 -12
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +770 -128
- package/tencentcloud/services/tts/v20190823/tts_client.d.ts +0 -1
- package/tencentcloud/services/tts/v20190823/tts_client.js +0 -1
- package/test/dts.v20211206.test.js +22 -2
- package/test/tse.v20201207.test.js +98 -8
|
@@ -1382,7 +1382,7 @@ export class Client extends AbstractClient {
|
|
|
1382
1382
|
}
|
|
1383
1383
|
|
|
1384
1384
|
/**
|
|
1385
|
-
* 本接口支持OFD
|
|
1385
|
+
* 本接口支持OFD格式的 增值税电子普通发票、增值税电子专用发票、电子发票(普通发票)、电子发票(增值税专用发票)识别,返回发票代码、发票号码、开票日期、验证码、机器编号、密码区,购买方和销售方信息,包括名称、纳税人识别号、地址电话、开户行及账号,以及价税合计、开票人、收款人、复核人、税额、不含税金额等字段信息。
|
|
1386
1386
|
*/
|
|
1387
1387
|
async VerifyOfdVatInvoiceOCR(
|
|
1388
1388
|
req: VerifyOfdVatInvoiceOCRRequest,
|
|
@@ -5467,72 +5467,77 @@ export interface WxGatewayRountItem {
|
|
|
5467
5467
|
/**
|
|
5468
5468
|
* 安全网关路由名称
|
|
5469
5469
|
*/
|
|
5470
|
-
GatewayRouteName
|
|
5470
|
+
GatewayRouteName?: string
|
|
5471
5471
|
/**
|
|
5472
5472
|
* 安全网关路由协议
|
|
5473
5473
|
*/
|
|
5474
|
-
GatewayRouteProtocol
|
|
5474
|
+
GatewayRouteProtocol?: string
|
|
5475
5475
|
/**
|
|
5476
5476
|
* 安全网关路由地址
|
|
5477
5477
|
*/
|
|
5478
|
-
GatewayRouteAddr
|
|
5478
|
+
GatewayRouteAddr?: string
|
|
5479
5479
|
/**
|
|
5480
5480
|
* 安全网关路由描述
|
|
5481
5481
|
*/
|
|
5482
|
-
GatewayRouteDesc
|
|
5482
|
+
GatewayRouteDesc?: string
|
|
5483
5483
|
/**
|
|
5484
5484
|
* 安全网关后端集群id,如果是外网服务,该id与GatewayRountName相同
|
|
5485
5485
|
*/
|
|
5486
|
-
GatewayRouteClusterId
|
|
5486
|
+
GatewayRouteClusterId?: string
|
|
5487
5487
|
/**
|
|
5488
5488
|
* 安全网关创建时间
|
|
5489
5489
|
*/
|
|
5490
|
-
GatewayRouteCreateTime
|
|
5490
|
+
GatewayRouteCreateTime?: string
|
|
5491
5491
|
/**
|
|
5492
5492
|
* 安全网关路由限制
|
|
5493
5493
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5494
5494
|
*/
|
|
5495
|
-
FrequencyLimitConfig
|
|
5495
|
+
FrequencyLimitConfig?: Array<FrequencyLimitConfig>
|
|
5496
5496
|
/**
|
|
5497
5497
|
* ip代表绑定后端ip。cbr代表云托管服务
|
|
5498
5498
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5499
5499
|
*/
|
|
5500
|
-
GatewayRouteServerType
|
|
5500
|
+
GatewayRouteServerType?: string
|
|
5501
5501
|
/**
|
|
5502
5502
|
* 服务名
|
|
5503
5503
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5504
5504
|
*/
|
|
5505
|
-
GatewayRouteServerName
|
|
5505
|
+
GatewayRouteServerName?: string
|
|
5506
5506
|
/**
|
|
5507
5507
|
* ip
|
|
5508
5508
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5509
5509
|
*/
|
|
5510
|
-
GatewayRewriteHost
|
|
5510
|
+
GatewayRewriteHost?: string
|
|
5511
5511
|
/**
|
|
5512
5512
|
* 网关版本
|
|
5513
5513
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5514
5514
|
*/
|
|
5515
|
-
GatewayVersion
|
|
5515
|
+
GatewayVersion?: string
|
|
5516
5516
|
/**
|
|
5517
5517
|
* 请求路径
|
|
5518
5518
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5519
5519
|
*/
|
|
5520
|
-
GatewayRoutePath
|
|
5520
|
+
GatewayRoutePath?: string
|
|
5521
5521
|
/**
|
|
5522
5522
|
* 请求模式
|
|
5523
5523
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5524
5524
|
*/
|
|
5525
|
-
GatewayRouteMethod
|
|
5525
|
+
GatewayRouteMethod?: string
|
|
5526
5526
|
/**
|
|
5527
5527
|
* 4层端口
|
|
5528
5528
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5529
5529
|
*/
|
|
5530
|
-
GatewayRoutePort
|
|
5530
|
+
GatewayRoutePort?: number
|
|
5531
5531
|
/**
|
|
5532
5532
|
* 路由环境ID
|
|
5533
5533
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5534
5534
|
*/
|
|
5535
5535
|
GatewayRouteEnvId?: string
|
|
5536
|
+
/**
|
|
5537
|
+
* 路径匹配类型,支持prefix(前缀匹配),regex(正则匹配), 默认prefix
|
|
5538
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5539
|
+
*/
|
|
5540
|
+
GatewayRoutePathMatchType?: string
|
|
5536
5541
|
}
|
|
5537
5542
|
|
|
5538
5543
|
/**
|
|
@@ -18,27 +18,32 @@
|
|
|
18
18
|
import { AbstractClient } from "../../../common/abstract_client"
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
|
-
|
|
21
|
+
ListCloudNativeAPIGatewayResult,
|
|
22
|
+
DescribeCloudNativeAPIGatewayResponse,
|
|
22
23
|
CreateCloudNativeAPIGatewayServiceResponse,
|
|
23
24
|
DeleteCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
24
25
|
ApolloEnvParam,
|
|
25
26
|
DescribeCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
26
|
-
|
|
27
|
+
CreateCloudNativeAPIGatewayRequest,
|
|
27
28
|
DescribeCloudNativeAPIGatewayNodesRequest,
|
|
28
29
|
ModifyCloudNativeAPIGatewayRouteRequest,
|
|
30
|
+
DeleteNativeGatewayServerGroupResponse,
|
|
29
31
|
DescribeSREInstanceAccessAddressResponse,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
ModifyCloudNativeAPIGatewayCanaryRuleResponse,
|
|
33
|
+
CloudNativeAPIGatewayNodeConfig,
|
|
34
|
+
CreateNativeGatewayServerGroupRequest,
|
|
35
|
+
DeleteCloudNativeAPIGatewayResult,
|
|
33
36
|
QpsThreshold,
|
|
34
37
|
ModifyCloudNativeAPIGatewayServiceResponse,
|
|
35
38
|
DescribeCloudNativeAPIGatewayNodesResponse,
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
CreateCloudNativeAPIGatewayResponse,
|
|
40
|
+
DeleteCloudNativeAPIGatewayCanaryRuleRequest,
|
|
41
|
+
GatewayInstanceSchemeAndPorts,
|
|
39
42
|
ModifyCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
40
43
|
NacosServerInterface,
|
|
44
|
+
DescribeNacosReplicasRequest,
|
|
41
45
|
CreateCloudNativeAPIGatewayServiceRequest,
|
|
46
|
+
CloudNativeAPIGatewayBalancedService,
|
|
42
47
|
ExternalRedis,
|
|
43
48
|
EnvAddressInfo,
|
|
44
49
|
InstanceTagInfo,
|
|
@@ -52,13 +57,18 @@ import {
|
|
|
52
57
|
DescribeCloudNativeAPIGatewayRoutesResponse,
|
|
53
58
|
DescribeZookeeperReplicasRequest,
|
|
54
59
|
DeleteCloudNativeAPIGatewayServiceResponse,
|
|
60
|
+
InstancePort,
|
|
61
|
+
DescribeCloudNativeAPIGatewayResult,
|
|
55
62
|
DeleteCloudNativeAPIGatewayRouteResponse,
|
|
56
63
|
DescribeCloudNativeAPIGatewayPortsResponse,
|
|
57
64
|
CreateCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
65
|
+
DeleteNativeGatewayServerGroupRequest,
|
|
58
66
|
ModifyCloudNativeAPIGatewayRouteResponse,
|
|
67
|
+
DeleteNativeGatewayServerGroupResult,
|
|
59
68
|
ServiceGovernanceInfo,
|
|
60
69
|
DescribeNacosReplicasResponse,
|
|
61
70
|
DeleteCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
71
|
+
CloudNativeAPIGatewayVpcConfig,
|
|
62
72
|
CloudAPIGatewayCanaryRuleList,
|
|
63
73
|
KongRoutePreview,
|
|
64
74
|
CloudNativeAPIGatewayRateLimitDetail,
|
|
@@ -72,36 +82,50 @@ import {
|
|
|
72
82
|
DescribeCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
73
83
|
DeleteCloudNativeAPIGatewayServiceRequest,
|
|
74
84
|
EnvInfo,
|
|
85
|
+
ModifyNativeGatewayServerGroupRequest,
|
|
75
86
|
DescribeCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
76
87
|
DescribeOneCloudNativeAPIGatewayServiceRequest,
|
|
77
88
|
CreateCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
89
|
+
DescribeCloudNativeAPIGatewaysResponse,
|
|
78
90
|
UpdateEngineInternetAccessResponse,
|
|
91
|
+
UpdateCloudNativeAPIGatewaySpecRequest,
|
|
92
|
+
DescribeCloudNativeAPIGatewayServicesResponse,
|
|
79
93
|
DeleteCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
80
94
|
ListFilter,
|
|
81
95
|
DeleteEngineRequest,
|
|
82
96
|
ZookeeperReplica,
|
|
97
|
+
DescribeSREInstanceAccessAddressRequest,
|
|
83
98
|
DescribeCloudNativeAPIGatewayCanaryRulesResponse,
|
|
84
99
|
SREInstance,
|
|
85
100
|
DeleteCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
86
101
|
ModifyCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
87
102
|
CloudNativeAPIGatewayNode,
|
|
103
|
+
UpdateCloudNativeAPIGatewaySpecResponse,
|
|
88
104
|
DescribeGatewayInstancePortResult,
|
|
89
105
|
DescribeZookeeperServerInterfacesResponse,
|
|
90
|
-
|
|
106
|
+
DeleteCloudNativeAPIGatewayRequest,
|
|
107
|
+
EngineAdmin,
|
|
91
108
|
PolarisLimiterAddress,
|
|
92
109
|
DescribeOneCloudNativeAPIGatewayServiceResponse,
|
|
93
110
|
ModifyCloudNativeAPIGatewayServiceRequest,
|
|
111
|
+
DeleteCloudNativeAPIGatewayResponse,
|
|
94
112
|
KongServices,
|
|
113
|
+
ModifyCloudNativeAPIGatewayResponse,
|
|
95
114
|
DescribeZookeeperServerInterfacesRequest,
|
|
96
115
|
DescribeCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
116
|
+
UpdateCloudNativeAPIGatewayResult,
|
|
117
|
+
DescribeCloudNativeAPIGatewayRequest,
|
|
97
118
|
CreateCloudNativeAPIGatewayCanaryRuleRequest,
|
|
98
119
|
DeleteCloudNativeAPIGatewayRouteRequest,
|
|
120
|
+
DescribeCloudNativeAPIGatewaysRequest,
|
|
121
|
+
InternetConfig,
|
|
99
122
|
DescribeCloudNativeAPIGatewayRoutesRequest,
|
|
100
123
|
CreateEngineResponse,
|
|
101
124
|
CreateCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
102
125
|
DescribeCloudNativeAPIGatewayNodesResult,
|
|
103
126
|
CloudNativeAPIGatewayCanaryRule,
|
|
104
127
|
ModifyCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
128
|
+
CreateCloudNativeAPIGatewayServerGroupResult,
|
|
105
129
|
DescribeNacosServerInterfacesRequest,
|
|
106
130
|
CloudNativeAPIGatewayCanaryRuleCondition,
|
|
107
131
|
DescribeSREInstancesResponse,
|
|
@@ -109,17 +133,22 @@ import {
|
|
|
109
133
|
BoundK8SInfo,
|
|
110
134
|
KongUpstreamInfo,
|
|
111
135
|
DescribeSREInstancesRequest,
|
|
136
|
+
CreateNativeGatewayServerGroupResponse,
|
|
112
137
|
CreateCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
113
138
|
DescribeZookeeperReplicasResponse,
|
|
114
139
|
CreateEngineRequest,
|
|
115
140
|
ModifyCloudNativeAPIGatewayCanaryRuleRequest,
|
|
141
|
+
VpcInfo,
|
|
116
142
|
KongServiceRouteList,
|
|
117
|
-
|
|
143
|
+
CreateCloudNativeAPIGatewayResult,
|
|
144
|
+
ModifyCloudNativeAPIGatewayRequest,
|
|
145
|
+
KongServicePreview,
|
|
118
146
|
ModifyCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
119
|
-
|
|
147
|
+
Filter,
|
|
120
148
|
DescribeCloudNativeAPIGatewayCanaryRulesRequest,
|
|
121
149
|
DeleteCloudNativeAPIGatewayCanaryRuleResponse,
|
|
122
150
|
DescribeCloudNativeAPIGatewayPortsRequest,
|
|
151
|
+
ModifyNativeGatewayServerGroupResponse,
|
|
123
152
|
KongServiceDetail,
|
|
124
153
|
} from "./tse_models"
|
|
125
154
|
|
|
@@ -133,13 +162,23 @@ export class Client extends AbstractClient {
|
|
|
133
162
|
}
|
|
134
163
|
|
|
135
164
|
/**
|
|
136
|
-
*
|
|
165
|
+
* 查询Nacos类型引擎实例副本信息
|
|
137
166
|
*/
|
|
138
|
-
async
|
|
139
|
-
req:
|
|
140
|
-
cb?: (error: string, rep:
|
|
141
|
-
): Promise<
|
|
142
|
-
return this.request("
|
|
167
|
+
async DescribeNacosReplicas(
|
|
168
|
+
req: DescribeNacosReplicasRequest,
|
|
169
|
+
cb?: (error: string, rep: DescribeNacosReplicasResponse) => void
|
|
170
|
+
): Promise<DescribeNacosReplicasResponse> {
|
|
171
|
+
return this.request("DescribeNacosReplicas", req, cb)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* 修改云原生API网关实例分组基础信息
|
|
176
|
+
*/
|
|
177
|
+
async ModifyNativeGatewayServerGroup(
|
|
178
|
+
req: ModifyNativeGatewayServerGroupRequest,
|
|
179
|
+
cb?: (error: string, rep: ModifyNativeGatewayServerGroupResponse) => void
|
|
180
|
+
): Promise<ModifyNativeGatewayServerGroupResponse> {
|
|
181
|
+
return this.request("ModifyNativeGatewayServerGroup", req, cb)
|
|
143
182
|
}
|
|
144
183
|
|
|
145
184
|
/**
|
|
@@ -162,6 +201,16 @@ export class Client extends AbstractClient {
|
|
|
162
201
|
return this.request("DescribeZookeeperServerInterfaces", req, cb)
|
|
163
202
|
}
|
|
164
203
|
|
|
204
|
+
/**
|
|
205
|
+
* 获取云原生网关服务详情
|
|
206
|
+
*/
|
|
207
|
+
async DescribeOneCloudNativeAPIGatewayService(
|
|
208
|
+
req: DescribeOneCloudNativeAPIGatewayServiceRequest,
|
|
209
|
+
cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void
|
|
210
|
+
): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse> {
|
|
211
|
+
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb)
|
|
212
|
+
}
|
|
213
|
+
|
|
165
214
|
/**
|
|
166
215
|
* 修改云原生网关限流插件(服务)
|
|
167
216
|
*/
|
|
@@ -182,6 +231,16 @@ export class Client extends AbstractClient {
|
|
|
182
231
|
return this.request("CreateEngine", req, cb)
|
|
183
232
|
}
|
|
184
233
|
|
|
234
|
+
/**
|
|
235
|
+
* 修改云原生网关的灰度规则
|
|
236
|
+
*/
|
|
237
|
+
async ModifyCloudNativeAPIGatewayCanaryRule(
|
|
238
|
+
req: ModifyCloudNativeAPIGatewayCanaryRuleRequest,
|
|
239
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayCanaryRuleResponse) => void
|
|
240
|
+
): Promise<ModifyCloudNativeAPIGatewayCanaryRuleResponse> {
|
|
241
|
+
return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb)
|
|
242
|
+
}
|
|
243
|
+
|
|
185
244
|
/**
|
|
186
245
|
* 删除云原生网关服务
|
|
187
246
|
*/
|
|
@@ -212,6 +271,16 @@ export class Client extends AbstractClient {
|
|
|
212
271
|
return this.request("DescribeCloudNativeAPIGatewayRoutes", req, cb)
|
|
213
272
|
}
|
|
214
273
|
|
|
274
|
+
/**
|
|
275
|
+
* 获取云原生API网关实例信息
|
|
276
|
+
*/
|
|
277
|
+
async DescribeCloudNativeAPIGateway(
|
|
278
|
+
req: DescribeCloudNativeAPIGatewayRequest,
|
|
279
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayResponse) => void
|
|
280
|
+
): Promise<DescribeCloudNativeAPIGatewayResponse> {
|
|
281
|
+
return this.request("DescribeCloudNativeAPIGateway", req, cb)
|
|
282
|
+
}
|
|
283
|
+
|
|
215
284
|
/**
|
|
216
285
|
* 获取云原生API网关实例端口信息
|
|
217
286
|
*/
|
|
@@ -252,6 +321,16 @@ export class Client extends AbstractClient {
|
|
|
252
321
|
return this.request("DeleteCloudNativeAPIGatewayCanaryRule", req, cb)
|
|
253
322
|
}
|
|
254
323
|
|
|
324
|
+
/**
|
|
325
|
+
* 获取云原生API网关实例列表
|
|
326
|
+
*/
|
|
327
|
+
async DescribeCloudNativeAPIGateways(
|
|
328
|
+
req: DescribeCloudNativeAPIGatewaysRequest,
|
|
329
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewaysResponse) => void
|
|
330
|
+
): Promise<DescribeCloudNativeAPIGatewaysResponse> {
|
|
331
|
+
return this.request("DescribeCloudNativeAPIGateways", req, cb)
|
|
332
|
+
}
|
|
333
|
+
|
|
255
334
|
/**
|
|
256
335
|
* 查询云原生网关服务列表
|
|
257
336
|
*/
|
|
@@ -282,6 +361,16 @@ export class Client extends AbstractClient {
|
|
|
282
361
|
return this.request("DescribeNacosServerInterfaces", req, cb)
|
|
283
362
|
}
|
|
284
363
|
|
|
364
|
+
/**
|
|
365
|
+
* 修改云原生API网关实例的节点规格信息,比如节点扩缩容或者升降配
|
|
366
|
+
*/
|
|
367
|
+
async UpdateCloudNativeAPIGatewaySpec(
|
|
368
|
+
req: UpdateCloudNativeAPIGatewaySpecRequest,
|
|
369
|
+
cb?: (error: string, rep: UpdateCloudNativeAPIGatewaySpecResponse) => void
|
|
370
|
+
): Promise<UpdateCloudNativeAPIGatewaySpecResponse> {
|
|
371
|
+
return this.request("UpdateCloudNativeAPIGatewaySpec", req, cb)
|
|
372
|
+
}
|
|
373
|
+
|
|
285
374
|
/**
|
|
286
375
|
* 查询Zookeeper类型注册引擎实例副本信息
|
|
287
376
|
*/
|
|
@@ -292,6 +381,16 @@ export class Client extends AbstractClient {
|
|
|
292
381
|
return this.request("DescribeZookeeperReplicas", req, cb)
|
|
293
382
|
}
|
|
294
383
|
|
|
384
|
+
/**
|
|
385
|
+
* 创建云原生API网关实例
|
|
386
|
+
*/
|
|
387
|
+
async CreateCloudNativeAPIGateway(
|
|
388
|
+
req: CreateCloudNativeAPIGatewayRequest,
|
|
389
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayResponse) => void
|
|
390
|
+
): Promise<CreateCloudNativeAPIGatewayResponse> {
|
|
391
|
+
return this.request("CreateCloudNativeAPIGateway", req, cb)
|
|
392
|
+
}
|
|
393
|
+
|
|
295
394
|
/**
|
|
296
395
|
* 用于查询引擎实例列表
|
|
297
396
|
*/
|
|
@@ -363,13 +462,13 @@ export class Client extends AbstractClient {
|
|
|
363
462
|
}
|
|
364
463
|
|
|
365
464
|
/**
|
|
366
|
-
*
|
|
465
|
+
* 修改云原生API网关实例基础信息
|
|
367
466
|
*/
|
|
368
|
-
async
|
|
369
|
-
req:
|
|
370
|
-
cb?: (error: string, rep:
|
|
371
|
-
): Promise<
|
|
372
|
-
return this.request("
|
|
467
|
+
async ModifyCloudNativeAPIGateway(
|
|
468
|
+
req: ModifyCloudNativeAPIGatewayRequest,
|
|
469
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayResponse) => void
|
|
470
|
+
): Promise<ModifyCloudNativeAPIGatewayResponse> {
|
|
471
|
+
return this.request("ModifyCloudNativeAPIGateway", req, cb)
|
|
373
472
|
}
|
|
374
473
|
|
|
375
474
|
/**
|
|
@@ -382,6 +481,16 @@ export class Client extends AbstractClient {
|
|
|
382
481
|
return this.request("CreateCloudNativeAPIGatewayServiceRateLimit", req, cb)
|
|
383
482
|
}
|
|
384
483
|
|
|
484
|
+
/**
|
|
485
|
+
* 删除云原生API网关实例
|
|
486
|
+
*/
|
|
487
|
+
async DeleteCloudNativeAPIGateway(
|
|
488
|
+
req: DeleteCloudNativeAPIGatewayRequest,
|
|
489
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayResponse) => void
|
|
490
|
+
): Promise<DeleteCloudNativeAPIGatewayResponse> {
|
|
491
|
+
return this.request("DeleteCloudNativeAPIGateway", req, cb)
|
|
492
|
+
}
|
|
493
|
+
|
|
385
494
|
/**
|
|
386
495
|
* 创建云原生网关路由
|
|
387
496
|
*/
|
|
@@ -392,6 +501,16 @@ export class Client extends AbstractClient {
|
|
|
392
501
|
return this.request("CreateCloudNativeAPIGatewayRoute", req, cb)
|
|
393
502
|
}
|
|
394
503
|
|
|
504
|
+
/**
|
|
505
|
+
* 创建云原生网关引擎分组
|
|
506
|
+
*/
|
|
507
|
+
async CreateNativeGatewayServerGroup(
|
|
508
|
+
req: CreateNativeGatewayServerGroupRequest,
|
|
509
|
+
cb?: (error: string, rep: CreateNativeGatewayServerGroupResponse) => void
|
|
510
|
+
): Promise<CreateNativeGatewayServerGroupResponse> {
|
|
511
|
+
return this.request("CreateNativeGatewayServerGroup", req, cb)
|
|
512
|
+
}
|
|
513
|
+
|
|
395
514
|
/**
|
|
396
515
|
* 删除云原生网关的限流插件(路由)
|
|
397
516
|
*/
|
|
@@ -412,16 +531,6 @@ export class Client extends AbstractClient {
|
|
|
412
531
|
return this.request("CreateCloudNativeAPIGatewayRouteRateLimit", req, cb)
|
|
413
532
|
}
|
|
414
533
|
|
|
415
|
-
/**
|
|
416
|
-
* 查询Nacos类型引擎实例副本信息
|
|
417
|
-
*/
|
|
418
|
-
async DescribeNacosReplicas(
|
|
419
|
-
req: DescribeNacosReplicasRequest,
|
|
420
|
-
cb?: (error: string, rep: DescribeNacosReplicasResponse) => void
|
|
421
|
-
): Promise<DescribeNacosReplicasResponse> {
|
|
422
|
-
return this.request("DescribeNacosReplicas", req, cb)
|
|
423
|
-
}
|
|
424
|
-
|
|
425
534
|
/**
|
|
426
535
|
* 修改云原生网关路由
|
|
427
536
|
*/
|
|
@@ -432,6 +541,16 @@ export class Client extends AbstractClient {
|
|
|
432
541
|
return this.request("ModifyCloudNativeAPIGatewayRoute", req, cb)
|
|
433
542
|
}
|
|
434
543
|
|
|
544
|
+
/**
|
|
545
|
+
* 删除网关实例分组
|
|
546
|
+
*/
|
|
547
|
+
async DeleteNativeGatewayServerGroup(
|
|
548
|
+
req: DeleteNativeGatewayServerGroupRequest,
|
|
549
|
+
cb?: (error: string, rep: DeleteNativeGatewayServerGroupResponse) => void
|
|
550
|
+
): Promise<DeleteNativeGatewayServerGroupResponse> {
|
|
551
|
+
return this.request("DeleteNativeGatewayServerGroup", req, cb)
|
|
552
|
+
}
|
|
553
|
+
|
|
435
554
|
/**
|
|
436
555
|
* 查询云原生网关灰度规则列表
|
|
437
556
|
*/
|