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.
Files changed (45) hide show
  1. package/CHANGELOG.md +268 -0
  2. package/SERVICE_CHANGELOG.md +355 -97
  3. package/package.json +1 -1
  4. package/products.md +14 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/apigateway/v20180808/apigateway_client.ts +4 -2
  7. package/src/services/cls/v20201016/cls_client.ts +62 -11
  8. package/src/services/cls/v20201016/cls_models.ts +331 -55
  9. package/src/services/cpdp/v20190820/cpdp_client.ts +1 -1
  10. package/src/services/dnspod/v20210323/dnspod_client.ts +2 -0
  11. package/src/services/dnspod/v20210323/dnspod_models.ts +55 -0
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +4 -3
  13. package/src/services/lcic/v20220817/lcic_models.ts +14 -0
  14. package/src/services/lighthouse/v20200324/lighthouse_models.ts +3 -6
  15. package/src/services/soe/v20180724/soe_client.ts +1 -0
  16. package/src/services/soe/v20180724/soe_models.ts +35 -9
  17. package/src/services/tdmq/v20200217/tdmq_client.ts +12 -0
  18. package/src/services/tdmq/v20200217/tdmq_models.ts +30 -0
  19. package/src/services/trp/v20210515/trp_models.ts +9 -1
  20. package/src/services/tse/v20201207/tse_client.ts +324 -55
  21. package/src/services/tse/v20201207/tse_models.ts +1931 -522
  22. package/tencentcloud/common/sdk_version.d.ts +1 -1
  23. package/tencentcloud/common/sdk_version.js +1 -1
  24. package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +3 -1
  25. package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +3 -1
  26. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +19 -3
  27. package/tencentcloud/services/cls/v20201016/cls_client.js +27 -3
  28. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +320 -55
  29. package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +1 -1
  30. package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +1 -1
  31. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +53 -0
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +4 -3
  33. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +14 -0
  34. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +3 -6
  35. package/tencentcloud/services/soe/v20180724/soe_models.d.ts +34 -9
  36. package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +5 -1
  37. package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +6 -0
  38. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +28 -0
  39. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +9 -1
  40. package/tencentcloud/services/tse/v20201207/tse_client.d.ts +95 -11
  41. package/tencentcloud/services/tse/v20201207/tse_client.js +141 -15
  42. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +1863 -513
  43. package/test/cls.v20201016.test.js +42 -2
  44. package/test/tdmq.v20200217.test.js +10 -0
  45. package/test/tse.v20201207.test.js +220 -10
@@ -3297,14 +3297,11 @@ export interface LoginConfiguration {
3297
3297
  * <li>"YES"代表选择自动生成密码,这时不指定Password字段。</li>
3298
3298
  <li>"NO"代表选择自定义密码,这时要指定Password字段。</li>
3299
3299
  */
3300
- AutoGeneratePassword: string
3300
+ AutoGeneratePassword?: string
3301
3301
  /**
3302
3302
  * 实例登录密码。具体按照操作系统的复杂度要求。
3303
- WINDOWS 实例密码必须 12-30 位,不能以“/”开头且不包括用户名, 至少包含以下字符中的三种不同字符
3304
- <li>小写字母:[a-z]</li>
3305
- <li>大写字母:[A-Z]</li>
3306
- <li>数字: 0-9</li>
3307
- <li>特殊字符:()`~!@#$%^&*-+=_|{}[]:;' <>,.?/</li>
3303
+ `LINUX_UNIX` 实例密码必须 8-30 位,推荐使用 12 位以上密码,不能包含空格, 不能以“/”开头,至少包含以下字符中的三种不同字符,字符种类:<br><li>小写字母:[a-z]<br><li>大写字母:[A-Z]<br><li>数字:0-9<br><li>特殊字符: ()\`\~!@#$%^&\*-+=\_|{}[]:;' <>,.?/</li>
3304
+ `WINDOWS` 实例密码必须 12-30 位,不能包含空格, 不能以“/”开头且不包括用户名,至少包含以下字符中的三种不同字符<br><li>小写字母:[a-z]<br><li>大写字母:[A-Z]<br><li>数字: 0-9<br><li>特殊字符:()\`~!@#$%^&\*-+=\_|{}[]:;' <>,.?/
3308
3305
  */
3309
3306
  Password?: string
3310
3307
  }
@@ -19,6 +19,7 @@ import { AbstractClient } from "../../../common/abstract_client"
19
19
  import { ClientConfig } from "../../../common/interface"
20
20
  import {
21
21
  SentenceInfo,
22
+ Tone,
22
23
  InitOralProcessRequest,
23
24
  Keyword,
24
25
  KeywordEvaluateRequest,
@@ -60,6 +60,27 @@ export interface SentenceInfo {
60
60
  UnKeyWordHits: Array<number>
61
61
  }
62
62
 
63
+ /**
64
+ * 中文声调检测结果
65
+ */
66
+ export interface Tone {
67
+ /**
68
+ * 检测结果是否有效
69
+ 注意:此字段可能返回 null,表示取不到有效值。
70
+ */
71
+ Valid?: boolean
72
+ /**
73
+ * 文本标准声调,数值范围[-1,1,2,3,4]
74
+ 注意:此字段可能返回 null,表示取不到有效值。
75
+ */
76
+ RefTone?: number
77
+ /**
78
+ * 实际发音声调,数值范围[-1,1,2,3,4]
79
+ 注意:此字段可能返回 null,表示取不到有效值。
80
+ */
81
+ HypothesisTone?: number
82
+ }
83
+
63
84
  /**
64
85
  * InitOralProcess请求参数结构体
65
86
  */
@@ -417,40 +438,45 @@ export interface WordRsp {
417
438
  /**
418
439
  * 当前单词语音起始时间点,单位为ms,该字段段落模式下无意义。
419
440
  */
420
- MemBeginTime: number
441
+ MemBeginTime?: number
421
442
  /**
422
443
  * 当前单词语音终止时间点,单位为ms,该字段段落模式下无意义。
423
444
  */
424
- MemEndTime: number
445
+ MemEndTime?: number
425
446
  /**
426
447
  * 单词发音准确度,取值范围[-1, 100],当取-1时指完全不匹配
427
448
  */
428
- PronAccuracy: number
449
+ PronAccuracy?: number
429
450
  /**
430
451
  * 单词发音流利度,取值范围[0, 1]
431
452
  */
432
- PronFluency: number
453
+ PronFluency?: number
433
454
  /**
434
455
  * 当前词
435
456
  */
436
- Word: string
457
+ Word?: string
437
458
  /**
438
459
  * 当前词与输入语句的匹配情况,0:匹配单词、1:新增单词、2:缺少单词、3:错读的词、4:未录入单词。
439
460
  */
440
- MatchTag: number
461
+ MatchTag?: number
441
462
  /**
442
463
  * 音节评估详情
443
464
  */
444
- PhoneInfos: Array<PhoneInfo>
465
+ PhoneInfos?: Array<PhoneInfo>
445
466
  /**
446
467
  * 参考词,目前为保留字段。
447
468
  */
448
- ReferenceWord: string
469
+ ReferenceWord?: string
449
470
  /**
450
471
  * 主题词命中标志,0表示没命中,1表示命中
451
472
  注意:此字段可能返回 null,表示取不到有效值。
452
473
  */
453
- KeywordTag: number
474
+ KeywordTag?: number
475
+ /**
476
+ * 声调检测结果
477
+ 注意:此字段可能返回 null,表示取不到有效值。
478
+ */
479
+ Tone?: Tone
454
480
  }
455
481
 
456
482
  /**
@@ -305,6 +305,7 @@ import {
305
305
  RabbitMQClusterSpecInfo,
306
306
  RabbitMQPrivateNode,
307
307
  DeleteCmqSubscribeResponse,
308
+ DeleteRabbitMQVipInstanceRequest,
308
309
  DescribePublisherSummaryRequest,
309
310
  DeleteSubscriptionsRequest,
310
311
  SendCmqMsgRequest,
@@ -319,6 +320,7 @@ import {
319
320
  ModifyRocketMQNamespaceRequest,
320
321
  DeleteAMQPVHostResponse,
321
322
  DeleteAMQPVHostRequest,
323
+ DeleteRabbitMQVipInstanceResponse,
322
324
  DescribeAllTenantsRequest,
323
325
  DescribeRabbitMQVirtualHostRequest,
324
326
  } from "./tdmq_models"
@@ -1449,6 +1451,16 @@ BatchReceivePolicy 的接口会一次性返回多条消息:
1449
1451
  return this.request("DescribePulsarProInstances", req, cb)
1450
1452
  }
1451
1453
 
1454
+ /**
1455
+ * 删除RabbitMQ专享版实例
1456
+ */
1457
+ async DeleteRabbitMQVipInstance(
1458
+ req: DeleteRabbitMQVipInstanceRequest,
1459
+ cb?: (error: string, rep: DeleteRabbitMQVipInstanceResponse) => void
1460
+ ): Promise<DeleteRabbitMQVipInstanceResponse> {
1461
+ return this.request("DeleteRabbitMQVipInstance", req, cb)
1462
+ }
1463
+
1452
1464
  /**
1453
1465
  * 产品下线了,对应的接口也要下线。
1454
1466
 
@@ -7217,6 +7217,16 @@ export interface DeleteCmqSubscribeResponse {
7217
7217
  RequestId?: string
7218
7218
  }
7219
7219
 
7220
+ /**
7221
+ * DeleteRabbitMQVipInstance请求参数结构体
7222
+ */
7223
+ export interface DeleteRabbitMQVipInstanceRequest {
7224
+ /**
7225
+ * 实例Id
7226
+ */
7227
+ InstanceId: string
7228
+ }
7229
+
7220
7230
  /**
7221
7231
  * DescribePublisherSummary请求参数结构体
7222
7232
  */
@@ -7548,6 +7558,26 @@ export interface DeleteAMQPVHostRequest {
7548
7558
  VHostId: string
7549
7559
  }
7550
7560
 
7561
+ /**
7562
+ * DeleteRabbitMQVipInstance返回参数结构体
7563
+ */
7564
+ export interface DeleteRabbitMQVipInstanceResponse {
7565
+ /**
7566
+ * 订单号Id
7567
+ 注意:此字段可能返回 null,表示取不到有效值。
7568
+ */
7569
+ TranId?: string
7570
+ /**
7571
+ * 实例Id
7572
+ 注意:此字段可能返回 null,表示取不到有效值。
7573
+ */
7574
+ InstanceId?: string
7575
+ /**
7576
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7577
+ */
7578
+ RequestId?: string
7579
+ }
7580
+
7551
7581
  /**
7552
7582
  * DescribeAllTenants请求参数结构体
7553
7583
  */
@@ -1848,7 +1848,7 @@ export interface DescribeRawScanLogsRequest {
1848
1848
  */
1849
1849
  CorpId?: number
1850
1850
  /**
1851
- * 分页数量,默认为 100,最大为 1000
1851
+ * 分页数量,默认为 20,最大为 1000
1852
1852
  */
1853
1853
  PageSize?: number
1854
1854
  /**
@@ -1860,6 +1860,14 @@ export interface DescribeRawScanLogsRequest {
1860
1860
  即: LogId > $AfterLogId
1861
1861
  */
1862
1862
  AfterLogId?: number
1863
+ /**
1864
+ * 开始时间 >= StartTime
1865
+ */
1866
+ StartTime?: string
1867
+ /**
1868
+ * 结束时间 < EndTime
1869
+ */
1870
+ EndTime?: string
1863
1871
  }
1864
1872
 
1865
1873
  /**
@@ -18,46 +18,105 @@
18
18
  import { AbstractClient } from "../../../common/abstract_client"
19
19
  import { ClientConfig } from "../../../common/interface"
20
20
  import {
21
- NacosReplica,
22
21
  DescribeNacosReplicasRequest,
23
- UpdateEngineInternetAccessRequest,
22
+ CreateCloudNativeAPIGatewayServiceResponse,
23
+ DeleteCloudNativeAPIGatewayRouteRateLimitResponse,
24
24
  ApolloEnvParam,
25
- UpdateEngineInternetAccessResponse,
25
+ DescribeCloudNativeAPIGatewayServiceRateLimitRequest,
26
+ CloudNativeAPIGatewayBalancedService,
27
+ DescribeCloudNativeAPIGatewayNodesRequest,
28
+ ModifyCloudNativeAPIGatewayRouteRequest,
29
+ DescribeSREInstanceAccessAddressResponse,
30
+ DeleteCloudNativeAPIGatewayCanaryRuleRequest,
31
+ DescribeCloudNativeAPIGatewayServicesResponse,
32
+ QpsThreshold,
33
+ ModifyCloudNativeAPIGatewayServiceResponse,
34
+ DescribeCloudNativeAPIGatewayNodesResponse,
35
+ VpcInfo,
36
+ ModifyCloudNativeAPIGatewayCanaryRuleResponse,
37
+ KongServicePreview,
38
+ ModifyCloudNativeAPIGatewayRouteRateLimitRequest,
39
+ NacosServerInterface,
40
+ CreateCloudNativeAPIGatewayServiceRequest,
41
+ ExternalRedis,
42
+ EnvAddressInfo,
43
+ InstanceTagInfo,
44
+ DescribeCloudNativeAPIGatewayServicesRequest,
45
+ NacosReplica,
46
+ UpdateEngineInternetAccessRequest,
47
+ CreateCloudNativeAPIGatewayCanaryRuleResponse,
48
+ CreateCloudNativeAPIGatewayRouteRequest,
26
49
  KVPair,
27
50
  DeleteEngineResponse,
28
- CreateEngineResponse,
51
+ DescribeCloudNativeAPIGatewayRoutesResponse,
29
52
  DescribeZookeeperReplicasRequest,
53
+ DeleteCloudNativeAPIGatewayServiceResponse,
54
+ DeleteCloudNativeAPIGatewayRouteResponse,
55
+ CreateCloudNativeAPIGatewayRouteRateLimitRequest,
56
+ ModifyCloudNativeAPIGatewayRouteResponse,
57
+ ServiceGovernanceInfo,
58
+ DescribeNacosReplicasResponse,
59
+ DeleteCloudNativeAPIGatewayServiceRateLimitRequest,
60
+ CloudAPIGatewayCanaryRuleList,
61
+ KongRoutePreview,
62
+ CloudNativeAPIGatewayRateLimitDetail,
63
+ CreateCloudNativeAPIGatewayRouteResponse,
64
+ DescribeInstanceRegionInfo,
65
+ KongTarget,
66
+ EngineRegionInfo,
67
+ DescribeNacosServerInterfacesResponse,
68
+ KVMapping,
69
+ RateLimitResponse,
70
+ DescribeCloudNativeAPIGatewayServiceRateLimitResponse,
71
+ DeleteCloudNativeAPIGatewayServiceRequest,
72
+ EnvInfo,
73
+ DescribeCloudNativeAPIGatewayRouteRateLimitRequest,
74
+ DescribeOneCloudNativeAPIGatewayServiceRequest,
75
+ CreateCloudNativeAPIGatewayRouteRateLimitResponse,
76
+ UpdateEngineInternetAccessResponse,
77
+ DeleteCloudNativeAPIGatewayRouteRateLimitRequest,
78
+ ListFilter,
30
79
  DeleteEngineRequest,
31
- DescribeCloudNativeAPIGatewayNodesRequest,
32
- DescribeCloudNativeAPIGatewayNodesResult,
33
80
  ZookeeperReplica,
34
- EngineRegionInfo,
35
- DescribeNacosServerInterfacesRequest,
81
+ DescribeCloudNativeAPIGatewayCanaryRulesResponse,
36
82
  SREInstance,
37
- DescribeSREInstanceAccessAddressResponse,
38
- DescribeSREInstancesResponse,
39
- ZookeeperServerInterface,
40
- ServiceGovernanceInfo,
83
+ DeleteCloudNativeAPIGatewayServiceRateLimitResponse,
84
+ ModifyCloudNativeAPIGatewayServiceRateLimitRequest,
41
85
  CloudNativeAPIGatewayNode,
42
- DescribeNacosReplicasResponse,
43
86
  DescribeZookeeperServerInterfacesResponse,
87
+ Filter,
88
+ PolarisLimiterAddress,
89
+ DescribeOneCloudNativeAPIGatewayServiceResponse,
90
+ ModifyCloudNativeAPIGatewayServiceRequest,
91
+ KongServices,
92
+ DescribeZookeeperServerInterfacesRequest,
93
+ DescribeCloudNativeAPIGatewayRouteRateLimitResponse,
94
+ CreateCloudNativeAPIGatewayCanaryRuleRequest,
95
+ DeleteCloudNativeAPIGatewayRouteRequest,
96
+ DescribeCloudNativeAPIGatewayRoutesRequest,
97
+ CreateEngineResponse,
98
+ CreateCloudNativeAPIGatewayServiceRateLimitResponse,
99
+ DescribeCloudNativeAPIGatewayNodesResult,
100
+ CloudNativeAPIGatewayCanaryRule,
101
+ ModifyCloudNativeAPIGatewayServiceRateLimitResponse,
102
+ DescribeNacosServerInterfacesRequest,
103
+ CloudNativeAPIGatewayCanaryRuleCondition,
104
+ DescribeSREInstancesResponse,
105
+ ZookeeperServerInterface,
44
106
  BoundK8SInfo,
107
+ KongUpstreamInfo,
45
108
  DescribeSREInstancesRequest,
46
- DescribeCloudNativeAPIGatewayNodesResponse,
109
+ CreateCloudNativeAPIGatewayServiceRateLimitRequest,
47
110
  DescribeZookeeperReplicasResponse,
48
- VpcInfo,
49
- EngineAdmin,
50
- PolarisLimiterAddress,
51
111
  CreateEngineRequest,
52
- DescribeInstanceRegionInfo,
112
+ ModifyCloudNativeAPIGatewayCanaryRuleRequest,
113
+ KongServiceRouteList,
53
114
  DescribeSREInstanceAccessAddressRequest,
54
- DescribeNacosServerInterfacesResponse,
55
- Filter,
56
- NacosServerInterface,
57
- DescribeZookeeperServerInterfacesRequest,
58
- EnvInfo,
59
- EnvAddressInfo,
60
- InstanceTagInfo,
115
+ ModifyCloudNativeAPIGatewayRouteRateLimitResponse,
116
+ EngineAdmin,
117
+ DescribeCloudNativeAPIGatewayCanaryRulesRequest,
118
+ DeleteCloudNativeAPIGatewayCanaryRuleResponse,
119
+ KongServiceDetail,
61
120
  } from "./tse_models"
62
121
 
63
122
  /**
@@ -70,13 +129,93 @@ export class Client extends AbstractClient {
70
129
  }
71
130
 
72
131
  /**
73
- * 查询Zookeeper类型注册引擎实例副本信息
132
+ * 获取云原生网关服务详情
74
133
  */
75
- async DescribeZookeeperReplicas(
76
- req: DescribeZookeeperReplicasRequest,
77
- cb?: (error: string, rep: DescribeZookeeperReplicasResponse) => void
78
- ): Promise<DescribeZookeeperReplicasResponse> {
79
- return this.request("DescribeZookeeperReplicas", req, cb)
134
+ async DescribeOneCloudNativeAPIGatewayService(
135
+ req: DescribeOneCloudNativeAPIGatewayServiceRequest,
136
+ cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void
137
+ ): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse> {
138
+ return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb)
139
+ }
140
+
141
+ /**
142
+ * 删除云原生网关的限流插件(服务)
143
+ */
144
+ async DeleteCloudNativeAPIGatewayServiceRateLimit(
145
+ req: DeleteCloudNativeAPIGatewayServiceRateLimitRequest,
146
+ cb?: (error: string, rep: DeleteCloudNativeAPIGatewayServiceRateLimitResponse) => void
147
+ ): Promise<DeleteCloudNativeAPIGatewayServiceRateLimitResponse> {
148
+ return this.request("DeleteCloudNativeAPIGatewayServiceRateLimit", req, cb)
149
+ }
150
+
151
+ /**
152
+ * 查询zookeeper服务接口列表
153
+ */
154
+ async DescribeZookeeperServerInterfaces(
155
+ req: DescribeZookeeperServerInterfacesRequest,
156
+ cb?: (error: string, rep: DescribeZookeeperServerInterfacesResponse) => void
157
+ ): Promise<DescribeZookeeperServerInterfacesResponse> {
158
+ return this.request("DescribeZookeeperServerInterfaces", req, cb)
159
+ }
160
+
161
+ /**
162
+ * 修改云原生网关限流插件(服务)
163
+ */
164
+ async ModifyCloudNativeAPIGatewayServiceRateLimit(
165
+ req: ModifyCloudNativeAPIGatewayServiceRateLimitRequest,
166
+ cb?: (error: string, rep: ModifyCloudNativeAPIGatewayServiceRateLimitResponse) => void
167
+ ): Promise<ModifyCloudNativeAPIGatewayServiceRateLimitResponse> {
168
+ return this.request("ModifyCloudNativeAPIGatewayServiceRateLimit", req, cb)
169
+ }
170
+
171
+ /**
172
+ * 创建引擎实例
173
+ */
174
+ async CreateEngine(
175
+ req: CreateEngineRequest,
176
+ cb?: (error: string, rep: CreateEngineResponse) => void
177
+ ): Promise<CreateEngineResponse> {
178
+ return this.request("CreateEngine", req, cb)
179
+ }
180
+
181
+ /**
182
+ * 删除云原生网关服务
183
+ */
184
+ async DeleteCloudNativeAPIGatewayService(
185
+ req: DeleteCloudNativeAPIGatewayServiceRequest,
186
+ cb?: (error: string, rep: DeleteCloudNativeAPIGatewayServiceResponse) => void
187
+ ): Promise<DeleteCloudNativeAPIGatewayServiceResponse> {
188
+ return this.request("DeleteCloudNativeAPIGatewayService", req, cb)
189
+ }
190
+
191
+ /**
192
+ * 创建云原生网关服务
193
+ */
194
+ async CreateCloudNativeAPIGatewayService(
195
+ req: CreateCloudNativeAPIGatewayServiceRequest,
196
+ cb?: (error: string, rep: CreateCloudNativeAPIGatewayServiceResponse) => void
197
+ ): Promise<CreateCloudNativeAPIGatewayServiceResponse> {
198
+ return this.request("CreateCloudNativeAPIGatewayService", req, cb)
199
+ }
200
+
201
+ /**
202
+ * 查询云原生网关路由列表
203
+ */
204
+ async DescribeCloudNativeAPIGatewayRoutes(
205
+ req: DescribeCloudNativeAPIGatewayRoutesRequest,
206
+ cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRoutesResponse) => void
207
+ ): Promise<DescribeCloudNativeAPIGatewayRoutesResponse> {
208
+ return this.request("DescribeCloudNativeAPIGatewayRoutes", req, cb)
209
+ }
210
+
211
+ /**
212
+ * 删除云原生网关路由
213
+ */
214
+ async DeleteCloudNativeAPIGatewayRoute(
215
+ req: DeleteCloudNativeAPIGatewayRouteRequest,
216
+ cb?: (error: string, rep: DeleteCloudNativeAPIGatewayRouteResponse) => void
217
+ ): Promise<DeleteCloudNativeAPIGatewayRouteResponse> {
218
+ return this.request("DeleteCloudNativeAPIGatewayRoute", req, cb)
80
219
  }
81
220
 
82
221
  /**
@@ -89,6 +228,56 @@ export class Client extends AbstractClient {
89
228
  return this.request("DeleteEngine", req, cb)
90
229
  }
91
230
 
231
+ /**
232
+ * 删除云原生网关的灰度规则
233
+ */
234
+ async DeleteCloudNativeAPIGatewayCanaryRule(
235
+ req: DeleteCloudNativeAPIGatewayCanaryRuleRequest,
236
+ cb?: (error: string, rep: DeleteCloudNativeAPIGatewayCanaryRuleResponse) => void
237
+ ): Promise<DeleteCloudNativeAPIGatewayCanaryRuleResponse> {
238
+ return this.request("DeleteCloudNativeAPIGatewayCanaryRule", req, cb)
239
+ }
240
+
241
+ /**
242
+ * 查询云原生网关服务列表
243
+ */
244
+ async DescribeCloudNativeAPIGatewayServices(
245
+ req: DescribeCloudNativeAPIGatewayServicesRequest,
246
+ cb?: (error: string, rep: DescribeCloudNativeAPIGatewayServicesResponse) => void
247
+ ): Promise<DescribeCloudNativeAPIGatewayServicesResponse> {
248
+ return this.request("DescribeCloudNativeAPIGatewayServices", req, cb)
249
+ }
250
+
251
+ /**
252
+ * 修改云原生网关限流插件(路由)
253
+ */
254
+ async ModifyCloudNativeAPIGatewayRouteRateLimit(
255
+ req: ModifyCloudNativeAPIGatewayRouteRateLimitRequest,
256
+ cb?: (error: string, rep: ModifyCloudNativeAPIGatewayRouteRateLimitResponse) => void
257
+ ): Promise<ModifyCloudNativeAPIGatewayRouteRateLimitResponse> {
258
+ return this.request("ModifyCloudNativeAPIGatewayRouteRateLimit", req, cb)
259
+ }
260
+
261
+ /**
262
+ * 查询nacos服务接口列表
263
+ */
264
+ async DescribeNacosServerInterfaces(
265
+ req: DescribeNacosServerInterfacesRequest,
266
+ cb?: (error: string, rep: DescribeNacosServerInterfacesResponse) => void
267
+ ): Promise<DescribeNacosServerInterfacesResponse> {
268
+ return this.request("DescribeNacosServerInterfaces", req, cb)
269
+ }
270
+
271
+ /**
272
+ * 查询Zookeeper类型注册引擎实例副本信息
273
+ */
274
+ async DescribeZookeeperReplicas(
275
+ req: DescribeZookeeperReplicasRequest,
276
+ cb?: (error: string, rep: DescribeZookeeperReplicasResponse) => void
277
+ ): Promise<DescribeZookeeperReplicasResponse> {
278
+ return this.request("DescribeZookeeperReplicas", req, cb)
279
+ }
280
+
92
281
  /**
93
282
  * 用于查询引擎实例列表
94
283
  */
@@ -100,13 +289,33 @@ export class Client extends AbstractClient {
100
289
  }
101
290
 
102
291
  /**
103
- * 查询Nacos类型引擎实例副本信息
292
+ * 查询云原生网关的限流插件(服务)
104
293
  */
105
- async DescribeNacosReplicas(
106
- req: DescribeNacosReplicasRequest,
107
- cb?: (error: string, rep: DescribeNacosReplicasResponse) => void
108
- ): Promise<DescribeNacosReplicasResponse> {
109
- return this.request("DescribeNacosReplicas", req, cb)
294
+ async DescribeCloudNativeAPIGatewayServiceRateLimit(
295
+ req: DescribeCloudNativeAPIGatewayServiceRateLimitRequest,
296
+ cb?: (error: string, rep: DescribeCloudNativeAPIGatewayServiceRateLimitResponse) => void
297
+ ): Promise<DescribeCloudNativeAPIGatewayServiceRateLimitResponse> {
298
+ return this.request("DescribeCloudNativeAPIGatewayServiceRateLimit", req, cb)
299
+ }
300
+
301
+ /**
302
+ * 查询云原生网关的限流插件(路由)
303
+ */
304
+ async DescribeCloudNativeAPIGatewayRouteRateLimit(
305
+ req: DescribeCloudNativeAPIGatewayRouteRateLimitRequest,
306
+ cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRouteRateLimitResponse) => void
307
+ ): Promise<DescribeCloudNativeAPIGatewayRouteRateLimitResponse> {
308
+ return this.request("DescribeCloudNativeAPIGatewayRouteRateLimit", req, cb)
309
+ }
310
+
311
+ /**
312
+ * 修改云原生网关服务
313
+ */
314
+ async ModifyCloudNativeAPIGatewayService(
315
+ req: ModifyCloudNativeAPIGatewayServiceRequest,
316
+ cb?: (error: string, rep: ModifyCloudNativeAPIGatewayServiceResponse) => void
317
+ ): Promise<ModifyCloudNativeAPIGatewayServiceResponse> {
318
+ return this.request("ModifyCloudNativeAPIGatewayService", req, cb)
110
319
  }
111
320
 
112
321
  /**
@@ -120,13 +329,13 @@ export class Client extends AbstractClient {
120
329
  }
121
330
 
122
331
  /**
123
- * 查询zookeeper服务接口列表
332
+ * 创建云原生网关的灰度规则
124
333
  */
125
- async DescribeZookeeperServerInterfaces(
126
- req: DescribeZookeeperServerInterfacesRequest,
127
- cb?: (error: string, rep: DescribeZookeeperServerInterfacesResponse) => void
128
- ): Promise<DescribeZookeeperServerInterfacesResponse> {
129
- return this.request("DescribeZookeeperServerInterfaces", req, cb)
334
+ async CreateCloudNativeAPIGatewayCanaryRule(
335
+ req: CreateCloudNativeAPIGatewayCanaryRuleRequest,
336
+ cb?: (error: string, rep: CreateCloudNativeAPIGatewayCanaryRuleResponse) => void
337
+ ): Promise<CreateCloudNativeAPIGatewayCanaryRuleResponse> {
338
+ return this.request("CreateCloudNativeAPIGatewayCanaryRule", req, cb)
130
339
  }
131
340
 
132
341
  /**
@@ -140,23 +349,83 @@ export class Client extends AbstractClient {
140
349
  }
141
350
 
142
351
  /**
143
- * 创建引擎实例
352
+ * 修改云原生网关的灰度规则
144
353
  */
145
- async CreateEngine(
146
- req: CreateEngineRequest,
147
- cb?: (error: string, rep: CreateEngineResponse) => void
148
- ): Promise<CreateEngineResponse> {
149
- return this.request("CreateEngine", req, cb)
354
+ async ModifyCloudNativeAPIGatewayCanaryRule(
355
+ req: ModifyCloudNativeAPIGatewayCanaryRuleRequest,
356
+ cb?: (error: string, rep: ModifyCloudNativeAPIGatewayCanaryRuleResponse) => void
357
+ ): Promise<ModifyCloudNativeAPIGatewayCanaryRuleResponse> {
358
+ return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb)
150
359
  }
151
360
 
152
361
  /**
153
- * 查询nacos服务接口列表
362
+ * 创建云原生网关限流插件(服务)
154
363
  */
155
- async DescribeNacosServerInterfaces(
156
- req: DescribeNacosServerInterfacesRequest,
157
- cb?: (error: string, rep: DescribeNacosServerInterfacesResponse) => void
158
- ): Promise<DescribeNacosServerInterfacesResponse> {
159
- return this.request("DescribeNacosServerInterfaces", req, cb)
364
+ async CreateCloudNativeAPIGatewayServiceRateLimit(
365
+ req: CreateCloudNativeAPIGatewayServiceRateLimitRequest,
366
+ cb?: (error: string, rep: CreateCloudNativeAPIGatewayServiceRateLimitResponse) => void
367
+ ): Promise<CreateCloudNativeAPIGatewayServiceRateLimitResponse> {
368
+ return this.request("CreateCloudNativeAPIGatewayServiceRateLimit", req, cb)
369
+ }
370
+
371
+ /**
372
+ * 创建云原生网关路由
373
+ */
374
+ async CreateCloudNativeAPIGatewayRoute(
375
+ req: CreateCloudNativeAPIGatewayRouteRequest,
376
+ cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteResponse) => void
377
+ ): Promise<CreateCloudNativeAPIGatewayRouteResponse> {
378
+ return this.request("CreateCloudNativeAPIGatewayRoute", req, cb)
379
+ }
380
+
381
+ /**
382
+ * 删除云原生网关的限流插件(路由)
383
+ */
384
+ async DeleteCloudNativeAPIGatewayRouteRateLimit(
385
+ req: DeleteCloudNativeAPIGatewayRouteRateLimitRequest,
386
+ cb?: (error: string, rep: DeleteCloudNativeAPIGatewayRouteRateLimitResponse) => void
387
+ ): Promise<DeleteCloudNativeAPIGatewayRouteRateLimitResponse> {
388
+ return this.request("DeleteCloudNativeAPIGatewayRouteRateLimit", req, cb)
389
+ }
390
+
391
+ /**
392
+ * 创建云原生网关限流插件(路由)
393
+ */
394
+ async CreateCloudNativeAPIGatewayRouteRateLimit(
395
+ req: CreateCloudNativeAPIGatewayRouteRateLimitRequest,
396
+ cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteRateLimitResponse) => void
397
+ ): Promise<CreateCloudNativeAPIGatewayRouteRateLimitResponse> {
398
+ return this.request("CreateCloudNativeAPIGatewayRouteRateLimit", req, cb)
399
+ }
400
+
401
+ /**
402
+ * 查询Nacos类型引擎实例副本信息
403
+ */
404
+ async DescribeNacosReplicas(
405
+ req: DescribeNacosReplicasRequest,
406
+ cb?: (error: string, rep: DescribeNacosReplicasResponse) => void
407
+ ): Promise<DescribeNacosReplicasResponse> {
408
+ return this.request("DescribeNacosReplicas", req, cb)
409
+ }
410
+
411
+ /**
412
+ * 修改云原生网关路由
413
+ */
414
+ async ModifyCloudNativeAPIGatewayRoute(
415
+ req: ModifyCloudNativeAPIGatewayRouteRequest,
416
+ cb?: (error: string, rep: ModifyCloudNativeAPIGatewayRouteResponse) => void
417
+ ): Promise<ModifyCloudNativeAPIGatewayRouteResponse> {
418
+ return this.request("ModifyCloudNativeAPIGatewayRoute", req, cb)
419
+ }
420
+
421
+ /**
422
+ * 查询云原生网关灰度规则列表
423
+ */
424
+ async DescribeCloudNativeAPIGatewayCanaryRules(
425
+ req: DescribeCloudNativeAPIGatewayCanaryRulesRequest,
426
+ cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCanaryRulesResponse) => void
427
+ ): Promise<DescribeCloudNativeAPIGatewayCanaryRulesResponse> {
428
+ return this.request("DescribeCloudNativeAPIGatewayCanaryRules", req, cb)
160
429
  }
161
430
 
162
431
  /**