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
|
@@ -5243,72 +5243,77 @@ export interface WxGatewayRountItem {
|
|
|
5243
5243
|
/**
|
|
5244
5244
|
* 安全网关路由名称
|
|
5245
5245
|
*/
|
|
5246
|
-
GatewayRouteName
|
|
5246
|
+
GatewayRouteName?: string;
|
|
5247
5247
|
/**
|
|
5248
5248
|
* 安全网关路由协议
|
|
5249
5249
|
*/
|
|
5250
|
-
GatewayRouteProtocol
|
|
5250
|
+
GatewayRouteProtocol?: string;
|
|
5251
5251
|
/**
|
|
5252
5252
|
* 安全网关路由地址
|
|
5253
5253
|
*/
|
|
5254
|
-
GatewayRouteAddr
|
|
5254
|
+
GatewayRouteAddr?: string;
|
|
5255
5255
|
/**
|
|
5256
5256
|
* 安全网关路由描述
|
|
5257
5257
|
*/
|
|
5258
|
-
GatewayRouteDesc
|
|
5258
|
+
GatewayRouteDesc?: string;
|
|
5259
5259
|
/**
|
|
5260
5260
|
* 安全网关后端集群id,如果是外网服务,该id与GatewayRountName相同
|
|
5261
5261
|
*/
|
|
5262
|
-
GatewayRouteClusterId
|
|
5262
|
+
GatewayRouteClusterId?: string;
|
|
5263
5263
|
/**
|
|
5264
5264
|
* 安全网关创建时间
|
|
5265
5265
|
*/
|
|
5266
|
-
GatewayRouteCreateTime
|
|
5266
|
+
GatewayRouteCreateTime?: string;
|
|
5267
5267
|
/**
|
|
5268
5268
|
* 安全网关路由限制
|
|
5269
5269
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5270
5270
|
*/
|
|
5271
|
-
FrequencyLimitConfig
|
|
5271
|
+
FrequencyLimitConfig?: Array<FrequencyLimitConfig>;
|
|
5272
5272
|
/**
|
|
5273
5273
|
* ip代表绑定后端ip。cbr代表云托管服务
|
|
5274
5274
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5275
5275
|
*/
|
|
5276
|
-
GatewayRouteServerType
|
|
5276
|
+
GatewayRouteServerType?: string;
|
|
5277
5277
|
/**
|
|
5278
5278
|
* 服务名
|
|
5279
5279
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5280
5280
|
*/
|
|
5281
|
-
GatewayRouteServerName
|
|
5281
|
+
GatewayRouteServerName?: string;
|
|
5282
5282
|
/**
|
|
5283
5283
|
* ip
|
|
5284
5284
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5285
5285
|
*/
|
|
5286
|
-
GatewayRewriteHost
|
|
5286
|
+
GatewayRewriteHost?: string;
|
|
5287
5287
|
/**
|
|
5288
5288
|
* 网关版本
|
|
5289
5289
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5290
5290
|
*/
|
|
5291
|
-
GatewayVersion
|
|
5291
|
+
GatewayVersion?: string;
|
|
5292
5292
|
/**
|
|
5293
5293
|
* 请求路径
|
|
5294
5294
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5295
5295
|
*/
|
|
5296
|
-
GatewayRoutePath
|
|
5296
|
+
GatewayRoutePath?: string;
|
|
5297
5297
|
/**
|
|
5298
5298
|
* 请求模式
|
|
5299
5299
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5300
5300
|
*/
|
|
5301
|
-
GatewayRouteMethod
|
|
5301
|
+
GatewayRouteMethod?: string;
|
|
5302
5302
|
/**
|
|
5303
5303
|
* 4层端口
|
|
5304
5304
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5305
5305
|
*/
|
|
5306
|
-
GatewayRoutePort
|
|
5306
|
+
GatewayRoutePort?: number;
|
|
5307
5307
|
/**
|
|
5308
5308
|
* 路由环境ID
|
|
5309
5309
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5310
5310
|
*/
|
|
5311
5311
|
GatewayRouteEnvId?: string;
|
|
5312
|
+
/**
|
|
5313
|
+
* 路径匹配类型,支持prefix(前缀匹配),regex(正则匹配), 默认prefix
|
|
5314
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5315
|
+
*/
|
|
5316
|
+
GatewayRoutePathMatchType?: string;
|
|
5312
5317
|
}
|
|
5313
5318
|
/**
|
|
5314
5319
|
* DescribeSmsQuotas请求参数结构体
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import {
|
|
3
|
+
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DeleteNativeGatewayServerGroupResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, CreateNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, DescribeCloudNativeAPIGatewayServicesRequest, UpdateEngineInternetAccessRequest, CreateCloudNativeAPIGatewayCanaryRuleResponse, CreateCloudNativeAPIGatewayRouteRequest, DeleteEngineResponse, DescribeCloudNativeAPIGatewayRoutesResponse, DescribeZookeeperReplicasRequest, DeleteCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayPortsResponse, CreateCloudNativeAPIGatewayRouteRateLimitRequest, DeleteNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayRouteResponse, DescribeNacosReplicasResponse, DeleteCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRouteResponse, DescribeNacosServerInterfacesResponse, DescribeCloudNativeAPIGatewayServiceRateLimitResponse, DeleteCloudNativeAPIGatewayServiceRequest, ModifyNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayRouteRateLimitRequest, DescribeOneCloudNativeAPIGatewayServiceRequest, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewaysResponse, UpdateEngineInternetAccessResponse, UpdateCloudNativeAPIGatewaySpecRequest, DescribeCloudNativeAPIGatewayServicesResponse, DeleteCloudNativeAPIGatewayRouteRateLimitRequest, DeleteEngineRequest, DescribeSREInstanceAccessAddressRequest, DescribeCloudNativeAPIGatewayCanaryRulesResponse, DeleteCloudNativeAPIGatewayServiceRateLimitResponse, ModifyCloudNativeAPIGatewayServiceRateLimitRequest, UpdateCloudNativeAPIGatewaySpecResponse, DescribeZookeeperServerInterfacesResponse, DeleteCloudNativeAPIGatewayRequest, DescribeOneCloudNativeAPIGatewayServiceResponse, ModifyCloudNativeAPIGatewayServiceRequest, DeleteCloudNativeAPIGatewayResponse, ModifyCloudNativeAPIGatewayResponse, DescribeZookeeperServerInterfacesRequest, DescribeCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayRequest, CreateCloudNativeAPIGatewayCanaryRuleRequest, DeleteCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewaysRequest, DescribeCloudNativeAPIGatewayRoutesRequest, CreateEngineResponse, CreateCloudNativeAPIGatewayServiceRateLimitResponse, ModifyCloudNativeAPIGatewayServiceRateLimitResponse, DescribeNacosServerInterfacesRequest, DescribeSREInstancesResponse, DescribeSREInstancesRequest, CreateNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayServiceRateLimitRequest, DescribeZookeeperReplicasResponse, CreateEngineRequest, ModifyCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRequest, ModifyCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayCanaryRulesRequest, DeleteCloudNativeAPIGatewayCanaryRuleResponse, DescribeCloudNativeAPIGatewayPortsRequest, ModifyNativeGatewayServerGroupResponse } from "./tse_models";
|
|
4
4
|
/**
|
|
5
5
|
* tse client
|
|
6
6
|
* @class
|
|
@@ -8,9 +8,13 @@ import { DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRespons
|
|
|
8
8
|
export declare class Client extends AbstractClient {
|
|
9
9
|
constructor(clientConfig: ClientConfig);
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 查询Nacos类型引擎实例副本信息
|
|
12
12
|
*/
|
|
13
|
-
|
|
13
|
+
DescribeNacosReplicas(req: DescribeNacosReplicasRequest, cb?: (error: string, rep: DescribeNacosReplicasResponse) => void): Promise<DescribeNacosReplicasResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* 修改云原生API网关实例分组基础信息
|
|
16
|
+
*/
|
|
17
|
+
ModifyNativeGatewayServerGroup(req: ModifyNativeGatewayServerGroupRequest, cb?: (error: string, rep: ModifyNativeGatewayServerGroupResponse) => void): Promise<ModifyNativeGatewayServerGroupResponse>;
|
|
14
18
|
/**
|
|
15
19
|
* 删除云原生网关的限流插件(服务)
|
|
16
20
|
*/
|
|
@@ -19,6 +23,10 @@ export declare class Client extends AbstractClient {
|
|
|
19
23
|
* 查询zookeeper服务接口列表
|
|
20
24
|
*/
|
|
21
25
|
DescribeZookeeperServerInterfaces(req: DescribeZookeeperServerInterfacesRequest, cb?: (error: string, rep: DescribeZookeeperServerInterfacesResponse) => void): Promise<DescribeZookeeperServerInterfacesResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* 获取云原生网关服务详情
|
|
28
|
+
*/
|
|
29
|
+
DescribeOneCloudNativeAPIGatewayService(req: DescribeOneCloudNativeAPIGatewayServiceRequest, cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse>;
|
|
22
30
|
/**
|
|
23
31
|
* 修改云原生网关限流插件(服务)
|
|
24
32
|
*/
|
|
@@ -27,6 +35,10 @@ export declare class Client extends AbstractClient {
|
|
|
27
35
|
* 创建引擎实例
|
|
28
36
|
*/
|
|
29
37
|
CreateEngine(req: CreateEngineRequest, cb?: (error: string, rep: CreateEngineResponse) => void): Promise<CreateEngineResponse>;
|
|
38
|
+
/**
|
|
39
|
+
* 修改云原生网关的灰度规则
|
|
40
|
+
*/
|
|
41
|
+
ModifyCloudNativeAPIGatewayCanaryRule(req: ModifyCloudNativeAPIGatewayCanaryRuleRequest, cb?: (error: string, rep: ModifyCloudNativeAPIGatewayCanaryRuleResponse) => void): Promise<ModifyCloudNativeAPIGatewayCanaryRuleResponse>;
|
|
30
42
|
/**
|
|
31
43
|
* 删除云原生网关服务
|
|
32
44
|
*/
|
|
@@ -39,6 +51,10 @@ export declare class Client extends AbstractClient {
|
|
|
39
51
|
* 查询云原生网关路由列表
|
|
40
52
|
*/
|
|
41
53
|
DescribeCloudNativeAPIGatewayRoutes(req: DescribeCloudNativeAPIGatewayRoutesRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRoutesResponse) => void): Promise<DescribeCloudNativeAPIGatewayRoutesResponse>;
|
|
54
|
+
/**
|
|
55
|
+
* 获取云原生API网关实例信息
|
|
56
|
+
*/
|
|
57
|
+
DescribeCloudNativeAPIGateway(req: DescribeCloudNativeAPIGatewayRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayResponse) => void): Promise<DescribeCloudNativeAPIGatewayResponse>;
|
|
42
58
|
/**
|
|
43
59
|
* 获取云原生API网关实例端口信息
|
|
44
60
|
*/
|
|
@@ -55,6 +71,10 @@ export declare class Client extends AbstractClient {
|
|
|
55
71
|
* 删除云原生网关的灰度规则
|
|
56
72
|
*/
|
|
57
73
|
DeleteCloudNativeAPIGatewayCanaryRule(req: DeleteCloudNativeAPIGatewayCanaryRuleRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayCanaryRuleResponse) => void): Promise<DeleteCloudNativeAPIGatewayCanaryRuleResponse>;
|
|
74
|
+
/**
|
|
75
|
+
* 获取云原生API网关实例列表
|
|
76
|
+
*/
|
|
77
|
+
DescribeCloudNativeAPIGateways(req: DescribeCloudNativeAPIGatewaysRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewaysResponse) => void): Promise<DescribeCloudNativeAPIGatewaysResponse>;
|
|
58
78
|
/**
|
|
59
79
|
* 查询云原生网关服务列表
|
|
60
80
|
*/
|
|
@@ -67,10 +87,18 @@ export declare class Client extends AbstractClient {
|
|
|
67
87
|
* 查询nacos服务接口列表
|
|
68
88
|
*/
|
|
69
89
|
DescribeNacosServerInterfaces(req: DescribeNacosServerInterfacesRequest, cb?: (error: string, rep: DescribeNacosServerInterfacesResponse) => void): Promise<DescribeNacosServerInterfacesResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* 修改云原生API网关实例的节点规格信息,比如节点扩缩容或者升降配
|
|
92
|
+
*/
|
|
93
|
+
UpdateCloudNativeAPIGatewaySpec(req: UpdateCloudNativeAPIGatewaySpecRequest, cb?: (error: string, rep: UpdateCloudNativeAPIGatewaySpecResponse) => void): Promise<UpdateCloudNativeAPIGatewaySpecResponse>;
|
|
70
94
|
/**
|
|
71
95
|
* 查询Zookeeper类型注册引擎实例副本信息
|
|
72
96
|
*/
|
|
73
97
|
DescribeZookeeperReplicas(req: DescribeZookeeperReplicasRequest, cb?: (error: string, rep: DescribeZookeeperReplicasResponse) => void): Promise<DescribeZookeeperReplicasResponse>;
|
|
98
|
+
/**
|
|
99
|
+
* 创建云原生API网关实例
|
|
100
|
+
*/
|
|
101
|
+
CreateCloudNativeAPIGateway(req: CreateCloudNativeAPIGatewayRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayResponse) => void): Promise<CreateCloudNativeAPIGatewayResponse>;
|
|
74
102
|
/**
|
|
75
103
|
* 用于查询引擎实例列表
|
|
76
104
|
*/
|
|
@@ -100,17 +128,25 @@ export declare class Client extends AbstractClient {
|
|
|
100
128
|
*/
|
|
101
129
|
UpdateEngineInternetAccess(req: UpdateEngineInternetAccessRequest, cb?: (error: string, rep: UpdateEngineInternetAccessResponse) => void): Promise<UpdateEngineInternetAccessResponse>;
|
|
102
130
|
/**
|
|
103
|
-
*
|
|
131
|
+
* 修改云原生API网关实例基础信息
|
|
104
132
|
*/
|
|
105
|
-
|
|
133
|
+
ModifyCloudNativeAPIGateway(req: ModifyCloudNativeAPIGatewayRequest, cb?: (error: string, rep: ModifyCloudNativeAPIGatewayResponse) => void): Promise<ModifyCloudNativeAPIGatewayResponse>;
|
|
106
134
|
/**
|
|
107
135
|
* 创建云原生网关限流插件(服务)
|
|
108
136
|
*/
|
|
109
137
|
CreateCloudNativeAPIGatewayServiceRateLimit(req: CreateCloudNativeAPIGatewayServiceRateLimitRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayServiceRateLimitResponse) => void): Promise<CreateCloudNativeAPIGatewayServiceRateLimitResponse>;
|
|
138
|
+
/**
|
|
139
|
+
* 删除云原生API网关实例
|
|
140
|
+
*/
|
|
141
|
+
DeleteCloudNativeAPIGateway(req: DeleteCloudNativeAPIGatewayRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayResponse) => void): Promise<DeleteCloudNativeAPIGatewayResponse>;
|
|
110
142
|
/**
|
|
111
143
|
* 创建云原生网关路由
|
|
112
144
|
*/
|
|
113
145
|
CreateCloudNativeAPIGatewayRoute(req: CreateCloudNativeAPIGatewayRouteRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteResponse) => void): Promise<CreateCloudNativeAPIGatewayRouteResponse>;
|
|
146
|
+
/**
|
|
147
|
+
* 创建云原生网关引擎分组
|
|
148
|
+
*/
|
|
149
|
+
CreateNativeGatewayServerGroup(req: CreateNativeGatewayServerGroupRequest, cb?: (error: string, rep: CreateNativeGatewayServerGroupResponse) => void): Promise<CreateNativeGatewayServerGroupResponse>;
|
|
114
150
|
/**
|
|
115
151
|
* 删除云原生网关的限流插件(路由)
|
|
116
152
|
*/
|
|
@@ -119,14 +155,14 @@ export declare class Client extends AbstractClient {
|
|
|
119
155
|
* 创建云原生网关限流插件(路由)
|
|
120
156
|
*/
|
|
121
157
|
CreateCloudNativeAPIGatewayRouteRateLimit(req: CreateCloudNativeAPIGatewayRouteRateLimitRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteRateLimitResponse) => void): Promise<CreateCloudNativeAPIGatewayRouteRateLimitResponse>;
|
|
122
|
-
/**
|
|
123
|
-
* 查询Nacos类型引擎实例副本信息
|
|
124
|
-
*/
|
|
125
|
-
DescribeNacosReplicas(req: DescribeNacosReplicasRequest, cb?: (error: string, rep: DescribeNacosReplicasResponse) => void): Promise<DescribeNacosReplicasResponse>;
|
|
126
158
|
/**
|
|
127
159
|
* 修改云原生网关路由
|
|
128
160
|
*/
|
|
129
161
|
ModifyCloudNativeAPIGatewayRoute(req: ModifyCloudNativeAPIGatewayRouteRequest, cb?: (error: string, rep: ModifyCloudNativeAPIGatewayRouteResponse) => void): Promise<ModifyCloudNativeAPIGatewayRouteResponse>;
|
|
162
|
+
/**
|
|
163
|
+
* 删除网关实例分组
|
|
164
|
+
*/
|
|
165
|
+
DeleteNativeGatewayServerGroup(req: DeleteNativeGatewayServerGroupRequest, cb?: (error: string, rep: DeleteNativeGatewayServerGroupResponse) => void): Promise<DeleteNativeGatewayServerGroupResponse>;
|
|
130
166
|
/**
|
|
131
167
|
* 查询云原生网关灰度规则列表
|
|
132
168
|
*/
|
|
@@ -28,10 +28,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("tse.tencentcloudapi.com", "2020-12-07", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 查询Nacos类型引擎实例副本信息
|
|
32
32
|
*/
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
33
|
+
async DescribeNacosReplicas(req, cb) {
|
|
34
|
+
return this.request("DescribeNacosReplicas", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 修改云原生API网关实例分组基础信息
|
|
38
|
+
*/
|
|
39
|
+
async ModifyNativeGatewayServerGroup(req, cb) {
|
|
40
|
+
return this.request("ModifyNativeGatewayServerGroup", req, cb);
|
|
35
41
|
}
|
|
36
42
|
/**
|
|
37
43
|
* 删除云原生网关的限流插件(服务)
|
|
@@ -45,6 +51,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
45
51
|
async DescribeZookeeperServerInterfaces(req, cb) {
|
|
46
52
|
return this.request("DescribeZookeeperServerInterfaces", req, cb);
|
|
47
53
|
}
|
|
54
|
+
/**
|
|
55
|
+
* 获取云原生网关服务详情
|
|
56
|
+
*/
|
|
57
|
+
async DescribeOneCloudNativeAPIGatewayService(req, cb) {
|
|
58
|
+
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb);
|
|
59
|
+
}
|
|
48
60
|
/**
|
|
49
61
|
* 修改云原生网关限流插件(服务)
|
|
50
62
|
*/
|
|
@@ -57,6 +69,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
57
69
|
async CreateEngine(req, cb) {
|
|
58
70
|
return this.request("CreateEngine", req, cb);
|
|
59
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* 修改云原生网关的灰度规则
|
|
74
|
+
*/
|
|
75
|
+
async ModifyCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
76
|
+
return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
77
|
+
}
|
|
60
78
|
/**
|
|
61
79
|
* 删除云原生网关服务
|
|
62
80
|
*/
|
|
@@ -75,6 +93,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
75
93
|
async DescribeCloudNativeAPIGatewayRoutes(req, cb) {
|
|
76
94
|
return this.request("DescribeCloudNativeAPIGatewayRoutes", req, cb);
|
|
77
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* 获取云原生API网关实例信息
|
|
98
|
+
*/
|
|
99
|
+
async DescribeCloudNativeAPIGateway(req, cb) {
|
|
100
|
+
return this.request("DescribeCloudNativeAPIGateway", req, cb);
|
|
101
|
+
}
|
|
78
102
|
/**
|
|
79
103
|
* 获取云原生API网关实例端口信息
|
|
80
104
|
*/
|
|
@@ -99,6 +123,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
99
123
|
async DeleteCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
100
124
|
return this.request("DeleteCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
101
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* 获取云原生API网关实例列表
|
|
128
|
+
*/
|
|
129
|
+
async DescribeCloudNativeAPIGateways(req, cb) {
|
|
130
|
+
return this.request("DescribeCloudNativeAPIGateways", req, cb);
|
|
131
|
+
}
|
|
102
132
|
/**
|
|
103
133
|
* 查询云原生网关服务列表
|
|
104
134
|
*/
|
|
@@ -117,12 +147,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
117
147
|
async DescribeNacosServerInterfaces(req, cb) {
|
|
118
148
|
return this.request("DescribeNacosServerInterfaces", req, cb);
|
|
119
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* 修改云原生API网关实例的节点规格信息,比如节点扩缩容或者升降配
|
|
152
|
+
*/
|
|
153
|
+
async UpdateCloudNativeAPIGatewaySpec(req, cb) {
|
|
154
|
+
return this.request("UpdateCloudNativeAPIGatewaySpec", req, cb);
|
|
155
|
+
}
|
|
120
156
|
/**
|
|
121
157
|
* 查询Zookeeper类型注册引擎实例副本信息
|
|
122
158
|
*/
|
|
123
159
|
async DescribeZookeeperReplicas(req, cb) {
|
|
124
160
|
return this.request("DescribeZookeeperReplicas", req, cb);
|
|
125
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* 创建云原生API网关实例
|
|
164
|
+
*/
|
|
165
|
+
async CreateCloudNativeAPIGateway(req, cb) {
|
|
166
|
+
return this.request("CreateCloudNativeAPIGateway", req, cb);
|
|
167
|
+
}
|
|
126
168
|
/**
|
|
127
169
|
* 用于查询引擎实例列表
|
|
128
170
|
*/
|
|
@@ -166,10 +208,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
166
208
|
return this.request("UpdateEngineInternetAccess", req, cb);
|
|
167
209
|
}
|
|
168
210
|
/**
|
|
169
|
-
*
|
|
211
|
+
* 修改云原生API网关实例基础信息
|
|
170
212
|
*/
|
|
171
|
-
async
|
|
172
|
-
return this.request("
|
|
213
|
+
async ModifyCloudNativeAPIGateway(req, cb) {
|
|
214
|
+
return this.request("ModifyCloudNativeAPIGateway", req, cb);
|
|
173
215
|
}
|
|
174
216
|
/**
|
|
175
217
|
* 创建云原生网关限流插件(服务)
|
|
@@ -177,12 +219,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
177
219
|
async CreateCloudNativeAPIGatewayServiceRateLimit(req, cb) {
|
|
178
220
|
return this.request("CreateCloudNativeAPIGatewayServiceRateLimit", req, cb);
|
|
179
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* 删除云原生API网关实例
|
|
224
|
+
*/
|
|
225
|
+
async DeleteCloudNativeAPIGateway(req, cb) {
|
|
226
|
+
return this.request("DeleteCloudNativeAPIGateway", req, cb);
|
|
227
|
+
}
|
|
180
228
|
/**
|
|
181
229
|
* 创建云原生网关路由
|
|
182
230
|
*/
|
|
183
231
|
async CreateCloudNativeAPIGatewayRoute(req, cb) {
|
|
184
232
|
return this.request("CreateCloudNativeAPIGatewayRoute", req, cb);
|
|
185
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 创建云原生网关引擎分组
|
|
236
|
+
*/
|
|
237
|
+
async CreateNativeGatewayServerGroup(req, cb) {
|
|
238
|
+
return this.request("CreateNativeGatewayServerGroup", req, cb);
|
|
239
|
+
}
|
|
186
240
|
/**
|
|
187
241
|
* 删除云原生网关的限流插件(路由)
|
|
188
242
|
*/
|
|
@@ -195,18 +249,18 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
195
249
|
async CreateCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
196
250
|
return this.request("CreateCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
197
251
|
}
|
|
198
|
-
/**
|
|
199
|
-
* 查询Nacos类型引擎实例副本信息
|
|
200
|
-
*/
|
|
201
|
-
async DescribeNacosReplicas(req, cb) {
|
|
202
|
-
return this.request("DescribeNacosReplicas", req, cb);
|
|
203
|
-
}
|
|
204
252
|
/**
|
|
205
253
|
* 修改云原生网关路由
|
|
206
254
|
*/
|
|
207
255
|
async ModifyCloudNativeAPIGatewayRoute(req, cb) {
|
|
208
256
|
return this.request("ModifyCloudNativeAPIGatewayRoute", req, cb);
|
|
209
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* 删除网关实例分组
|
|
260
|
+
*/
|
|
261
|
+
async DeleteNativeGatewayServerGroup(req, cb) {
|
|
262
|
+
return this.request("DeleteNativeGatewayServerGroup", req, cb);
|
|
263
|
+
}
|
|
210
264
|
/**
|
|
211
265
|
* 查询云原生网关灰度规则列表
|
|
212
266
|
*/
|