tencentcloud-sdk-nodejs-intl-en 3.0.1265 → 3.0.1267

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1265",
3
+ "version": "3.0.1267",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -109,6 +109,7 @@ const DescribeTelCdrRequest = models.DescribeTelCdrRequest;
109
109
  const ModifyStaffResponse = models.ModifyStaffResponse;
110
110
  const ModifyExtensionRequest = models.ModifyExtensionRequest;
111
111
  const CreatePredictiveDialingCampaignResponse = models.CreatePredictiveDialingCampaignResponse;
112
+ const DescribeAIAnalysisResultResponse = models.DescribeAIAnalysisResultResponse;
112
113
  const UpdatePredictiveDialingCampaignResponse = models.UpdatePredictiveDialingCampaignResponse;
113
114
  const PSTNSessionInfo = models.PSTNSessionInfo;
114
115
  const AbortPredictiveDialingCampaignResponse = models.AbortPredictiveDialingCampaignResponse;
@@ -155,6 +156,7 @@ const ToneWordInfo = models.ToneWordInfo;
155
156
  const TelCdrInfo = models.TelCdrInfo;
156
157
  const SkillGroupItem = models.SkillGroupItem;
157
158
  const PhoneNumBuyInfo = models.PhoneNumBuyInfo;
159
+ const DescribeAIAnalysisResultRequest = models.DescribeAIAnalysisResultRequest;
158
160
  const DescribeCCCBuyInfoListResponse = models.DescribeCCCBuyInfoListResponse;
159
161
  const UnbindStaffSkillGroupListResponse = models.UnbindStaffSkillGroupListResponse;
160
162
  const ControlAIConversationRequest = models.ControlAIConversationRequest;
@@ -183,6 +185,7 @@ const DescribePSTNActiveSessionListResponse = models.DescribePSTNActiveSessionLi
183
185
  const EventStaffDetail = models.EventStaffDetail;
184
186
  const AILatencyStatistics = models.AILatencyStatistics;
185
187
  const StaffStatus = models.StaffStatus;
188
+ const AIAnalysisResult = models.AIAnalysisResult;
186
189
  const DescribeAutoCalloutTasksRequest = models.DescribeAutoCalloutTasksRequest;
187
190
  const DescribeTelSessionResponse = models.DescribeTelSessionResponse;
188
191
  const CreateAdminURLRequest = models.CreateAdminURLRequest;
@@ -225,14 +228,14 @@ class CccClient extends AbstractClient {
225
228
  }
226
229
 
227
230
  /**
228
- * This API is used to modify the customer service account.
229
- * @param {ModifyStaffRequest} req
230
- * @param {function(string, ModifyStaffResponse):void} cb
231
+ * This API is used to obtain AI Conversation Analytics results.
232
+ * @param {DescribeAIAnalysisResultRequest} req
233
+ * @param {function(string, DescribeAIAnalysisResultResponse):void} cb
231
234
  * @public
232
235
  */
233
- ModifyStaff(req, cb) {
234
- let resp = new ModifyStaffResponse();
235
- this.request("ModifyStaff", req, resp, cb);
236
+ DescribeAIAnalysisResult(req, cb) {
237
+ let resp = new DescribeAIAnalysisResultResponse();
238
+ this.request("DescribeAIAnalysisResult", req, resp, cb);
236
239
  }
237
240
 
238
241
  /**
@@ -369,6 +372,17 @@ Before initiating a call, please ensure your AI model is compatible with OpenAI,
369
372
  this.request("DeleteExtension", req, resp, cb);
370
373
  }
371
374
 
375
+ /**
376
+ * This API is used to modify the customer service account.
377
+ * @param {ModifyStaffRequest} req
378
+ * @param {function(string, ModifyStaffResponse):void} cb
379
+ * @public
380
+ */
381
+ ModifyStaff(req, cb) {
382
+ let resp = new ModifyStaffResponse();
383
+ this.request("ModifyStaff", req, resp, cb);
384
+ }
385
+
372
386
  /**
373
387
  * This API is used to bind the agent's skill group.
374
388
  * @param {BindStaffSkillGroupListRequest} req
@@ -5752,6 +5752,49 @@ class CreatePredictiveDialingCampaignResponse extends AbstractModel {
5752
5752
  }
5753
5753
  }
5754
5754
 
5755
+ /**
5756
+ * DescribeAIAnalysisResult response structure.
5757
+ * @class
5758
+ */
5759
+ class DescribeAIAnalysisResultResponse extends AbstractModel {
5760
+ constructor(){
5761
+ super();
5762
+
5763
+ /**
5764
+ * AI session analysis result.
5765
+ * @type {Array.<AIAnalysisResult> || null}
5766
+ */
5767
+ this.ResultList = null;
5768
+
5769
+ /**
5770
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
5771
+ * @type {string || null}
5772
+ */
5773
+ this.RequestId = null;
5774
+
5775
+ }
5776
+
5777
+ /**
5778
+ * @private
5779
+ */
5780
+ deserialize(params) {
5781
+ if (!params) {
5782
+ return;
5783
+ }
5784
+
5785
+ if (params.ResultList) {
5786
+ this.ResultList = new Array();
5787
+ for (let z in params.ResultList) {
5788
+ let obj = new AIAnalysisResult();
5789
+ obj.deserialize(params.ResultList[z]);
5790
+ this.ResultList.push(obj);
5791
+ }
5792
+ }
5793
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5794
+
5795
+ }
5796
+ }
5797
+
5755
5798
  /**
5756
5799
  * UpdatePredictiveDialingCampaign response structure.
5757
5800
  * @class
@@ -8227,6 +8270,55 @@ class PhoneNumBuyInfo extends AbstractModel {
8227
8270
  }
8228
8271
  }
8229
8272
 
8273
+ /**
8274
+ * DescribeAIAnalysisResult request structure.
8275
+ * @class
8276
+ */
8277
+ class DescribeAIAnalysisResultRequest extends AbstractModel {
8278
+ constructor(){
8279
+ super();
8280
+
8281
+ /**
8282
+ * App ID (required). can be viewed at https://console.cloud.tencent.com/ccc.
8283
+ * @type {number || null}
8284
+ */
8285
+ this.SdkAppId = null;
8286
+
8287
+ /**
8288
+ * Specifies the conversation ID.
8289
+ * @type {string || null}
8290
+ */
8291
+ this.SessionId = null;
8292
+
8293
+ /**
8294
+ * Specifies the search start time.
8295
+ * @type {number || null}
8296
+ */
8297
+ this.StartTime = null;
8298
+
8299
+ /**
8300
+ * 1737350008
8301
+ * @type {number || null}
8302
+ */
8303
+ this.EndTime = null;
8304
+
8305
+ }
8306
+
8307
+ /**
8308
+ * @private
8309
+ */
8310
+ deserialize(params) {
8311
+ if (!params) {
8312
+ return;
8313
+ }
8314
+ this.SdkAppId = 'SdkAppId' in params ? params.SdkAppId : null;
8315
+ this.SessionId = 'SessionId' in params ? params.SessionId : null;
8316
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
8317
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
8318
+
8319
+ }
8320
+ }
8321
+
8230
8322
  /**
8231
8323
  * DescribeCCCBuyInfoList response structure.
8232
8324
  * @class
@@ -9589,6 +9681,43 @@ class StaffStatus extends AbstractModel {
9589
9681
  }
9590
9682
  }
9591
9683
 
9684
+ /**
9685
+ * AI conversation analytics result.
9686
+ * @class
9687
+ */
9688
+ class AIAnalysisResult extends AbstractModel {
9689
+ constructor(){
9690
+ super();
9691
+
9692
+ /**
9693
+ * Summary: describes the session summary.
9694
+ mood: specifies the emotion analysis.
9695
+ intention extraction.
9696
+ * @type {string || null}
9697
+ */
9698
+ this.Type = null;
9699
+
9700
+ /**
9701
+ * AI session analysis result.
9702
+ * @type {string || null}
9703
+ */
9704
+ this.Result = null;
9705
+
9706
+ }
9707
+
9708
+ /**
9709
+ * @private
9710
+ */
9711
+ deserialize(params) {
9712
+ if (!params) {
9713
+ return;
9714
+ }
9715
+ this.Type = 'Type' in params ? params.Type : null;
9716
+ this.Result = 'Result' in params ? params.Result : null;
9717
+
9718
+ }
9719
+ }
9720
+
9592
9721
  /**
9593
9722
  * DescribeAutoCalloutTasks request structure.
9594
9723
  * @class
@@ -10596,6 +10725,7 @@ module.exports = {
10596
10725
  ModifyStaffResponse: ModifyStaffResponse,
10597
10726
  ModifyExtensionRequest: ModifyExtensionRequest,
10598
10727
  CreatePredictiveDialingCampaignResponse: CreatePredictiveDialingCampaignResponse,
10728
+ DescribeAIAnalysisResultResponse: DescribeAIAnalysisResultResponse,
10599
10729
  UpdatePredictiveDialingCampaignResponse: UpdatePredictiveDialingCampaignResponse,
10600
10730
  PSTNSessionInfo: PSTNSessionInfo,
10601
10731
  AbortPredictiveDialingCampaignResponse: AbortPredictiveDialingCampaignResponse,
@@ -10642,6 +10772,7 @@ module.exports = {
10642
10772
  TelCdrInfo: TelCdrInfo,
10643
10773
  SkillGroupItem: SkillGroupItem,
10644
10774
  PhoneNumBuyInfo: PhoneNumBuyInfo,
10775
+ DescribeAIAnalysisResultRequest: DescribeAIAnalysisResultRequest,
10645
10776
  DescribeCCCBuyInfoListResponse: DescribeCCCBuyInfoListResponse,
10646
10777
  UnbindStaffSkillGroupListResponse: UnbindStaffSkillGroupListResponse,
10647
10778
  ControlAIConversationRequest: ControlAIConversationRequest,
@@ -10670,6 +10801,7 @@ module.exports = {
10670
10801
  EventStaffDetail: EventStaffDetail,
10671
10802
  AILatencyStatistics: AILatencyStatistics,
10672
10803
  StaffStatus: StaffStatus,
10804
+ AIAnalysisResult: AIAnalysisResult,
10673
10805
  DescribeAutoCalloutTasksRequest: DescribeAutoCalloutTasksRequest,
10674
10806
  DescribeTelSessionResponse: DescribeTelSessionResponse,
10675
10807
  CreateAdminURLRequest: CreateAdminURLRequest,
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- v20210420: require("./v20210420"), v20220331: require("./v20220331"),
2
+ v20220331: require("./v20220331"), v20210420: require("./v20210420"),
3
3
  };
@@ -608,8 +608,8 @@ Limits
608
608
  }
609
609
 
610
610
  /**
611
- * This API (DeleteLoadBalancer) is used to delete one or more specified CLB instances.
612
- This is an async API. After it is returned successfully, you can call the DescribeTaskStatus API with the returned RequestId as an input parameter to check whether this task is successful.
611
+ * This API is used to delete one or more specified CLB instances. After successful deletion, the listeners and forwarding rules under the CLB instance will be deleted together, and the backend service will be unbound.
612
+ This API is asynchronous. After it returns the result successfully, you can call the [DescribeTaskStatus](https://www.tencentcloud.com/document/product/214/30683?from_cn_redirect=1) API with the returned RequestId as an input parameter to query whether the task is successful.
613
613
  * @param {DeleteLoadBalancerRequest} req
614
614
  * @param {function(string, DeleteLoadBalancerResponse):void} cb
615
615
  * @public
@@ -820,7 +820,7 @@ This is an async API. After it is returned successfully, you can call the Descri
820
820
  This is an async API. After it is returned successfully, you can call the `DescribeTaskStatus` API with the returned `RequestID` as an input parameter to check whether this task is successful.<br/>
821
821
  **Limits:**
822
822
  - Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.
823
- - SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account. For more information, please see [Checking Account Type](https://intl.cloud.tencent.com/document/product/1199/49090?from_cn_redirect=1).
823
+ - SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account.
824
824
  - SCF functions cannot be bound with classic CLB instances.
825
825
  - SCF functions cannot be bound with classic network-based CLB instances.
826
826
  - SCF functions in the same region can be bound with CLB instances. SCF functions can only be bound across VPCs but not regions.
@@ -1043,7 +1043,7 @@ This is an async API. After it is returned successfully, you can call the [Descr
1043
1043
  <br/>Limits:
1044
1044
 
1045
1045
  - Binding with SCF is only available in Guangzhou, Shenzhen Finance, Shanghai, Shanghai Finance, Beijing, Chengdu, Hong Kong (China), Singapore, Mumbai, Tokyo, and Silicon Valley.
1046
- - SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account. For more information, please see [Checking Account Type](https://intl.cloud.tencent.com/document/product/1199/49090?from_cn_redirect=1).
1046
+ - SCF functions can only be bound with CLB instances of bill-by-IP accounts but not with bill-by-CVM accounts. If you are using a bill-by-CVM account, we recommend upgrading it to a bill-by-IP account.
1047
1047
  - SCF functions cannot be bound with classic CLB instances.
1048
1048
  - SCF functions cannot be bound with classic network-based CLB instances.
1049
1049
  - SCF functions in the same region can be bound with CLB instances. SCF functions can only be bound across VPCs but not regions.
@@ -6473,11 +6473,22 @@ class DeleteLoadBalancerRequest extends AbstractModel {
6473
6473
  super();
6474
6474
 
6475
6475
  /**
6476
- * Array of IDs of the CLB instances to be deleted. Array length limit: 20.
6476
+ * CLB instance ID array to be deleted, which can be obtained by calling the [DescribeLoadBalancers](https://www.tencentcloud.com/document/product/214/30685?from_cn_redirect=1) API. The array can include up to 20 elements.
6477
6477
  * @type {Array.<string> || null}
6478
6478
  */
6479
6479
  this.LoadBalancerIds = null;
6480
6480
 
6481
+ /**
6482
+ * Whether to forcibly delete the CLB instance. True indicates forced deletion; False indicates non-forced deletion, and blocking verification is required.
6483
+ The default value is False.
6484
+ The deletion operation is blocked by default in the following cases. If you confirm forced deletion, the value of the forced verification parameter ForceDelete should be set to True.
6485
+ 1. The instance with 20 or more RS bound to the backend is deleted.
6486
+ 2. The instance with RS bound to the backend and the maximum peak inbound/outbound bandwidth exceeding 10 Mbps within 5 minutes is deleted.
6487
+ 3. Thirty or more instances are deleted within 5 minutes in a single region.
6488
+ * @type {boolean || null}
6489
+ */
6490
+ this.ForceDelete = null;
6491
+
6481
6492
  }
6482
6493
 
6483
6494
  /**
@@ -6488,6 +6499,7 @@ class DeleteLoadBalancerRequest extends AbstractModel {
6488
6499
  return;
6489
6500
  }
6490
6501
  this.LoadBalancerIds = 'LoadBalancerIds' in params ? params.LoadBalancerIds : null;
6502
+ this.ForceDelete = 'ForceDelete' in params ? params.ForceDelete : null;
6491
6503
 
6492
6504
  }
6493
6505
  }
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1265";
1
+ const sdkVersion = "3.0.1267";
2
2
  module.exports = sdkVersion
@@ -59,6 +59,7 @@ const ProxySpec = models.ProxySpec;
59
59
  const AddInstancesResponse = models.AddInstancesResponse;
60
60
  const BackupLimitClusterRestriction = models.BackupLimitClusterRestriction;
61
61
  const SlowQueriesItem = models.SlowQueriesItem;
62
+ const DescribeIntegrateTaskRequest = models.DescribeIntegrateTaskRequest;
62
63
  const ProxyGroupInfo = models.ProxyGroupInfo;
63
64
  const CreateProxyEndPointRequest = models.CreateProxyEndPointRequest;
64
65
  const ModifyBackupDownloadUserRestrictionResponse = models.ModifyBackupDownloadUserRestrictionResponse;
@@ -70,6 +71,7 @@ const UpgradeProxyResponse = models.UpgradeProxyResponse;
70
71
  const DescribeClusterReadOnlyResponse = models.DescribeClusterReadOnlyResponse;
71
72
  const DescribeInstanceSpecsRequest = models.DescribeInstanceSpecsRequest;
72
73
  const DescribeProxyNodesResponse = models.DescribeProxyNodesResponse;
74
+ const CreateIntegrateClusterRequest = models.CreateIntegrateClusterRequest;
73
75
  const ProxyNodeInfo = models.ProxyNodeInfo;
74
76
  const DescribeZonesResponse = models.DescribeZonesResponse;
75
77
  const ModifyParamTemplateRequest = models.ModifyParamTemplateRequest;
@@ -79,6 +81,7 @@ const ProxyGroupRwInfo = models.ProxyGroupRwInfo;
79
81
  const DescribeProxyNodesRequest = models.DescribeProxyNodesRequest;
80
82
  const InquirePriceCreateResponse = models.InquirePriceCreateResponse;
81
83
  const DescribeClusterReadOnlyRequest = models.DescribeClusterReadOnlyRequest;
84
+ const DescribeIntegrateTaskResponse = models.DescribeIntegrateTaskResponse;
82
85
  const Account = models.Account;
83
86
  const CreateClusterDatabaseResponse = models.CreateClusterDatabaseResponse;
84
87
  const CloseProxyResponse = models.CloseProxyResponse;
@@ -93,6 +96,7 @@ const ModifyBackupNameRequest = models.ModifyBackupNameRequest;
93
96
  const AuditRuleFilters = models.AuditRuleFilters;
94
97
  const DescribeClusterParamsRequest = models.DescribeClusterParamsRequest;
95
98
  const ModifyAccountHostResponse = models.ModifyAccountHostResponse;
99
+ const ProxyEndPointConfigInfo = models.ProxyEndPointConfigInfo;
96
100
  const DescribeServerlessInstanceSpecsResponse = models.DescribeServerlessInstanceSpecsResponse;
97
101
  const DescribeBinlogsRequest = models.DescribeBinlogsRequest;
98
102
  const InquirePriceModifyResponse = models.InquirePriceModifyResponse;
@@ -208,6 +212,7 @@ const SalePackageSpec = models.SalePackageSpec;
208
212
  const DescribeBinlogSaveDaysResponse = models.DescribeBinlogSaveDaysResponse;
209
213
  const ModifyResourcePackagesDeductionPriorityResponse = models.ModifyResourcePackagesDeductionPriorityResponse;
210
214
  const CloseWanRequest = models.CloseWanRequest;
215
+ const InstanceNameWeight = models.InstanceNameWeight;
211
216
  const UpgradeProxyVersionRequest = models.UpgradeProxyVersionRequest;
212
217
  const ModifyResourcePackageClustersRequest = models.ModifyResourcePackageClustersRequest;
213
218
  const ObjectTask = models.ObjectTask;
@@ -238,6 +243,7 @@ const BindInstanceInfo = models.BindInstanceInfo;
238
243
  const DescribeAuditRuleWithInstanceIdsResponse = models.DescribeAuditRuleWithInstanceIdsResponse;
239
244
  const SearchClusterDatabasesRequest = models.SearchClusterDatabasesRequest;
240
245
  const ModifyProxyDescResponse = models.ModifyProxyDescResponse;
246
+ const CreateIntegrateClusterResponse = models.CreateIntegrateClusterResponse;
241
247
  const ModifyClusterSlaveZoneResponse = models.ModifyClusterSlaveZoneResponse;
242
248
  const BinlogItem = models.BinlogItem;
243
249
  const ModifyProxyDescRequest = models.ModifyProxyDescRequest;
@@ -299,6 +305,7 @@ const DeleteParamTemplateResponse = models.DeleteParamTemplateResponse;
299
305
  const ClusterInstanceDetail = models.ClusterInstanceDetail;
300
306
  const OldAddrInfo = models.OldAddrInfo;
301
307
  const OpenClusterPasswordComplexityRequest = models.OpenClusterPasswordComplexityRequest;
308
+ const ProxyConfigInfo = models.ProxyConfigInfo;
302
309
  const PackagePriority = models.PackagePriority;
303
310
  const DescribeInstancesWithinSameClusterRequest = models.DescribeInstancesWithinSameClusterRequest;
304
311
  const ModifyAccountDescriptionResponse = models.ModifyAccountDescriptionResponse;
@@ -312,6 +319,7 @@ const ReplayInstanceAuditLogResponse = models.ReplayInstanceAuditLogResponse;
312
319
  const IsolateInstanceRequest = models.IsolateInstanceRequest;
313
320
  const DescribeAuditRuleTemplatesResponse = models.DescribeAuditRuleTemplatesResponse;
314
321
  const LogicBackupConfigInfo = models.LogicBackupConfigInfo;
322
+ const IntegrateCreateClusterConfig = models.IntegrateCreateClusterConfig;
315
323
  const DeleteBackupResponse = models.DeleteBackupResponse;
316
324
  const ModifyBackupDownloadRestrictionResponse = models.ModifyBackupDownloadRestrictionResponse;
317
325
  const ParamDetail = models.ParamDetail;
@@ -320,6 +328,7 @@ const ResetAccountPasswordResponse = models.ResetAccountPasswordResponse;
320
328
  const OpenAuditServiceRequest = models.OpenAuditServiceRequest;
321
329
  const ModifyResourcePackageNameResponse = models.ModifyResourcePackageNameResponse;
322
330
  const DescribeBackupListRequest = models.DescribeBackupListRequest;
331
+ const IntegrateInstanceInfo = models.IntegrateInstanceInfo;
323
332
  const ExportInstanceErrorLogsResponse = models.ExportInstanceErrorLogsResponse;
324
333
  const ParamItemDetail = models.ParamItemDetail;
325
334
  const SlaveZoneStockInfo = models.SlaveZoneStockInfo;
@@ -385,14 +394,14 @@ class CynosdbClient extends AbstractClient {
385
394
  }
386
395
 
387
396
  /**
388
- * This API is used to restore a serverless cluster.
389
- * @param {ResumeServerlessRequest} req
390
- * @param {function(string, ResumeServerlessResponse):void} cb
397
+ * This API is used to create a newly purchased cluster.
398
+ * @param {CreateIntegrateClusterRequest} req
399
+ * @param {function(string, CreateIntegrateClusterResponse):void} cb
391
400
  * @public
392
401
  */
393
- ResumeServerless(req, cb) {
394
- let resp = new ResumeServerlessResponse();
395
- this.request("ResumeServerless", req, resp, cb);
402
+ CreateIntegrateCluster(req, cb) {
403
+ let resp = new CreateIntegrateClusterResponse();
404
+ this.request("CreateIntegrateCluster", req, resp, cb);
396
405
  }
397
406
 
398
407
  /**
@@ -439,6 +448,17 @@ class CynosdbClient extends AbstractClient {
439
448
  this.request("ModifyBinlogConfig", req, resp, cb);
440
449
  }
441
450
 
451
+ /**
452
+ * This API is used to restore a serverless cluster.
453
+ * @param {ResumeServerlessRequest} req
454
+ * @param {function(string, ResumeServerlessResponse):void} cb
455
+ * @public
456
+ */
457
+ ResumeServerless(req, cb) {
458
+ let resp = new ResumeServerlessResponse();
459
+ this.request("ResumeServerless", req, resp, cb);
460
+ }
461
+
442
462
  /**
443
463
  * This API is used to create a database proxy connection point.
444
464
  * @param {CreateProxyEndPointRequest} req
@@ -1440,6 +1460,17 @@ class CynosdbClient extends AbstractClient {
1440
1460
  this.request("InquirePriceRenew", req, resp, cb);
1441
1461
  }
1442
1462
 
1463
+ /**
1464
+ * This API is used to query cluster tasks.
1465
+ * @param {DescribeIntegrateTaskRequest} req
1466
+ * @param {function(string, DescribeIntegrateTaskResponse):void} cb
1467
+ * @public
1468
+ */
1469
+ DescribeIntegrateTask(req, cb) {
1470
+ let resp = new DescribeIntegrateTaskResponse();
1471
+ this.request("DescribeIntegrateTask", req, resp, cb);
1472
+ }
1473
+
1443
1474
  /**
1444
1475
  * This API is used to reload the database proxy of Cloud Load Balancer.
1445
1476
  * @param {ReloadBalanceProxyNodeRequest} req