tencentcloud-sdk-nodejs-intl-en 3.0.1372 → 3.0.1374

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 (32) hide show
  1. package/package.json +1 -1
  2. package/tencentcloud/as/v20180419/as_client.js +3 -2
  3. package/tencentcloud/as/v20180419/models.js +103 -87
  4. package/tencentcloud/billing/v20180709/billing_client.js +15 -1
  5. package/tencentcloud/billing/v20180709/models.js +237 -44
  6. package/tencentcloud/cdb/v20170320/models.js +8 -8
  7. package/tencentcloud/cdc/v20201214/models.js +14 -14
  8. package/tencentcloud/cdn/v20180606/cdn_client.js +15 -11
  9. package/tencentcloud/cdn/v20180606/models.js +319 -80
  10. package/tencentcloud/cls/v20201016/cls_client.js +1709 -374
  11. package/tencentcloud/cls/v20201016/models.js +23480 -6683
  12. package/tencentcloud/common/sdk_version.js +1 -1
  13. package/tencentcloud/cwp/v20180228/cwp_client.js +615 -350
  14. package/tencentcloud/cwp/v20180228/models.js +10317 -5290
  15. package/tencentcloud/cynosdb/v20190107/models.js +305 -286
  16. package/tencentcloud/faceid/v20180301/models.js +31 -15
  17. package/tencentcloud/iai/v20200303/iai_client.js +1 -1
  18. package/tencentcloud/mdc/v20200828/models.js +73 -60
  19. package/tencentcloud/mna/v20210119/models.js +2 -2
  20. package/tencentcloud/mongodb/v20190725/models.js +12 -12
  21. package/tencentcloud/rum/v20210622/models.js +16 -16
  22. package/tencentcloud/rum/v20210622/rum_client.js +1 -1
  23. package/tencentcloud/scf/v20180416/models.js +2 -2
  24. package/tencentcloud/tat/v20201028/models.js +56 -47
  25. package/tencentcloud/tcsas/v20250106/models.js +10772 -7283
  26. package/tencentcloud/tcsas/v20250106/tcsas_client.js +612 -324
  27. package/tencentcloud/tcss/v20201101/models.js +7275 -2457
  28. package/tencentcloud/tcss/v20201101/tcss_client.js +2328 -2021
  29. package/tencentcloud/teo/v20220901/models.js +880 -153
  30. package/tencentcloud/teo/v20220901/teo_client.js +103 -47
  31. package/tencentcloud/vod/v20180717/models.js +693 -229
  32. package/tencentcloud/vod/v20180717/vod_client.js +24 -6
@@ -21,6 +21,7 @@ const DescribeBillAdjustInfoResponse = models.DescribeBillAdjustInfoResponse;
21
21
  const DescribeCostSummaryByProductRequest = models.DescribeCostSummaryByProductRequest;
22
22
  const DescribeCPQBillingMappingRequest = models.DescribeCPQBillingMappingRequest;
23
23
  const ConsumptionBusinessSummaryDataItem = models.ConsumptionBusinessSummaryDataItem;
24
+ const ProjectSummaryOverviewItem = models.ProjectSummaryOverviewItem;
24
25
  const RenewInstance = models.RenewInstance;
25
26
  const ModifyAllocationRuleRequest = models.ModifyAllocationRuleRequest;
26
27
  const DeleteAllocationRuleRequest = models.DeleteAllocationRuleRequest;
@@ -74,7 +75,7 @@ const DescribeAllocationSummaryByItemResponse = models.DescribeAllocationSummary
74
75
  const DescribeGatherResourceRequest = models.DescribeGatherResourceRequest;
75
76
  const DescribeCostSummaryByProjectResponse = models.DescribeCostSummaryByProjectResponse;
76
77
  const AnalyseProjectDetail = models.AnalyseProjectDetail;
77
- const ProjectSummaryOverviewItem = models.ProjectSummaryOverviewItem;
78
+ const DescribeOrgMemberAccountBalanceData = models.DescribeOrgMemberAccountBalanceData;
78
79
  const DescribeBillSummaryByTagResponse = models.DescribeBillSummaryByTagResponse;
79
80
  const ModifyGatherRuleRequest = models.ModifyGatherRuleRequest;
80
81
  const SummaryDetail = models.SummaryDetail;
@@ -121,6 +122,7 @@ const TagDataInfo = models.TagDataInfo;
121
122
  const DescribeRenewInstancesRequest = models.DescribeRenewInstancesRequest;
122
123
  const PayDealsRequest = models.PayDealsRequest;
123
124
  const SummaryTotal = models.SummaryTotal;
125
+ const DescribeOrgMemberAccountBalanceRequest = models.DescribeOrgMemberAccountBalanceRequest;
124
126
  const BusinessSummaryTotal = models.BusinessSummaryTotal;
125
127
  const DescribeAllocationBillConditionsResponse = models.DescribeAllocationBillConditionsResponse;
126
128
  const CostComponentSet = models.CostComponentSet;
@@ -150,6 +152,7 @@ const AllocationSummaryByBusiness = models.AllocationSummaryByBusiness;
150
152
  const CreateInstanceRequest = models.CreateInstanceRequest;
151
153
  const AllocationStat = models.AllocationStat;
152
154
  const ModifyGatherRuleResponse = models.ModifyGatherRuleResponse;
155
+ const DescribeOrgMemberAccountBalanceResponse = models.DescribeOrgMemberAccountBalanceResponse;
153
156
  const BillProject = models.BillProject;
154
157
  const ActionSummaryOverviewItem = models.ActionSummaryOverviewItem;
155
158
  const DescribeBillDetailForOrganizationRequest = models.DescribeBillDetailForOrganizationRequest;
@@ -735,6 +738,17 @@ Currently, the integrated and supported product for purchase includes: Cloud Fir
735
738
  this.request("DescribeGatherResource", req, resp, cb);
736
739
  }
737
740
 
741
+ /**
742
+ * Query member available balance in batches
743
+ * @param {DescribeOrgMemberAccountBalanceRequest} req
744
+ * @param {function(string, DescribeOrgMemberAccountBalanceResponse):void} cb
745
+ * @public
746
+ */
747
+ DescribeOrgMemberAccountBalance(req, cb) {
748
+ let resp = new DescribeOrgMemberAccountBalanceResponse();
749
+ this.request("DescribeOrgMemberAccountBalance", req, resp, cb);
750
+ }
751
+
738
752
  /**
739
753
  * This API is used to get cost allocation tags.
740
754
  * @param {DescribeTagListRequest} req
@@ -379,6 +379,97 @@ class ConsumptionBusinessSummaryDataItem extends AbstractModel {
379
379
  }
380
380
  }
381
381
 
382
+ /**
383
+ * Detailed summary of purchases by project
384
+ * @class
385
+ */
386
+ class ProjectSummaryOverviewItem extends AbstractModel {
387
+ constructor(){
388
+ super();
389
+
390
+ /**
391
+ * Project ID
392
+ * @type {string || null}
393
+ */
394
+ this.ProjectId = null;
395
+
396
+ /**
397
+ * Project name: The project to which a resource belongs, which is user-designated. If a resource has not been assigned to a project, it will automatically belong to the default project.
398
+ * @type {string || null}
399
+ */
400
+ this.ProjectName = null;
401
+
402
+ /**
403
+ * Cost ratio, to two decimal points
404
+ * @type {string || null}
405
+ */
406
+ this.RealTotalCostRatio = null;
407
+
408
+ /**
409
+ * Total amount after discount
410
+ * @type {string || null}
411
+ */
412
+ this.RealTotalCost = null;
413
+
414
+ /**
415
+ * Cash credit: The amount paid from the user’s cash account
416
+ * @type {string || null}
417
+ */
418
+ this.CashPayAmount = null;
419
+
420
+ /**
421
+ * Free credit: The amount paid with the user’s free credit
422
+ * @type {string || null}
423
+ */
424
+ this.IncentivePayAmount = null;
425
+
426
+ /**
427
+ * Voucher payment: The voucher deduction amount
428
+ * @type {string || null}
429
+ */
430
+ this.VoucherPayAmount = null;
431
+
432
+ /**
433
+ * Commission credit: The amount paid with the user’s commission credit.
434
+ * @type {string || null}
435
+ */
436
+ this.TransferPayAmount = null;
437
+
438
+ /**
439
+ * Billing month, e.g. `2019-08`
440
+ * @type {string || null}
441
+ */
442
+ this.BillMonth = null;
443
+
444
+ /**
445
+ * The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
446
+ * @type {string || null}
447
+ */
448
+ this.TotalCost = null;
449
+
450
+ }
451
+
452
+ /**
453
+ * @private
454
+ */
455
+ deserialize(params) {
456
+ if (!params) {
457
+ return;
458
+ }
459
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
460
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
461
+ this.RealTotalCostRatio = 'RealTotalCostRatio' in params ? params.RealTotalCostRatio : null;
462
+ this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
463
+ this.CashPayAmount = 'CashPayAmount' in params ? params.CashPayAmount : null;
464
+ this.IncentivePayAmount = 'IncentivePayAmount' in params ? params.IncentivePayAmount : null;
465
+ this.VoucherPayAmount = 'VoucherPayAmount' in params ? params.VoucherPayAmount : null;
466
+ this.TransferPayAmount = 'TransferPayAmount' in params ? params.TransferPayAmount : null;
467
+ this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
468
+ this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
469
+
470
+ }
471
+ }
472
+
382
473
  /**
383
474
  * Resource instance information
384
475
  * @class
@@ -4716,72 +4807,66 @@ class AnalyseProjectDetail extends AbstractModel {
4716
4807
  }
4717
4808
 
4718
4809
  /**
4719
- * Detailed summary of purchases by project
4810
+ * DescribeOrgMemberAccountBalanceData
4720
4811
  * @class
4721
4812
  */
4722
- class ProjectSummaryOverviewItem extends AbstractModel {
4813
+ class DescribeOrgMemberAccountBalanceData extends AbstractModel {
4723
4814
  constructor(){
4724
4815
  super();
4725
4816
 
4726
4817
  /**
4727
- * Project ID
4818
+ * <p>Member account Uin</p>
4728
4819
  * @type {string || null}
4729
4820
  */
4730
- this.ProjectId = null;
4821
+ this.MemberUin = null;
4731
4822
 
4732
4823
  /**
4733
- * Project name: The project to which a resource belongs, which is user-designated. If a resource has not been assigned to a project, it will automatically belong to the default project.
4824
+ * <p>Member name</p>
4734
4825
  * @type {string || null}
4735
4826
  */
4736
- this.ProjectName = null;
4827
+ this.MemberName = null;
4737
4828
 
4738
4829
  /**
4739
- * Cost ratio, to two decimal points
4740
- * @type {string || null}
4741
- */
4742
- this.RealTotalCostRatio = null;
4743
-
4744
- /**
4745
- * Total amount after discount
4746
- * @type {string || null}
4830
+ * <p>Whether it is a credit account</p>
4831
+ * @type {boolean || null}
4747
4832
  */
4748
- this.RealTotalCost = null;
4833
+ this.IsCreditAccount = null;
4749
4834
 
4750
4835
  /**
4751
- * Cash credit: The amount paid from the user’s cash account
4752
- * @type {string || null}
4836
+ * <p>Current actual available balance</p><p>Unit: cent</p>
4837
+ * @type {number || null}
4753
4838
  */
4754
- this.CashPayAmount = null;
4839
+ this.RealBalance = null;
4755
4840
 
4756
4841
  /**
4757
- * Free credit: The amount paid with the user’s free credit
4758
- * @type {string || null}
4842
+ * <p>Cash account balance</p><p>Unit: cent</p>
4843
+ * @type {number || null}
4759
4844
  */
4760
- this.IncentivePayAmount = null;
4845
+ this.CashAccountBalance = null;
4761
4846
 
4762
4847
  /**
4763
- * Voucher payment: The voucher deduction amount
4764
- * @type {string || null}
4848
+ * <p>Credit limit</p><p>Unit: cent</p><p>Credit limit = Basic credit limit + Temporary credit limit</p>
4849
+ * @type {number || null}
4765
4850
  */
4766
- this.VoucherPayAmount = null;
4851
+ this.CreditAmount = null;
4767
4852
 
4768
4853
  /**
4769
- * Commission credit: The amount paid with the user’s commission credit.
4770
- * @type {string || null}
4854
+ * <p>Temporary credit limit</p><p>Unit: cent</p>
4855
+ * @type {number || null}
4771
4856
  */
4772
- this.TransferPayAmount = null;
4857
+ this.TempCredit = null;
4773
4858
 
4774
4859
  /**
4775
- * Billing month, e.g. `2019-08`
4776
- * @type {string || null}
4860
+ * <p>Basic credit limit</p><p>Unit: cent</p>
4861
+ * @type {number || null}
4777
4862
  */
4778
- this.BillMonth = null;
4863
+ this.BasicCreditAmount = null;
4779
4864
 
4780
4865
  /**
4781
- * The original cost in USD. This parameter has become valid since v3.0 bills took effect in May 2021, and before that `-` was returned for this parameter. If a customer uses a contract price different from the published price, `-` will also be returned for this parameter.
4782
- * @type {string || null}
4866
+ * <p>Overdue payments</p><p>Unit: cent</p>
4867
+ * @type {number || null}
4783
4868
  */
4784
- this.TotalCost = null;
4869
+ this.OweAmount = null;
4785
4870
 
4786
4871
  }
4787
4872
 
@@ -4792,16 +4877,15 @@ class ProjectSummaryOverviewItem extends AbstractModel {
4792
4877
  if (!params) {
4793
4878
  return;
4794
4879
  }
4795
- this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
4796
- this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
4797
- this.RealTotalCostRatio = 'RealTotalCostRatio' in params ? params.RealTotalCostRatio : null;
4798
- this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
4799
- this.CashPayAmount = 'CashPayAmount' in params ? params.CashPayAmount : null;
4800
- this.IncentivePayAmount = 'IncentivePayAmount' in params ? params.IncentivePayAmount : null;
4801
- this.VoucherPayAmount = 'VoucherPayAmount' in params ? params.VoucherPayAmount : null;
4802
- this.TransferPayAmount = 'TransferPayAmount' in params ? params.TransferPayAmount : null;
4803
- this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
4804
- this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
4880
+ this.MemberUin = 'MemberUin' in params ? params.MemberUin : null;
4881
+ this.MemberName = 'MemberName' in params ? params.MemberName : null;
4882
+ this.IsCreditAccount = 'IsCreditAccount' in params ? params.IsCreditAccount : null;
4883
+ this.RealBalance = 'RealBalance' in params ? params.RealBalance : null;
4884
+ this.CashAccountBalance = 'CashAccountBalance' in params ? params.CashAccountBalance : null;
4885
+ this.CreditAmount = 'CreditAmount' in params ? params.CreditAmount : null;
4886
+ this.TempCredit = 'TempCredit' in params ? params.TempCredit : null;
4887
+ this.BasicCreditAmount = 'BasicCreditAmount' in params ? params.BasicCreditAmount : null;
4888
+ this.OweAmount = 'OweAmount' in params ? params.OweAmount : null;
4805
4889
 
4806
4890
  }
4807
4891
  }
@@ -8249,6 +8333,48 @@ class SummaryTotal extends AbstractModel {
8249
8333
  }
8250
8334
  }
8251
8335
 
8336
+ /**
8337
+ * DescribeOrgMemberAccountBalance request structure.
8338
+ * @class
8339
+ */
8340
+ class DescribeOrgMemberAccountBalanceRequest extends AbstractModel {
8341
+ constructor(){
8342
+ super();
8343
+
8344
+ /**
8345
+ * <p>Page number</p><p>Default value: 1</p><p>Value ranges from 1</p>
8346
+ * @type {number || null}
8347
+ */
8348
+ this.PageNumber = null;
8349
+
8350
+ /**
8351
+ * <p>Page size</p><p>Value ranges from 1 to 10</p><p>Default value: 10</p>
8352
+ * @type {number || null}
8353
+ */
8354
+ this.PageSize = null;
8355
+
8356
+ /**
8357
+ * <p>Member uin list</p><p>Input parameter limit: Elements must be pure digits and the number of elements cannot be greater than 10</p><p>Return the account balance information of all members within the organization when empty, and return the account balance information of specified members when not empty</p>
8358
+ * @type {Array.<string> || null}
8359
+ */
8360
+ this.MemberUins = null;
8361
+
8362
+ }
8363
+
8364
+ /**
8365
+ * @private
8366
+ */
8367
+ deserialize(params) {
8368
+ if (!params) {
8369
+ return;
8370
+ }
8371
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
8372
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
8373
+ this.MemberUins = 'MemberUins' in params ? params.MemberUins : null;
8374
+
8375
+ }
8376
+ }
8377
+
8252
8378
  /**
8253
8379
  * Summarize total cost by product
8254
8380
  * @class
@@ -11027,6 +11153,70 @@ class ModifyGatherRuleResponse extends AbstractModel {
11027
11153
  }
11028
11154
  }
11029
11155
 
11156
+ /**
11157
+ * DescribeOrgMemberAccountBalance response structure.
11158
+ * @class
11159
+ */
11160
+ class DescribeOrgMemberAccountBalanceResponse extends AbstractModel {
11161
+ constructor(){
11162
+ super();
11163
+
11164
+ /**
11165
+ * <p>Member account balance list</p>
11166
+ * @type {Array.<DescribeOrgMemberAccountBalanceData> || null}
11167
+ */
11168
+ this.Data = null;
11169
+
11170
+ /**
11171
+ * <p>Total record count</p>
11172
+ * @type {number || null}
11173
+ */
11174
+ this.TotalCount = null;
11175
+
11176
+ /**
11177
+ * <p>Actual number of returned results on the current page</p>
11178
+ * @type {number || null}
11179
+ */
11180
+ this.PageSize = null;
11181
+
11182
+ /**
11183
+ * <p>current page</p>
11184
+ * @type {number || null}
11185
+ */
11186
+ this.PageNumber = null;
11187
+
11188
+ /**
11189
+ * 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.
11190
+ * @type {string || null}
11191
+ */
11192
+ this.RequestId = null;
11193
+
11194
+ }
11195
+
11196
+ /**
11197
+ * @private
11198
+ */
11199
+ deserialize(params) {
11200
+ if (!params) {
11201
+ return;
11202
+ }
11203
+
11204
+ if (params.Data) {
11205
+ this.Data = new Array();
11206
+ for (let z in params.Data) {
11207
+ let obj = new DescribeOrgMemberAccountBalanceData();
11208
+ obj.deserialize(params.Data[z]);
11209
+ this.Data.push(obj);
11210
+ }
11211
+ }
11212
+ this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
11213
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
11214
+ this.PageNumber = 'PageNumber' in params ? params.PageNumber : null;
11215
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
11216
+
11217
+ }
11218
+ }
11219
+
11030
11220
  /**
11031
11221
  * Project filter list
11032
11222
  * @class
@@ -17186,6 +17376,7 @@ module.exports = {
17186
17376
  DescribeCostSummaryByProductRequest: DescribeCostSummaryByProductRequest,
17187
17377
  DescribeCPQBillingMappingRequest: DescribeCPQBillingMappingRequest,
17188
17378
  ConsumptionBusinessSummaryDataItem: ConsumptionBusinessSummaryDataItem,
17379
+ ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
17189
17380
  RenewInstance: RenewInstance,
17190
17381
  ModifyAllocationRuleRequest: ModifyAllocationRuleRequest,
17191
17382
  DeleteAllocationRuleRequest: DeleteAllocationRuleRequest,
@@ -17239,7 +17430,7 @@ module.exports = {
17239
17430
  DescribeGatherResourceRequest: DescribeGatherResourceRequest,
17240
17431
  DescribeCostSummaryByProjectResponse: DescribeCostSummaryByProjectResponse,
17241
17432
  AnalyseProjectDetail: AnalyseProjectDetail,
17242
- ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
17433
+ DescribeOrgMemberAccountBalanceData: DescribeOrgMemberAccountBalanceData,
17243
17434
  DescribeBillSummaryByTagResponse: DescribeBillSummaryByTagResponse,
17244
17435
  ModifyGatherRuleRequest: ModifyGatherRuleRequest,
17245
17436
  SummaryDetail: SummaryDetail,
@@ -17286,6 +17477,7 @@ module.exports = {
17286
17477
  DescribeRenewInstancesRequest: DescribeRenewInstancesRequest,
17287
17478
  PayDealsRequest: PayDealsRequest,
17288
17479
  SummaryTotal: SummaryTotal,
17480
+ DescribeOrgMemberAccountBalanceRequest: DescribeOrgMemberAccountBalanceRequest,
17289
17481
  BusinessSummaryTotal: BusinessSummaryTotal,
17290
17482
  DescribeAllocationBillConditionsResponse: DescribeAllocationBillConditionsResponse,
17291
17483
  CostComponentSet: CostComponentSet,
@@ -17315,6 +17507,7 @@ module.exports = {
17315
17507
  CreateInstanceRequest: CreateInstanceRequest,
17316
17508
  AllocationStat: AllocationStat,
17317
17509
  ModifyGatherRuleResponse: ModifyGatherRuleResponse,
17510
+ DescribeOrgMemberAccountBalanceResponse: DescribeOrgMemberAccountBalanceResponse,
17318
17511
  BillProject: BillProject,
17319
17512
  ActionSummaryOverviewItem: ActionSummaryOverviewItem,
17320
17513
  DescribeBillDetailForOrganizationRequest: DescribeBillDetailForOrganizationRequest,
@@ -11207,7 +11207,7 @@ class CreateDBInstanceRequest extends AbstractModel {
11207
11207
  this.GoodsNum = null;
11208
11208
 
11209
11209
  /**
11210
- * <p>For availability zone information, please use the <a href="https://www.tencentcloud.com/document/api/236/17229?from_cn_redirect=1">obtain the purchasable specifications of cloud databases</a> API to get the availability zones where instances can be created.</p><p>If you create a single-node, two-node, three-node, or four-node instance, this parameter is required. Please specify an availability zone. If you do not specify one, the system will automatically select an availability zone (which may not be the one you want to deploy in). If you create a cloud disk edition instance, leave this parameter blank and configure the availability zones for read-write nodes and read-only nodes with parameter ClusterTopology.</p>
11210
+ * <p>For AZ information, please use the <a href="https://www.tencentcloud.com/document/api/236/17229?from_cn_redirect=1">Obtain the Purchasable Specifications of Cloud Databases</a> API to obtain the availability zones where instances can be created.</p><p>If you create a single-node, two-node, three-node, or four-node instance, this parameter is required. Specify an availability zone. If no availability zone is specified, the system will automatically select one (possibly not the availability zone you want to deploy in). If you create a cloud disk-based cluster instance, leave this parameter blank and configure the availability zones for RWNode and read-only nodes with parameter ClusterTopology.</p>
11211
11211
  * @type {string || null}
11212
11212
  */
11213
11213
  this.Zone = null;
@@ -11339,7 +11339,7 @@ class CreateDBInstanceRequest extends AbstractModel {
11339
11339
  this.ClientToken = null;
11340
11340
 
11341
11341
  /**
11342
- * <p>Instance isolation type. Supported values include: "UNIVERSAL" - general-purpose instance, "EXCLUSIVE" - dedicated instance, "BASIC_V2" - ONTKE single-node instance, "CLOUD_NATIVE_CLUSTER" - CLOUD disk edition standard type, "CLOUD_NATIVE_CLUSTER_EXCLUSIVE" - CLOUD disk edition enhanced. If not specified, it defaults to general-purpose instance.<br>Description: If a CLOUD disk edition instance is created, this parameter is required.</p>
11342
+ * <p>Instance isolation type.</p><p>Enumeration values:</p><ul><li><p>UNIVERSAL: General-purpose instance</p></li><li><p>EXCLUSIVE: Dedicated instance</p></li><li><p>CLOUD_NATIVE_CLUSTER: Standard type of cloud disk edition</p></li><li><p>CLOUD_NATIVE_CLUSTER_EXCLUSIVE: Enhanced type of cloud disk edition</p></li><li><p>CLOUD_NATIVE_CLUSTER_ULTRA: Premium type of cloud disk edition</p></li><li><p>If this parameter is not specified, it defaults to general-purpose instance.</p></li><li><p>Required if you create a cloud disk edition instance.</p></li><li><p>If you create a single-node instance, fill in this parameter as CLOUD_NATIVE_CLUSTER and specify parameter InstanceNodes equal to 1.</p></li></ul>
11343
11343
  * @type {string || null}
11344
11344
  */
11345
11345
  this.DeviceType = null;
@@ -11357,7 +11357,7 @@ class CreateDBInstanceRequest extends AbstractModel {
11357
11357
  this.AlarmPolicyList = null;
11358
11358
 
11359
11359
  /**
11360
- * <p>Number of instance nodes.</p><p>For RO and basic edition instances, the default value is 1. To purchase a three-node instance, set this value to 3 or specify the BackupZone parameter. When purchasing a primary instance without specifying this parameter or the BackupZone parameter, the default is 2, meaning a dual-node instance will be purchased. To purchase a four-node instance, set this value to 4 or specify the FourthZone parameter.</p>
11360
+ * <p>Number of instance nodes.</p><p>For RO and single-node instances, the default value is 1. To purchase a three-node instance, set this value to 3 or specify the BackupZone parameter. When purchasing a primary instance without specifying this parameter or the BackupZone parameter, the default value is 2, meaning a dual-node instance will be purchased. To purchase a four-node instance, set this value to 4 or specify the FourthZone parameter.</p>
11361
11361
  * @type {number || null}
11362
11362
  */
11363
11363
  this.InstanceNodes = null;
@@ -11417,7 +11417,7 @@ class CreateDBInstanceRequest extends AbstractModel {
11417
11417
  this.DataProtectVolume = null;
11418
11418
 
11419
11419
  /**
11420
- * <p>Topology configuration for cloud disk edition nodes.<br>Description: If a cloud disk edition instance is purchased, this parameter is required. Set the topology for RW and RO nodes of the cloud disk edition instance. The node scope for RO nodes is 1-5. Set at least 1 RO node.</p>
11420
+ * <p>Topology configuration of cloud disk edition instance nodes.</p><p>If a cloud disk edition instance is purchased, this parameter is required. Set the topology of RW and RO nodes for the cloud disk edition instance. The node scope of RO nodes is 1-5. Set at least 1 RO node.</p>
11421
11421
  * @type {ClusterTopology || null}
11422
11422
  */
11423
11423
  this.ClusterTopology = null;
@@ -20055,7 +20055,7 @@ class CreateDBInstanceHourRequest extends AbstractModel {
20055
20055
  this.ProjectId = null;
20056
20056
 
20057
20057
  /**
20058
- * <p>For availability zone information, please use the <a href="https://www.tencentcloud.com/document/api/236/17229?from_cn_redirect=1">obtain the purchasable specifications of cloud databases</a> API to get the availability zones where instances can be created.</p><p>If you create a single-node, two-node, three-node, or four-node instance, this parameter is required. Please specify an availability zone. If you do not specify one, the system will automatically select an availability zone (which may not be the one you want to deploy in). If you create a cloud disk edition instance, leave this parameter blank and configure the availability zones for read-write nodes and read-only nodes with parameter ClusterTopology.</p>
20058
+ * <p>For AZ information, please use the <a href="https://www.tencentcloud.com/document/api/236/17229?from_cn_redirect=1">Obtain the Purchasable Specifications of Cloud Databases</a> API to obtain the availability zones where instances can be created.</p><p>If you create a single-node, two-node, three-node, or four-node instance, this parameter is required. Specify an availability zone. If no availability zone is specified, the system will automatically select one (possibly not the availability zone you want to deploy in). If you create a cloud disk-based cluster instance, leave this parameter blank and configure the availability zones for RWNode and read-only nodes with parameter ClusterTopology.</p>
20059
20059
  * @type {string || null}
20060
20060
  */
20061
20061
  this.Zone = null;
@@ -20163,7 +20163,7 @@ class CreateDBInstanceHourRequest extends AbstractModel {
20163
20163
  this.ClientToken = null;
20164
20164
 
20165
20165
  /**
20166
- * <p>Instance isolation type. Supported values include: "UNIVERSAL" - general-purpose instance, "EXCLUSIVE" - dedicated instance, "BASIC_V2" - ONTKE single-node instance, "CLOUD_NATIVE_CLUSTER" - CLOUD disk edition standard type, "CLOUD_NATIVE_CLUSTER_EXCLUSIVE" - CLOUD disk edition enhanced. If not specified, it defaults to general-purpose instance.<br>Description: If a CLOUD disk edition instance is created, this parameter is required.</p>
20166
+ * <p>Instance isolation type.</p><p>Enumeration values:</p><ul><li><p>UNIVERSAL: General-purpose instance</p></li><li><p>EXCLUSIVE: Dedicated instance</p></li><li><p>CLOUD_NATIVE_CLUSTER: Standard type of cloud disk edition</p></li><li><p>CLOUD_NATIVE_CLUSTER_EXCLUSIVE: Enhanced type of cloud disk edition</p></li><li><p>CLOUD_NATIVE_CLUSTER_ULTRA: Premium type of cloud disk edition</p></li><li><p>If this parameter is not specified, it defaults to general-purpose instance.</p></li><li><p>Required if you create a cloud disk edition instance.</p></li><li><p>If you create a single-node instance, fill in this parameter as CLOUD_NATIVE_CLUSTER and specify parameter InstanceNodes equal to 1.</p></li></ul>
20167
20167
  * @type {string || null}
20168
20168
  */
20169
20169
  this.DeviceType = null;
@@ -20181,7 +20181,7 @@ class CreateDBInstanceHourRequest extends AbstractModel {
20181
20181
  this.AlarmPolicyList = null;
20182
20182
 
20183
20183
  /**
20184
- * <p>Number of instance nodes.</p><p>For RO and basic edition instances, the value defaults to 1. To purchase a three-node instance, set this value to 3 or specify the BackupZone parameter. When purchasing a primary instance without specifying this parameter or the BackupZone parameter, the default value is 2, which means purchasing a dual-node instance. To purchase a four-node instance, set this value to 4 or specify the FourthZone parameter.</p>
20184
+ * <p>Number of instance nodes.</p><p>For RO and single-node instances, the default value is 1. To purchase a three-node instance, set this value to 3 or specify the BackupZone parameter. When purchasing a primary instance without specifying this parameter or the BackupZone parameter, the default value is 2, meaning a dual-node instance will be purchased. To purchase a four-node instance, set this value to 4 or specify the FourthZone parameter.</p>
20185
20185
  * @type {number || null}
20186
20186
  */
20187
20187
  this.InstanceNodes = null;
@@ -20253,7 +20253,7 @@ class CreateDBInstanceHourRequest extends AbstractModel {
20253
20253
  this.DiskType = null;
20254
20254
 
20255
20255
  /**
20256
- * <p>ClusterType: cageFinancial Enclosure, cdcCDB ON CDC; dedicatededicated cluster</p>
20256
+ * <p>ClusterType: cage-Financial Enclosure, cdc-CDB ON CDC; dedicate-dedicated cluster</p>
20257
20257
  * @type {string || null}
20258
20258
  */
20259
20259
  this.ClusterType = null;
@@ -1784,43 +1784,43 @@ Note: The returned value of this field may be null, indicating that no valid val
1784
1784
  this.OrderType = null;
1785
1785
 
1786
1786
  /**
1787
- * Acceptance Status
1787
+ *
1788
1788
  * @type {string || null}
1789
1789
  */
1790
1790
  this.CheckStatus = null;
1791
1791
 
1792
1792
  /**
1793
- * Expected Delivery Time
1793
+ *
1794
1794
  * @type {string || null}
1795
1795
  */
1796
1796
  this.DeliverExpectTime = null;
1797
1797
 
1798
1798
  /**
1799
- * Actual Delivery Completion Time
1799
+ *
1800
1800
  * @type {string || null}
1801
1801
  */
1802
1802
  this.DeliverFinishTime = null;
1803
1803
 
1804
1804
  /**
1805
- * Expected Acceptance Time
1805
+ *
1806
1806
  * @type {string || null}
1807
1807
  */
1808
1808
  this.CheckExpectTime = null;
1809
1809
 
1810
1810
  /**
1811
- * Actual Acceptance Completion Time
1811
+ *
1812
1812
  * @type {string || null}
1813
1813
  */
1814
1814
  this.CheckFinishTime = null;
1815
1815
 
1816
1816
  /**
1817
- * Order SLA
1817
+ *
1818
1818
  * @type {string || null}
1819
1819
  */
1820
1820
  this.OrderSLA = null;
1821
1821
 
1822
1822
  /**
1823
- * Order Payment Plan
1823
+ *
1824
1824
  * @type {string || null}
1825
1825
  */
1826
1826
  this.OrderPayPlan = null;
@@ -2291,7 +2291,7 @@ class DescribeDedicatedClusterOrdersRequest extends AbstractModel {
2291
2291
  this.ActionType = null;
2292
2292
 
2293
2293
  /**
2294
- * Order Type List
2294
+ *
2295
2295
  * @type {Array.<string> || null}
2296
2296
  */
2297
2297
  this.OrderTypes = null;
@@ -2499,7 +2499,7 @@ Note: The returned value of this field may be null, indicating that no valid val
2499
2499
  }
2500
2500
 
2501
2501
  /**
2502
- * Host Machine Resource Overview Details
2502
+ *
2503
2503
  * @class
2504
2504
  */
2505
2505
  class HostDetailInfo extends AbstractModel {
@@ -2507,31 +2507,31 @@ class HostDetailInfo extends AbstractModel {
2507
2507
  super();
2508
2508
 
2509
2509
  /**
2510
- * Type Family
2510
+ *
2511
2511
  * @type {string || null}
2512
2512
  */
2513
2513
  this.HostTypeFamily = null;
2514
2514
 
2515
2515
  /**
2516
- * Total CPU
2516
+ *
2517
2517
  * @type {number || null}
2518
2518
  */
2519
2519
  this.CpuTotal = null;
2520
2520
 
2521
2521
  /**
2522
- * Available CPU
2522
+ *
2523
2523
  * @type {number || null}
2524
2524
  */
2525
2525
  this.CpuAvailable = null;
2526
2526
 
2527
2527
  /**
2528
- * Total Memory
2528
+ *
2529
2529
  * @type {number || null}
2530
2530
  */
2531
2531
  this.MemTotal = null;
2532
2532
 
2533
2533
  /**
2534
- * Available Memory
2534
+ *
2535
2535
  * @type {number || null}
2536
2536
  */
2537
2537
  this.MemAvailable = null;