tencentcloud-sdk-nodejs 4.0.637 → 4.0.638
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 +268 -0
- package/SERVICE_CHANGELOG.md +355 -97
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +4 -2
- package/src/services/cls/v20201016/cls_client.ts +62 -11
- package/src/services/cls/v20201016/cls_models.ts +331 -55
- package/src/services/cpdp/v20190820/cpdp_client.ts +1 -1
- package/src/services/dnspod/v20210323/dnspod_client.ts +2 -0
- package/src/services/dnspod/v20210323/dnspod_models.ts +55 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +4 -3
- package/src/services/lcic/v20220817/lcic_models.ts +14 -0
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +3 -6
- package/src/services/soe/v20180724/soe_client.ts +1 -0
- package/src/services/soe/v20180724/soe_models.ts +35 -9
- package/src/services/tdmq/v20200217/tdmq_client.ts +12 -0
- package/src/services/tdmq/v20200217/tdmq_models.ts +30 -0
- package/src/services/trp/v20210515/trp_models.ts +9 -1
- package/src/services/tse/v20201207/tse_client.ts +324 -55
- package/src/services/tse/v20201207/tse_models.ts +1931 -522
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +3 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +3 -1
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +19 -3
- package/tencentcloud/services/cls/v20201016/cls_client.js +27 -3
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +320 -55
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +1 -1
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +1 -1
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +53 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +4 -3
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +14 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +3 -6
- package/tencentcloud/services/soe/v20180724/soe_models.d.ts +34 -9
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +28 -0
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +9 -1
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +95 -11
- package/tencentcloud/services/tse/v20201207/tse_client.js +141 -15
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +1863 -513
- package/test/cls.v20201016.test.js +42 -2
- package/test/tdmq.v20200217.test.js +10 -0
- package/test/tse.v20201207.test.js +220 -10
|
@@ -28,10 +28,58 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
28
28
|
super("tse.tencentcloudapi.com", "2020-12-07", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 获取云原生网关服务详情
|
|
32
32
|
*/
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
33
|
+
async DescribeOneCloudNativeAPIGatewayService(req, cb) {
|
|
34
|
+
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 删除云原生网关的限流插件(服务)
|
|
38
|
+
*/
|
|
39
|
+
async DeleteCloudNativeAPIGatewayServiceRateLimit(req, cb) {
|
|
40
|
+
return this.request("DeleteCloudNativeAPIGatewayServiceRateLimit", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 查询zookeeper服务接口列表
|
|
44
|
+
*/
|
|
45
|
+
async DescribeZookeeperServerInterfaces(req, cb) {
|
|
46
|
+
return this.request("DescribeZookeeperServerInterfaces", req, cb);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 修改云原生网关限流插件(服务)
|
|
50
|
+
*/
|
|
51
|
+
async ModifyCloudNativeAPIGatewayServiceRateLimit(req, cb) {
|
|
52
|
+
return this.request("ModifyCloudNativeAPIGatewayServiceRateLimit", req, cb);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* 创建引擎实例
|
|
56
|
+
*/
|
|
57
|
+
async CreateEngine(req, cb) {
|
|
58
|
+
return this.request("CreateEngine", req, cb);
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* 删除云原生网关服务
|
|
62
|
+
*/
|
|
63
|
+
async DeleteCloudNativeAPIGatewayService(req, cb) {
|
|
64
|
+
return this.request("DeleteCloudNativeAPIGatewayService", req, cb);
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 创建云原生网关服务
|
|
68
|
+
*/
|
|
69
|
+
async CreateCloudNativeAPIGatewayService(req, cb) {
|
|
70
|
+
return this.request("CreateCloudNativeAPIGatewayService", req, cb);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* 查询云原生网关路由列表
|
|
74
|
+
*/
|
|
75
|
+
async DescribeCloudNativeAPIGatewayRoutes(req, cb) {
|
|
76
|
+
return this.request("DescribeCloudNativeAPIGatewayRoutes", req, cb);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* 删除云原生网关路由
|
|
80
|
+
*/
|
|
81
|
+
async DeleteCloudNativeAPIGatewayRoute(req, cb) {
|
|
82
|
+
return this.request("DeleteCloudNativeAPIGatewayRoute", req, cb);
|
|
35
83
|
}
|
|
36
84
|
/**
|
|
37
85
|
* 删除引擎实例
|
|
@@ -39,6 +87,36 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
39
87
|
async DeleteEngine(req, cb) {
|
|
40
88
|
return this.request("DeleteEngine", req, cb);
|
|
41
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* 删除云原生网关的灰度规则
|
|
92
|
+
*/
|
|
93
|
+
async DeleteCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
94
|
+
return this.request("DeleteCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* 查询云原生网关服务列表
|
|
98
|
+
*/
|
|
99
|
+
async DescribeCloudNativeAPIGatewayServices(req, cb) {
|
|
100
|
+
return this.request("DescribeCloudNativeAPIGatewayServices", req, cb);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* 修改云原生网关限流插件(路由)
|
|
104
|
+
*/
|
|
105
|
+
async ModifyCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
106
|
+
return this.request("ModifyCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* 查询nacos服务接口列表
|
|
110
|
+
*/
|
|
111
|
+
async DescribeNacosServerInterfaces(req, cb) {
|
|
112
|
+
return this.request("DescribeNacosServerInterfaces", req, cb);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* 查询Zookeeper类型注册引擎实例副本信息
|
|
116
|
+
*/
|
|
117
|
+
async DescribeZookeeperReplicas(req, cb) {
|
|
118
|
+
return this.request("DescribeZookeeperReplicas", req, cb);
|
|
119
|
+
}
|
|
42
120
|
/**
|
|
43
121
|
* 用于查询引擎实例列表
|
|
44
122
|
*/
|
|
@@ -46,10 +124,22 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
46
124
|
return this.request("DescribeSREInstances", req, cb);
|
|
47
125
|
}
|
|
48
126
|
/**
|
|
49
|
-
*
|
|
127
|
+
* 查询云原生网关的限流插件(服务)
|
|
50
128
|
*/
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
129
|
+
async DescribeCloudNativeAPIGatewayServiceRateLimit(req, cb) {
|
|
130
|
+
return this.request("DescribeCloudNativeAPIGatewayServiceRateLimit", req, cb);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* 查询云原生网关的限流插件(路由)
|
|
134
|
+
*/
|
|
135
|
+
async DescribeCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
136
|
+
return this.request("DescribeCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* 修改云原生网关服务
|
|
140
|
+
*/
|
|
141
|
+
async ModifyCloudNativeAPIGatewayService(req, cb) {
|
|
142
|
+
return this.request("ModifyCloudNativeAPIGatewayService", req, cb);
|
|
53
143
|
}
|
|
54
144
|
/**
|
|
55
145
|
* 获取云原生网关节点列表
|
|
@@ -58,10 +148,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
58
148
|
return this.request("DescribeCloudNativeAPIGatewayNodes", req, cb);
|
|
59
149
|
}
|
|
60
150
|
/**
|
|
61
|
-
*
|
|
151
|
+
* 创建云原生网关的灰度规则
|
|
62
152
|
*/
|
|
63
|
-
async
|
|
64
|
-
return this.request("
|
|
153
|
+
async CreateCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
154
|
+
return this.request("CreateCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
65
155
|
}
|
|
66
156
|
/**
|
|
67
157
|
* 修改引擎公网访问配置
|
|
@@ -70,16 +160,52 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
70
160
|
return this.request("UpdateEngineInternetAccess", req, cb);
|
|
71
161
|
}
|
|
72
162
|
/**
|
|
73
|
-
*
|
|
163
|
+
* 修改云原生网关的灰度规则
|
|
74
164
|
*/
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
165
|
+
async ModifyCloudNativeAPIGatewayCanaryRule(req, cb) {
|
|
166
|
+
return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb);
|
|
77
167
|
}
|
|
78
168
|
/**
|
|
79
|
-
*
|
|
169
|
+
* 创建云原生网关限流插件(服务)
|
|
80
170
|
*/
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
171
|
+
async CreateCloudNativeAPIGatewayServiceRateLimit(req, cb) {
|
|
172
|
+
return this.request("CreateCloudNativeAPIGatewayServiceRateLimit", req, cb);
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* 创建云原生网关路由
|
|
176
|
+
*/
|
|
177
|
+
async CreateCloudNativeAPIGatewayRoute(req, cb) {
|
|
178
|
+
return this.request("CreateCloudNativeAPIGatewayRoute", req, cb);
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* 删除云原生网关的限流插件(路由)
|
|
182
|
+
*/
|
|
183
|
+
async DeleteCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
184
|
+
return this.request("DeleteCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* 创建云原生网关限流插件(路由)
|
|
188
|
+
*/
|
|
189
|
+
async CreateCloudNativeAPIGatewayRouteRateLimit(req, cb) {
|
|
190
|
+
return this.request("CreateCloudNativeAPIGatewayRouteRateLimit", req, cb);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* 查询Nacos类型引擎实例副本信息
|
|
194
|
+
*/
|
|
195
|
+
async DescribeNacosReplicas(req, cb) {
|
|
196
|
+
return this.request("DescribeNacosReplicas", req, cb);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* 修改云原生网关路由
|
|
200
|
+
*/
|
|
201
|
+
async ModifyCloudNativeAPIGatewayRoute(req, cb) {
|
|
202
|
+
return this.request("ModifyCloudNativeAPIGatewayRoute", req, cb);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* 查询云原生网关灰度规则列表
|
|
206
|
+
*/
|
|
207
|
+
async DescribeCloudNativeAPIGatewayCanaryRules(req, cb) {
|
|
208
|
+
return this.request("DescribeCloudNativeAPIGatewayCanaryRules", req, cb);
|
|
83
209
|
}
|
|
84
210
|
/**
|
|
85
211
|
* 查询引擎实例访问地址
|