tencentcloud-sdk-nodejs-intl-en 3.0.1393 → 3.0.1394

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.
@@ -171,6 +171,61 @@ class DescribeCostSummaryByProductRequest extends AbstractModel {
171
171
  }
172
172
  }
173
173
 
174
+ /**
175
+ * DescribeBudget response structure.
176
+ * @class
177
+ */
178
+ class DescribeBudgetResponse extends AbstractModel {
179
+ constructor(){
180
+ super();
181
+
182
+ /**
183
+ * Budget project detail
184
+ * @type {DataForBudgetInfoPage || null}
185
+ */
186
+ this.Data = null;
187
+
188
+ /**
189
+ * prompt
190
+ Note: This field may return null, indicating that no valid values can be obtained.
191
+ * @type {string || null}
192
+ */
193
+ this.Message = null;
194
+
195
+ /**
196
+ * Return code
197
+ * @type {number || null}
198
+ */
199
+ this.Code = null;
200
+
201
+ /**
202
+ * 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.
203
+ * @type {string || null}
204
+ */
205
+ this.RequestId = null;
206
+
207
+ }
208
+
209
+ /**
210
+ * @private
211
+ */
212
+ deserialize(params) {
213
+ if (!params) {
214
+ return;
215
+ }
216
+
217
+ if (params.Data) {
218
+ let obj = new DataForBudgetInfoPage();
219
+ obj.deserialize(params.Data)
220
+ this.Data = obj;
221
+ }
222
+ this.Message = 'Message' in params ? params.Message : null;
223
+ this.Code = 'Code' in params ? params.Code : null;
224
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
225
+
226
+ }
227
+ }
228
+
174
229
  /**
175
230
  * DescribeCPQBillingMapping request structure.
176
231
  * @class
@@ -380,72 +435,30 @@ class ConsumptionBusinessSummaryDataItem extends AbstractModel {
380
435
  }
381
436
 
382
437
  /**
383
- * Detailed summary of purchases by project
438
+ * ModifyGatherRule request structure.
384
439
  * @class
385
440
  */
386
- class ProjectSummaryOverviewItem extends AbstractModel {
441
+ class ModifyGatherRuleRequest extends AbstractModel {
387
442
  constructor(){
388
443
  super();
389
444
 
390
445
  /**
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}
446
+ * Edit collection rule ID.
447
+ * @type {number || null}
435
448
  */
436
- this.TransferPayAmount = null;
449
+ this.Id = null;
437
450
 
438
451
  /**
439
- * Billing month, e.g. `2019-08`
440
- * @type {string || null}
452
+ * Rule detail of the edited collection rule.
453
+ * @type {AllocationRuleExpression || null}
441
454
  */
442
- this.BillMonth = null;
455
+ this.RuleDetail = null;
443
456
 
444
457
  /**
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.
458
+ * Month, which is the current month by default if not provided.
446
459
  * @type {string || null}
447
460
  */
448
- this.TotalCost = null;
461
+ this.Month = null;
449
462
 
450
463
  }
451
464
 
@@ -456,113 +469,44 @@ class ProjectSummaryOverviewItem extends AbstractModel {
456
469
  if (!params) {
457
470
  return;
458
471
  }
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;
472
+ this.Id = 'Id' in params ? params.Id : null;
473
+
474
+ if (params.RuleDetail) {
475
+ let obj = new AllocationRuleExpression();
476
+ obj.deserialize(params.RuleDetail)
477
+ this.RuleDetail = obj;
478
+ }
479
+ this.Month = 'Month' in params ? params.Month : null;
469
480
 
470
481
  }
471
482
  }
472
483
 
473
484
  /**
474
- * Resource instance information
485
+ * Budget threshold notification
475
486
  * @class
476
487
  */
477
- class RenewInstance extends AbstractModel {
488
+ class BudgetWarn extends AbstractModel {
478
489
  constructor(){
479
490
  super();
480
491
 
481
492
  /**
482
- * Instance ID.
483
- * @type {string || null}
484
- */
485
- this.InstanceId = null;
486
-
487
- /**
488
- * Product code
489
- * @type {string || null}
490
- */
491
- this.ProductCode = null;
492
-
493
- /**
494
- * Subproduct code
495
- * @type {string || null}
496
- */
497
- this.SubProductCode = null;
498
-
499
- /**
500
- * Region encoding
501
- Note: This field may return null, indicating that no valid values can be obtained.
502
- * @type {string || null}
503
- */
504
- this.RegionCode = null;
505
-
506
- /**
507
- * Instance status:
508
- NORMAL
509
- ISOLATED Isolated
510
- Note: This field may return null, indicating that no valid values can be obtained.
511
- * @type {string || null}
512
- */
513
- this.Status = null;
514
-
515
- /**
516
- * Renewal flag:
517
- NOTIFY_AND_MANUAL_RENEW: manual renewal
518
- NOTIFY_AND_AUTO_RENEW: auto-renewal.
519
- DISABLE_NOTIFY_AND_MANUAL_RENEW: non-renewal upon expiration.
520
- Note: This field may return null, indicating that no valid values can be obtained.
521
- * @type {string || null}
522
- */
523
- this.RenewFlag = null;
524
-
525
- /**
526
- * Instance expiration time.
527
- Note: This field may return null, indicating that no valid values can be obtained.
528
- * @type {string || null}
529
- */
530
- this.ExpireTime = null;
531
-
532
- /**
533
- * Instance alias: The name set by the user for the instance in the console, which is empty by default if not set.
534
- Note: This field may return null, indicating that no valid values can be obtained.
535
- * @type {string || null}
536
- */
537
- this.InstanceName = null;
538
-
539
- /**
540
- * Product name: Cloud products purchased by users, such as Cloud Virtual Machine (CVM)
541
- Note: This field may return null, indicating that no valid values can be obtained.
493
+ * ACTUAL amount
494
+ FORECAST Amount
542
495
  * @type {string || null}
543
496
  */
544
- this.ProductName = null;
497
+ this.WarnType = null;
545
498
 
546
499
  /**
547
- * Project name: Instance Ownership of the project. User can autonomously assign project to the instance on the console. Default project if not allocated.
548
- Note: This field may return null, indicating that no valid values can be obtained.
500
+ * PERCENTAGE Percentage of the budget amount, ABS Fixed value
549
501
  * @type {string || null}
550
502
  */
551
- this.ProjectName = null;
552
-
553
- /**
554
- * Automatic renewal cycle length
555
- Note: This field may return null, indicating that no valid values can be obtained.
556
- * @type {number || null}
557
- */
558
- this.RenewPeriod = null;
503
+ this.CalType = null;
559
504
 
560
505
  /**
561
- * Automatic renewal cycle unit: y year, m month
562
- Note: This field may return null, indicating that no valid values can be obtained.
506
+ * Threshold (greater than or equal to 0)
563
507
  * @type {string || null}
564
508
  */
565
- this.RenewPeriodUnit = null;
509
+ this.ThresholdValue = null;
566
510
 
567
511
  }
568
512
 
@@ -573,18 +517,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
573
517
  if (!params) {
574
518
  return;
575
519
  }
576
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
577
- this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
578
- this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
579
- this.RegionCode = 'RegionCode' in params ? params.RegionCode : null;
580
- this.Status = 'Status' in params ? params.Status : null;
581
- this.RenewFlag = 'RenewFlag' in params ? params.RenewFlag : null;
582
- this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
583
- this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
584
- this.ProductName = 'ProductName' in params ? params.ProductName : null;
585
- this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
586
- this.RenewPeriod = 'RenewPeriod' in params ? params.RenewPeriod : null;
587
- this.RenewPeriodUnit = 'RenewPeriodUnit' in params ? params.RenewPeriodUnit : null;
520
+ this.WarnType = 'WarnType' in params ? params.WarnType : null;
521
+ this.CalType = 'CalType' in params ? params.CalType : null;
522
+ this.ThresholdValue = 'ThresholdValue' in params ? params.ThresholdValue : null;
588
523
 
589
524
  }
590
525
  }
@@ -888,61 +823,349 @@ class CreateInstanceResponse extends AbstractModel {
888
823
  }
889
824
 
890
825
  /**
891
- * Product filter criteria
826
+ * Query returns complete budget information
892
827
  * @class
893
828
  */
894
- class ConditionBusiness extends AbstractModel {
829
+ class BudgetExtend extends AbstractModel {
895
830
  constructor(){
896
831
  super();
897
832
 
898
833
  /**
899
- * Product name code
834
+ * Budget Name
900
835
  * @type {string || null}
901
836
  */
902
- this.BusinessCode = null;
837
+ this.BudgetName = null;
903
838
 
904
839
  /**
905
- * Product name
840
+ * Budget limit
906
841
  * @type {string || null}
907
842
  */
908
- this.BusinessCodeName = null;
843
+ this.BudgetQuota = null;
909
844
 
910
- }
911
-
912
- /**
913
- * @private
914
- */
915
- deserialize(params) {
916
- if (!params) {
917
- return;
918
- }
919
- this.BusinessCode = 'BusinessCode' in params ? params.BusinessCode : null;
920
- this.BusinessCodeName = 'BusinessCodeName' in params ? params.BusinessCodeName : null;
845
+ /**
846
+ * DAY, MONTH, QUARTER, YEAR
847
+ * @type {string || null}
848
+ */
849
+ this.CycleType = null;
921
850
 
922
- }
923
- }
851
+ /**
852
+ * BILL System bill, CONSUMPTION Consumption bill
853
+ * @type {string || null}
854
+ */
855
+ this.BillType = null;
924
856
 
925
- /**
926
- * Cost analysis transaction type complex type
927
- * @class
928
- */
929
- class AnalyseActionTypeDetail extends AbstractModel {
930
- constructor(){
931
- super();
857
+ /**
858
+ * COST Original price, REAL_COST Actual fee, CASH Cash, INCENTIVE Free credit, VOUCHER Voucher, TRANSFER Allocated fees (royalty amount), TAX Tax, AMOUNT_BEFORE_TAX Cash payment (before tax)
859
+ * @type {string || null}
860
+ */
861
+ this.FeeType = null;
932
862
 
933
863
  /**
934
- * Transaction type code
864
+ * Validity start time 2025-01-01
935
865
  * @type {string || null}
936
866
  */
937
- this.ActionType = null;
867
+ this.PeriodBegin = null;
938
868
 
939
869
  /**
940
- * Transaction type Name
870
+ * Validity end time 2025-12-01
941
871
  * @type {string || null}
942
872
  */
943
- this.ActionTypeName = null;
873
+ this.PeriodEnd = null;
944
874
 
945
- }
875
+ /**
876
+ * COST,USAGE,RI,SP
877
+ * @type {string || null}
878
+ */
879
+ this.Dimensions = null;
880
+
881
+ /**
882
+ * FIX fixed value, CYCLE different value
883
+ * @type {string || null}
884
+ */
885
+ this.PlanType = null;
886
+
887
+ /**
888
+ * threshold alert
889
+ * @type {Array.<BudgetWarn> || null}
890
+ */
891
+ this.WarnJson = null;
892
+
893
+ /**
894
+ * User UIN
895
+ * @type {number || null}
896
+ */
897
+ this.PayerUin = null;
898
+
899
+ /**
900
+ * fluctuation alert
901
+ * @type {Array.<WaveThresholdForm> || null}
902
+ */
903
+ this.WaveThresholdJson = null;
904
+
905
+ /**
906
+ * Budget remark
907
+ * @type {string || null}
908
+ */
909
+ this.BudgetNote = null;
910
+
911
+ /**
912
+ * Custom sending object information
913
+ * @type {string || null}
914
+ */
915
+ this.SendDetail = null;
916
+
917
+ /**
918
+ * Default uin sent
919
+ * @type {number || null}
920
+ */
921
+ this.DefaultMode = null;
922
+
923
+ /**
924
+ * CUS custom budget, ZERO_COST zero-cost budget template, BY_MONTH monthly cost budget template
925
+ Note: This field may return null, indicating that no valid values can be obtained.
926
+ * @type {string || null}
927
+ */
928
+ this.TemplateType = null;
929
+
930
+ /**
931
+ * (1, "Not over budget")
932
+ (2, "Overspend")
933
+ * @type {number || null}
934
+ */
935
+ this.MoneyStatus = null;
936
+
937
+ /**
938
+ * Reminder count
939
+ * @type {number || null}
940
+ */
941
+ this.RemindTimes = null;
942
+
943
+ /**
944
+ * Creation time
945
+ * @type {string || null}
946
+ */
947
+ this.CreateTime = null;
948
+
949
+ /**
950
+ * Update budget time
951
+ * @type {string || null}
952
+ */
953
+ this.UpdateTime = null;
954
+
955
+ /**
956
+ * Associated Id of the budget
957
+ * @type {string || null}
958
+ */
959
+ this.BudgetId = null;
960
+
961
+ /**
962
+ * NO_FORECAST (Not set)
963
+ FORECAST_NO_DATA (Set up prediction but no data)
964
+ FORECAST_HAS_DATA (Set up prediction with predictive data)
965
+ Note: This field may return null, indicating that no valid values can be obtained.
966
+ * @type {string || null}
967
+ */
968
+ this.HasForecast = null;
969
+
970
+ /**
971
+ * predicted fee
972
+ Note: This field may return null, indicating that no valid values can be obtained.
973
+ * @type {string || null}
974
+ */
975
+ this.ForecastCost = null;
976
+
977
+ /**
978
+ * Projection progress
979
+ Note: This field may return null, indicating that no valid values can be obtained.
980
+ * @type {string || null}
981
+ */
982
+ this.ForecastProgress = null;
983
+
984
+ /**
985
+ * actual fee
986
+ * @type {string || null}
987
+ */
988
+ this.RealCost = null;
989
+
990
+ /**
991
+ * Custom send
992
+ * @type {Array.<BudgetSendInfoDto> || null}
993
+ */
994
+ this.BudgetSendInfoForm = null;
995
+
996
+ /**
997
+ * current cycle
998
+ * @type {string || null}
999
+ */
1000
+ this.CurDateDesc = null;
1001
+
1002
+ /**
1003
+ * EXPIRED
1004
+ ACTIVE
1005
+ UNACTIVATED Invalid
1006
+ ACTIVATED To be effective
1007
+ * @type {string || null}
1008
+ */
1009
+ this.BudgetStatus = null;
1010
+
1011
+ /**
1012
+ * Budget dimension range condition
1013
+ Note: This field may return null, indicating that no valid values can be obtained.
1014
+ * @type {BudgetConditionsForm || null}
1015
+ */
1016
+ this.DimensionsRange = null;
1017
+
1018
+ /**
1019
+ * Budget progress
1020
+ Note: This field may return null, indicating that no valid values can be obtained.
1021
+ * @type {string || null}
1022
+ */
1023
+ this.BudgetProgress = null;
1024
+
1025
+ /**
1026
+ * Budget Type is set to budget planning and returns the budget limit
1027
+ Note: This field may return null, indicating that no valid values can be obtained.
1028
+ * @type {Array.<BudgetPlan> || null}
1029
+ */
1030
+ this.BudgetQuotaJson = null;
1031
+
1032
+ }
1033
+
1034
+ /**
1035
+ * @private
1036
+ */
1037
+ deserialize(params) {
1038
+ if (!params) {
1039
+ return;
1040
+ }
1041
+ this.BudgetName = 'BudgetName' in params ? params.BudgetName : null;
1042
+ this.BudgetQuota = 'BudgetQuota' in params ? params.BudgetQuota : null;
1043
+ this.CycleType = 'CycleType' in params ? params.CycleType : null;
1044
+ this.BillType = 'BillType' in params ? params.BillType : null;
1045
+ this.FeeType = 'FeeType' in params ? params.FeeType : null;
1046
+ this.PeriodBegin = 'PeriodBegin' in params ? params.PeriodBegin : null;
1047
+ this.PeriodEnd = 'PeriodEnd' in params ? params.PeriodEnd : null;
1048
+ this.Dimensions = 'Dimensions' in params ? params.Dimensions : null;
1049
+ this.PlanType = 'PlanType' in params ? params.PlanType : null;
1050
+
1051
+ if (params.WarnJson) {
1052
+ this.WarnJson = new Array();
1053
+ for (let z in params.WarnJson) {
1054
+ let obj = new BudgetWarn();
1055
+ obj.deserialize(params.WarnJson[z]);
1056
+ this.WarnJson.push(obj);
1057
+ }
1058
+ }
1059
+ this.PayerUin = 'PayerUin' in params ? params.PayerUin : null;
1060
+
1061
+ if (params.WaveThresholdJson) {
1062
+ this.WaveThresholdJson = new Array();
1063
+ for (let z in params.WaveThresholdJson) {
1064
+ let obj = new WaveThresholdForm();
1065
+ obj.deserialize(params.WaveThresholdJson[z]);
1066
+ this.WaveThresholdJson.push(obj);
1067
+ }
1068
+ }
1069
+ this.BudgetNote = 'BudgetNote' in params ? params.BudgetNote : null;
1070
+ this.SendDetail = 'SendDetail' in params ? params.SendDetail : null;
1071
+ this.DefaultMode = 'DefaultMode' in params ? params.DefaultMode : null;
1072
+ this.TemplateType = 'TemplateType' in params ? params.TemplateType : null;
1073
+ this.MoneyStatus = 'MoneyStatus' in params ? params.MoneyStatus : null;
1074
+ this.RemindTimes = 'RemindTimes' in params ? params.RemindTimes : null;
1075
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
1076
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
1077
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
1078
+ this.HasForecast = 'HasForecast' in params ? params.HasForecast : null;
1079
+ this.ForecastCost = 'ForecastCost' in params ? params.ForecastCost : null;
1080
+ this.ForecastProgress = 'ForecastProgress' in params ? params.ForecastProgress : null;
1081
+ this.RealCost = 'RealCost' in params ? params.RealCost : null;
1082
+
1083
+ if (params.BudgetSendInfoForm) {
1084
+ this.BudgetSendInfoForm = new Array();
1085
+ for (let z in params.BudgetSendInfoForm) {
1086
+ let obj = new BudgetSendInfoDto();
1087
+ obj.deserialize(params.BudgetSendInfoForm[z]);
1088
+ this.BudgetSendInfoForm.push(obj);
1089
+ }
1090
+ }
1091
+ this.CurDateDesc = 'CurDateDesc' in params ? params.CurDateDesc : null;
1092
+ this.BudgetStatus = 'BudgetStatus' in params ? params.BudgetStatus : null;
1093
+
1094
+ if (params.DimensionsRange) {
1095
+ let obj = new BudgetConditionsForm();
1096
+ obj.deserialize(params.DimensionsRange)
1097
+ this.DimensionsRange = obj;
1098
+ }
1099
+ this.BudgetProgress = 'BudgetProgress' in params ? params.BudgetProgress : null;
1100
+
1101
+ if (params.BudgetQuotaJson) {
1102
+ this.BudgetQuotaJson = new Array();
1103
+ for (let z in params.BudgetQuotaJson) {
1104
+ let obj = new BudgetPlan();
1105
+ obj.deserialize(params.BudgetQuotaJson[z]);
1106
+ this.BudgetQuotaJson.push(obj);
1107
+ }
1108
+ }
1109
+
1110
+ }
1111
+ }
1112
+
1113
+ /**
1114
+ * Product filter criteria
1115
+ * @class
1116
+ */
1117
+ class ConditionBusiness extends AbstractModel {
1118
+ constructor(){
1119
+ super();
1120
+
1121
+ /**
1122
+ * Product name code
1123
+ * @type {string || null}
1124
+ */
1125
+ this.BusinessCode = null;
1126
+
1127
+ /**
1128
+ * Product name
1129
+ * @type {string || null}
1130
+ */
1131
+ this.BusinessCodeName = null;
1132
+
1133
+ }
1134
+
1135
+ /**
1136
+ * @private
1137
+ */
1138
+ deserialize(params) {
1139
+ if (!params) {
1140
+ return;
1141
+ }
1142
+ this.BusinessCode = 'BusinessCode' in params ? params.BusinessCode : null;
1143
+ this.BusinessCodeName = 'BusinessCodeName' in params ? params.BusinessCodeName : null;
1144
+
1145
+ }
1146
+ }
1147
+
1148
+ /**
1149
+ * Cost analysis transaction type complex type
1150
+ * @class
1151
+ */
1152
+ class AnalyseActionTypeDetail extends AbstractModel {
1153
+ constructor(){
1154
+ super();
1155
+
1156
+ /**
1157
+ * Transaction type code
1158
+ * @type {string || null}
1159
+ */
1160
+ this.ActionType = null;
1161
+
1162
+ /**
1163
+ * Transaction type Name
1164
+ * @type {string || null}
1165
+ */
1166
+ this.ActionTypeName = null;
1167
+
1168
+ }
946
1169
 
947
1170
  /**
948
1171
  * @private
@@ -958,30 +1181,48 @@ class AnalyseActionTypeDetail extends AbstractModel {
958
1181
  }
959
1182
 
960
1183
  /**
961
- * DescribeCPQBillingMapping response structure.
1184
+ * DescribeBudget request structure.
962
1185
  * @class
963
1186
  */
964
- class DescribeCPQBillingMappingResponse extends AbstractModel {
1187
+ class DescribeBudgetRequest extends AbstractModel {
965
1188
  constructor(){
966
1189
  super();
967
1190
 
968
1191
  /**
969
- * Return data details
970
- * @type {Array.<ResourceSpuSet> || null}
1192
+ * Page number, int
1193
+ * @type {number || null}
971
1194
  */
972
- this.ResourceSpuSet = null;
1195
+ this.PageNo = null;
973
1196
 
974
1197
  /**
975
- * 10
1198
+ * Number of items per page, integer
976
1199
  * @type {number || null}
977
1200
  */
978
- this.Total = null;
1201
+ this.PageSize = null;
979
1202
 
980
1203
  /**
981
- * 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.
1204
+ * Budget project id
982
1205
  * @type {string || null}
983
1206
  */
984
- this.RequestId = null;
1207
+ this.BudgetId = null;
1208
+
1209
+ /**
1210
+ * Budget Name
1211
+ * @type {string || null}
1212
+ */
1213
+ this.BudgetName = null;
1214
+
1215
+ /**
1216
+ * EXPIRED, ACTIVE, ACTIVATED pending activation
1217
+ * @type {string || null}
1218
+ */
1219
+ this.BudgetStatus = null;
1220
+
1221
+ /**
1222
+ * DAY day MONTH monthly QUARTER quarter YEAR annual
1223
+ * @type {Array.<string> || null}
1224
+ */
1225
+ this.CycleTypes = null;
985
1226
 
986
1227
  }
987
1228
 
@@ -992,17 +1233,12 @@ class DescribeCPQBillingMappingResponse extends AbstractModel {
992
1233
  if (!params) {
993
1234
  return;
994
1235
  }
995
-
996
- if (params.ResourceSpuSet) {
997
- this.ResourceSpuSet = new Array();
998
- for (let z in params.ResourceSpuSet) {
999
- let obj = new ResourceSpuSet();
1000
- obj.deserialize(params.ResourceSpuSet[z]);
1001
- this.ResourceSpuSet.push(obj);
1002
- }
1003
- }
1004
- this.Total = 'Total' in params ? params.Total : null;
1005
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
1236
+ this.PageNo = 'PageNo' in params ? params.PageNo : null;
1237
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
1238
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
1239
+ this.BudgetName = 'BudgetName' in params ? params.BudgetName : null;
1240
+ this.BudgetStatus = 'BudgetStatus' in params ? params.BudgetStatus : null;
1241
+ this.CycleTypes = 'CycleTypes' in params ? params.CycleTypes : null;
1006
1242
 
1007
1243
  }
1008
1244
  }
@@ -1763,55 +1999,183 @@ class DescribeBillSummaryByRegionRequest extends AbstractModel {
1763
1999
  }
1764
2000
 
1765
2001
  /**
1766
- * Abnormal adjustment details of UIN
2002
+ * CreateBudget request structure.
1767
2003
  * @class
1768
2004
  */
1769
- class AdjustInfoDetail extends AbstractModel {
2005
+ class CreateBudgetRequest extends AbstractModel {
1770
2006
  constructor(){
1771
2007
  super();
1772
2008
 
1773
2009
  /**
1774
- * Payer UIN: Account ID of the payer, which is the unique account identifier for the user in Tencent Cloud.
2010
+ * Budget Name
1775
2011
  * @type {string || null}
1776
2012
  */
1777
- this.PayerUin = null;
2013
+ this.BudgetName = null;
1778
2014
 
1779
2015
  /**
1780
- * Bill month, formatted as yyyy-MM.
2016
+ * DAY, MONTH, QUARTER, YEAR
1781
2017
  * @type {string || null}
1782
2018
  */
1783
- this.Month = null;
2019
+ this.CycleType = null;
1784
2020
 
1785
2021
  /**
1786
- * Adjustment type
1787
- Bill adjustment: manualAdjustment
1788
- Supplementary settlement: supplementarySettlement
1789
- Re-settlement
2022
+ * Validity start time 2025-01-01 (Period: day) / 2025-01 (Period: month)
1790
2023
  * @type {string || null}
1791
2024
  */
1792
- this.AdjustType = null;
2025
+ this.PeriodBegin = null;
1793
2026
 
1794
2027
  /**
1795
- * Adjustment Number
2028
+ * Validity end time 2025-12-01 (Period: day) / 2025-12 (Cycle: month)
1796
2029
  * @type {string || null}
1797
2030
  */
1798
- this.AdjustNum = null;
2031
+ this.PeriodEnd = null;
1799
2032
 
1800
2033
  /**
1801
- * Abnormal adjustment completion time. Format: yyyy-MM-dd HH:mm:ss
2034
+ * FIX Fixed Budget, CYCLE Budget Planning
1802
2035
  * @type {string || null}
1803
2036
  */
1804
- this.AdjustCompletionTime = null;
2037
+ this.PlanType = null;
1805
2038
 
1806
2039
  /**
1807
- * Adjustment Amount
1808
- * @type {number || null}
2040
+ * Budget amount limit
2041
+ Pass a fixed value when the schedule type is FIX (fixed budget).
2042
+ When the schedule type is CYCLE (budget planning), pass [{"dateDesc":"2025-07","quota":"1000"},{"dateDesc":"2025-08","quota":"2000"}].
2043
+ * @type {string || null}
1809
2044
  */
1810
- this.AdjustAmount = null;
2045
+ this.BudgetQuota = null;
1811
2046
 
1812
- }
2047
+ /**
2048
+ * BILL System bill, CONSUMPTION Consumption bill
2049
+ * @type {string || null}
2050
+ */
2051
+ this.BillType = null;
1813
2052
 
1814
- /**
2053
+ /**
2054
+ * COST Original price, REAL_COST Actual fee, CASH Cash, INCENTIVE Free credit, VOUCHER Voucher, TRANSFER Allocated fees (royalty amount), TAX Tax, AMOUNT_BEFORE_TAX Cash payment (before tax)
2055
+ * @type {string || null}
2056
+ */
2057
+ this.FeeType = null;
2058
+
2059
+ /**
2060
+ * Threshold alert
2061
+ * @type {Array.<BudgetWarn> || null}
2062
+ */
2063
+ this.WarnJson = null;
2064
+
2065
+ /**
2066
+ * Budget remark
2067
+ * @type {string || null}
2068
+ */
2069
+ this.BudgetNote = null;
2070
+
2071
+ /**
2072
+ * Budget Dimension Range Condition
2073
+ * @type {BudgetConditionsForm || null}
2074
+ */
2075
+ this.DimensionsRange = null;
2076
+
2077
+ /**
2078
+ * Fluctuation alert
2079
+ * @type {Array.<WaveThresholdForm> || null}
2080
+ */
2081
+ this.WaveThresholdJson = null;
2082
+
2083
+ }
2084
+
2085
+ /**
2086
+ * @private
2087
+ */
2088
+ deserialize(params) {
2089
+ if (!params) {
2090
+ return;
2091
+ }
2092
+ this.BudgetName = 'BudgetName' in params ? params.BudgetName : null;
2093
+ this.CycleType = 'CycleType' in params ? params.CycleType : null;
2094
+ this.PeriodBegin = 'PeriodBegin' in params ? params.PeriodBegin : null;
2095
+ this.PeriodEnd = 'PeriodEnd' in params ? params.PeriodEnd : null;
2096
+ this.PlanType = 'PlanType' in params ? params.PlanType : null;
2097
+ this.BudgetQuota = 'BudgetQuota' in params ? params.BudgetQuota : null;
2098
+ this.BillType = 'BillType' in params ? params.BillType : null;
2099
+ this.FeeType = 'FeeType' in params ? params.FeeType : null;
2100
+
2101
+ if (params.WarnJson) {
2102
+ this.WarnJson = new Array();
2103
+ for (let z in params.WarnJson) {
2104
+ let obj = new BudgetWarn();
2105
+ obj.deserialize(params.WarnJson[z]);
2106
+ this.WarnJson.push(obj);
2107
+ }
2108
+ }
2109
+ this.BudgetNote = 'BudgetNote' in params ? params.BudgetNote : null;
2110
+
2111
+ if (params.DimensionsRange) {
2112
+ let obj = new BudgetConditionsForm();
2113
+ obj.deserialize(params.DimensionsRange)
2114
+ this.DimensionsRange = obj;
2115
+ }
2116
+
2117
+ if (params.WaveThresholdJson) {
2118
+ this.WaveThresholdJson = new Array();
2119
+ for (let z in params.WaveThresholdJson) {
2120
+ let obj = new WaveThresholdForm();
2121
+ obj.deserialize(params.WaveThresholdJson[z]);
2122
+ this.WaveThresholdJson.push(obj);
2123
+ }
2124
+ }
2125
+
2126
+ }
2127
+ }
2128
+
2129
+ /**
2130
+ * Abnormal adjustment details of UIN
2131
+ * @class
2132
+ */
2133
+ class AdjustInfoDetail extends AbstractModel {
2134
+ constructor(){
2135
+ super();
2136
+
2137
+ /**
2138
+ * Payer UIN: Account ID of the payer, which is the unique account identifier for the user in Tencent Cloud.
2139
+ * @type {string || null}
2140
+ */
2141
+ this.PayerUin = null;
2142
+
2143
+ /**
2144
+ * Bill month, formatted as yyyy-MM.
2145
+ * @type {string || null}
2146
+ */
2147
+ this.Month = null;
2148
+
2149
+ /**
2150
+ * Adjustment type
2151
+ Bill adjustment: manualAdjustment
2152
+ Supplementary settlement: supplementarySettlement
2153
+ Re-settlement
2154
+ * @type {string || null}
2155
+ */
2156
+ this.AdjustType = null;
2157
+
2158
+ /**
2159
+ * Adjustment Number
2160
+ * @type {string || null}
2161
+ */
2162
+ this.AdjustNum = null;
2163
+
2164
+ /**
2165
+ * Abnormal adjustment completion time. Format: yyyy-MM-dd HH:mm:ss
2166
+ * @type {string || null}
2167
+ */
2168
+ this.AdjustCompletionTime = null;
2169
+
2170
+ /**
2171
+ * Adjustment Amount
2172
+ * @type {number || null}
2173
+ */
2174
+ this.AdjustAmount = null;
2175
+
2176
+ }
2177
+
2178
+ /**
1815
2179
  * @private
1816
2180
  */
1817
2181
  deserialize(params) {
@@ -2008,66 +2372,30 @@ class ConsumptionRegionSummaryDataItem extends AbstractModel {
2008
2372
  }
2009
2373
 
2010
2374
  /**
2011
- * DescribeAllocationUnitDetail response structure.
2375
+ * DeleteBudget response structure.
2012
2376
  * @class
2013
2377
  */
2014
- class DescribeAllocationUnitDetailResponse extends AbstractModel {
2378
+ class DeleteBudgetResponse extends AbstractModel {
2015
2379
  constructor(){
2016
2380
  super();
2017
2381
 
2018
2382
  /**
2019
- * ID of a cost allocation unit.
2020
- * @type {number || null}
2021
- */
2022
- this.Id = null;
2023
-
2024
- /**
2025
- * Associated UIN of the cost allocation unit.
2026
- * @type {string || null}
2027
- */
2028
- this.Uin = null;
2029
-
2030
- /**
2031
- * Specifies the name of a cost allocation unit.
2032
- * @type {string || null}
2033
- */
2034
- this.Name = null;
2035
-
2036
- /**
2037
- * Cost allocation unit parent node ID.
2038
- * @type {number || null}
2039
- */
2040
- this.ParentId = null;
2041
-
2042
- /**
2043
- * Source organization name.
2044
- * @type {string || null}
2045
- */
2046
- this.SourceName = null;
2047
-
2048
- /**
2049
- * Source organization ID.
2050
- * @type {string || null}
2051
- */
2052
- this.SourceId = null;
2053
-
2054
- /**
2055
- * Specifies remark description.
2056
- * @type {string || null}
2383
+ * Return the deleted budget project id
2384
+ * @type {Array.<string> || null}
2057
2385
  */
2058
- this.Remark = null;
2386
+ this.Data = null;
2059
2387
 
2060
2388
  /**
2061
- * Cost allocation unit identifier.
2389
+ * Prompt
2062
2390
  * @type {string || null}
2063
2391
  */
2064
- this.TreeNodeUniqKey = null;
2392
+ this.Message = null;
2065
2393
 
2066
2394
  /**
2067
- * If a cost allocation unit is set with an collection rule, return the collection rule ID. if no collection rule is set, do not return.
2395
+ * Return code
2068
2396
  * @type {number || null}
2069
2397
  */
2070
- this.RuleId = null;
2398
+ this.Code = null;
2071
2399
 
2072
2400
  /**
2073
2401
  * 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.
@@ -2084,15 +2412,9 @@ class DescribeAllocationUnitDetailResponse extends AbstractModel {
2084
2412
  if (!params) {
2085
2413
  return;
2086
2414
  }
2087
- this.Id = 'Id' in params ? params.Id : null;
2088
- this.Uin = 'Uin' in params ? params.Uin : null;
2089
- this.Name = 'Name' in params ? params.Name : null;
2090
- this.ParentId = 'ParentId' in params ? params.ParentId : null;
2091
- this.SourceName = 'SourceName' in params ? params.SourceName : null;
2092
- this.SourceId = 'SourceId' in params ? params.SourceId : null;
2093
- this.Remark = 'Remark' in params ? params.Remark : null;
2094
- this.TreeNodeUniqKey = 'TreeNodeUniqKey' in params ? params.TreeNodeUniqKey : null;
2095
- this.RuleId = 'RuleId' in params ? params.RuleId : null;
2415
+ this.Data = 'Data' in params ? params.Data : null;
2416
+ this.Message = 'Message' in params ? params.Message : null;
2417
+ this.Code = 'Code' in params ? params.Code : null;
2096
2418
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
2097
2419
 
2098
2420
  }
@@ -3240,6 +3562,43 @@ class DeleteAllocationTagRequest extends AbstractModel {
3240
3562
  }
3241
3563
  }
3242
3564
 
3565
+ /**
3566
+ * Field sorting
3567
+ * @class
3568
+ */
3569
+ class OrderDto extends AbstractModel {
3570
+ constructor(){
3571
+ super();
3572
+
3573
+ /**
3574
+ * Field
3575
+ Note: This field may return null, indicating that no valid values can be obtained.
3576
+ * @type {string || null}
3577
+ */
3578
+ this.Column = null;
3579
+
3580
+ /**
3581
+ * whether in ascending order
3582
+ Note: This field may return null, indicating that no valid values can be obtained.
3583
+ * @type {boolean || null}
3584
+ */
3585
+ this.Asc = null;
3586
+
3587
+ }
3588
+
3589
+ /**
3590
+ * @private
3591
+ */
3592
+ deserialize(params) {
3593
+ if (!params) {
3594
+ return;
3595
+ }
3596
+ this.Column = 'Column' in params ? params.Column : null;
3597
+ this.Asc = 'Asc' in params ? params.Asc : null;
3598
+
3599
+ }
3600
+ }
3601
+
3243
3602
  /**
3244
3603
  * Operate related resources return detail
3245
3604
  * @class
@@ -3580,6 +3939,61 @@ class BillDistributionResourceSummary extends AbstractModel {
3580
3939
  }
3581
3940
  }
3582
3941
 
3942
+ /**
3943
+ * Threshold fluctuation warning information
3944
+ * @class
3945
+ */
3946
+ class WaveThresholdForm extends AbstractModel {
3947
+ constructor(){
3948
+ super();
3949
+
3950
+ /**
3951
+ * ACTUAL actual amount, FORECAST forecast amount
3952
+ Note: This field may return null, indicating that no valid values can be obtained.
3953
+ * @type {string || null}
3954
+ */
3955
+ this.WarnType = null;
3956
+
3957
+ /**
3958
+ * Fluctuation threshold (equal to or greater than 0)
3959
+ Note: This field may return null, indicating that no valid values can be obtained.
3960
+ * @type {string || null}
3961
+ */
3962
+ this.Threshold = null;
3963
+
3964
+ /**
3965
+ * Alarm type: chain period-over-period, yoy year-over-year, fix fixed value
3966
+ Supported types: day-on-day comparison chain day, day-on-day comparison chain weekday, year-on-year comparison by month yoy day, daily fixed value fix day, month-on-month comparison chain month, fixed monthly value fix month
3967
+ Note: This field may return null, indicating that no valid values can be obtained.
3968
+ * @type {string || null}
3969
+ */
3970
+ this.MetaType = null;
3971
+
3972
+ /**
3973
+ * Alarm dimension: day, month, weekday
3974
+ Supported types: day-on-day comparison chain day, day-on-day comparison chain weekday, year-on-year comparison by month yoy day, daily fixed value fix day, month-on-month comparison chain month, fixed monthly value fix month
3975
+ Note: This field may return null, indicating that no valid values can be obtained.
3976
+ * @type {string || null}
3977
+ */
3978
+ this.PeriodType = null;
3979
+
3980
+ }
3981
+
3982
+ /**
3983
+ * @private
3984
+ */
3985
+ deserialize(params) {
3986
+ if (!params) {
3987
+ return;
3988
+ }
3989
+ this.WarnType = 'WarnType' in params ? params.WarnType : null;
3990
+ this.Threshold = 'Threshold' in params ? params.Threshold : null;
3991
+ this.MetaType = 'MetaType' in params ? params.MetaType : null;
3992
+ this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
3993
+
3994
+ }
3995
+ }
3996
+
3583
3997
  /**
3584
3998
  * Detailed summary of products
3585
3999
  * @class
@@ -4213,80 +4627,103 @@ class ConsumptionSummaryTotal extends AbstractModel {
4213
4627
  }
4214
4628
 
4215
4629
  /**
4216
- * DescribeAllocationOverview request structure.
4630
+ * Budget management custom fee range parameter
4217
4631
  * @class
4218
4632
  */
4219
- class DescribeAllocationOverviewRequest extends AbstractModel {
4633
+ class BudgetConditionsForm extends AbstractModel {
4220
4634
  constructor(){
4221
4635
  super();
4222
4636
 
4223
4637
  /**
4224
- * Quantity, with the maximum value of 1,000
4225
- * @type {number || null}
4638
+ * <p>Product.</p>
4639
+ Note: This field may return null, indicating that no valid values can be obtained.
4640
+ * @type {Array.<string> || null}
4226
4641
  */
4227
- this.Limit = null;
4642
+ this.Business = null;
4228
4643
 
4229
4644
  /**
4230
- * Pagination offset. If offset is 0, it indicates the first page. If limit is 100, then offset is 100, it indicates the second page; if offset is 200, it indicates the third page, and so on
4231
- * @type {number || null}
4645
+ * <p>Billing mode</p><p>Enumeration value:</p><ul><li>prePay: Monthly Subscription</li><li>postPay: Pay-As-You-Go</li></ul>
4646
+ Note: This field may return null, indicating that no valid values can be obtained.
4647
+ * @type {Array.<string> || null}
4232
4648
  */
4233
- this.Offset = null;
4649
+ this.PayMode = null;
4234
4650
 
4235
4651
  /**
4236
- * Bill month, in the format of 2024-02, which is the current month by default if not provided
4237
- * @type {string || null}
4652
+ * <p>Subproduct</p>
4653
+ Note: This field may return null, indicating that no valid values can be obtained.
4654
+ * @type {Array.<string> || null}
4238
4655
  */
4239
- this.Month = null;
4656
+ this.ProductCodes = null;
4240
4657
 
4241
4658
  /**
4242
- * Statistical period, with the enumerated values as follows:
4243
- month - Month
4244
- day - Day
4245
- * @type {string || null}
4659
+ * <p>Component code</p>
4660
+ Note: This field may return null, indicating that no valid values can be obtained.
4661
+ * @type {Array.<string> || null}
4246
4662
  */
4247
- this.PeriodType = null;
4663
+ this.ComponentCodes = null;
4248
4664
 
4249
4665
  /**
4250
- * Unique identifier of a billing unit, used for filtering
4666
+ * <p>Region.</p>
4667
+ Note: This field may return null, indicating that no valid values can be obtained.
4251
4668
  * @type {Array.<string> || null}
4252
4669
  */
4253
- this.TreeNodeUniqKeys = null;
4670
+ this.ZoneIds = null;
4254
4671
 
4255
4672
  /**
4256
- * Sorting field, with the enumerated values as follows:
4257
- GatherCashPayAmount - Collected fees (cash)
4258
- GatherVoucherPayAmount - Collected fees (voucher)
4259
- GatherIncentivePayAmount - Collected fees (free credit)
4260
- GatherTransferPayAmount - Collected fees (royalty amount)
4261
- AllocateCashPayAmount - Allocated fees (cash)
4262
- AllocateVoucherPayAmount - Allocated fees (voucher)
4263
- AllocateIncentivePayAmount - Allocated fees (free credit)
4264
- AllocateTransferPayAmount - Allocated fees (royalty amount)
4265
- TotalCashPayAmount - Total fees (cash)
4266
- TotalVoucherPayAmount - Total fees (voucher)
4267
- TotalIncentivePayAmount - Total fees (free credit)
4268
- TotalTransferPayAmount - Total fees (royalty amount)
4269
- GatherRealCost - Collected fees (discounted total)
4270
- AllocateRealCost - Allocated fees (discounted total)
4271
- RealTotalCost - Total fees (discounted total)
4272
- Ratio - Proportion (discounted total)
4273
- * @type {string || null}
4673
+ * <p>AZ.</p>
4674
+ Note: This field may return null, indicating that no valid values can be obtained.
4675
+ * @type {Array.<string> || null}
4274
4676
  */
4275
- this.Sort = null;
4677
+ this.RegionIds = null;
4276
4678
 
4277
4679
  /**
4278
- * Sorting type, with the enumerated values as follows:
4279
- asc - Ascending
4280
- desc - Descending
4281
- * @type {string || null}
4680
+ * <p>Project</p>
4681
+ Note: This field may return null, indicating that no valid values can be obtained.
4682
+ * @type {Array.<string> || null}
4282
4683
  */
4283
- this.SortType = null;
4684
+ this.ProjectIds = null;
4284
4685
 
4285
4686
  /**
4286
- * Date, used for filtering
4687
+ * <p>Transaction type</p>
4688
+ Note: This field may return null, indicating that no valid values can be obtained.
4287
4689
  * @type {Array.<string> || null}
4288
4690
  */
4289
- this.BillDates = null;
4691
+ this.ActionTypes = null;
4692
+
4693
+ /**
4694
+ * <p>Consumption type</p>
4695
+ Note: This field may return null, indicating that no valid values can be obtained.
4696
+ * @type {Array.<string> || null}
4697
+ */
4698
+ this.ConsumptionTypes = null;
4699
+
4700
+ /**
4701
+ * <p>Tag.</p>
4702
+ Note: This field may return null, indicating that no valid values can be obtained.
4703
+ * @type {Array.<TagsForm> || null}
4704
+ */
4705
+ this.Tags = null;
4706
+
4707
+ /**
4708
+ * <p>Leaf-level cost allocation unit</p>
4709
+ Note: This field may return null, indicating that no valid values can be obtained.
4710
+ * @type {Array.<string> || null}
4711
+ */
4712
+ this.PayerUins = null;
4713
+
4714
+ /**
4715
+ * <p>Primary user Uin</p>
4716
+ Note: This field may return null, indicating that no valid values can be obtained.
4717
+ * @type {Array.<string> || null}
4718
+ */
4719
+ this.OwnerUins = null;
4720
+
4721
+ /**
4722
+ * <p>Unique key of the leaf-level cost allocation unit</p>
4723
+ Note: This field may return null, indicating that no valid values can be obtained.
4724
+ * @type {Array.<string> || null}
4725
+ */
4726
+ this.TreeNodeUniqKeys = null;
4290
4727
 
4291
4728
  }
4292
4729
 
@@ -4297,14 +4734,168 @@ desc - Descending
4297
4734
  if (!params) {
4298
4735
  return;
4299
4736
  }
4300
- this.Limit = 'Limit' in params ? params.Limit : null;
4301
- this.Offset = 'Offset' in params ? params.Offset : null;
4302
- this.Month = 'Month' in params ? params.Month : null;
4303
- this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
4737
+ this.Business = 'Business' in params ? params.Business : null;
4738
+ this.PayMode = 'PayMode' in params ? params.PayMode : null;
4739
+ this.ProductCodes = 'ProductCodes' in params ? params.ProductCodes : null;
4740
+ this.ComponentCodes = 'ComponentCodes' in params ? params.ComponentCodes : null;
4741
+ this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
4742
+ this.RegionIds = 'RegionIds' in params ? params.RegionIds : null;
4743
+ this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
4744
+ this.ActionTypes = 'ActionTypes' in params ? params.ActionTypes : null;
4745
+ this.ConsumptionTypes = 'ConsumptionTypes' in params ? params.ConsumptionTypes : null;
4746
+
4747
+ if (params.Tags) {
4748
+ this.Tags = new Array();
4749
+ for (let z in params.Tags) {
4750
+ let obj = new TagsForm();
4751
+ obj.deserialize(params.Tags[z]);
4752
+ this.Tags.push(obj);
4753
+ }
4754
+ }
4755
+ this.PayerUins = 'PayerUins' in params ? params.PayerUins : null;
4756
+ this.OwnerUins = 'OwnerUins' in params ? params.OwnerUins : null;
4304
4757
  this.TreeNodeUniqKeys = 'TreeNodeUniqKeys' in params ? params.TreeNodeUniqKeys : null;
4305
- this.Sort = 'Sort' in params ? params.Sort : null;
4306
- this.SortType = 'SortType' in params ? params.SortType : null;
4307
- this.BillDates = 'BillDates' in params ? params.BillDates : null;
4758
+
4759
+ }
4760
+ }
4761
+
4762
+ /**
4763
+ * DescribeAccountBalance response structure.
4764
+ * @class
4765
+ */
4766
+ class DescribeAccountBalanceResponse extends AbstractModel {
4767
+ constructor(){
4768
+ super();
4769
+
4770
+ /**
4771
+ * Available account balance in cents, which takes the same calculation rules as `RealBalance`, `CreditBalance`, and `RealCreditBalance`.
4772
+ * @type {number || null}
4773
+ */
4774
+ this.Balance = null;
4775
+
4776
+ /**
4777
+ * The user Uin for the query
4778
+ * @type {number || null}
4779
+ */
4780
+ this.Uin = null;
4781
+
4782
+ /**
4783
+ * Available account balance in cents, which takes the same calculation rules as `Balance`, `CreditBalance`, and `RealCreditBalance`.
4784
+ * @type {number || null}
4785
+ */
4786
+ this.RealBalance = null;
4787
+
4788
+ /**
4789
+ * Cash account balance in cents. Currently, this field is not applied.
4790
+ * @type {number || null}
4791
+ */
4792
+ this.CashAccountBalance = null;
4793
+
4794
+ /**
4795
+ * Income account balance in cents. Currently, this field is not applied.
4796
+ * @type {number || null}
4797
+ */
4798
+ this.IncomeIntoAccountBalance = null;
4799
+
4800
+ /**
4801
+ * Present account balance in cents. Currently, this field is not applied.
4802
+ * @type {number || null}
4803
+ */
4804
+ this.PresentAccountBalance = null;
4805
+
4806
+ /**
4807
+ * Frozen amount in cents.
4808
+ * @type {number || null}
4809
+ */
4810
+ this.FreezeAmount = null;
4811
+
4812
+ /**
4813
+ * Overdue amount in cents, which is when the available credit balance is negative.
4814
+ * @type {number || null}
4815
+ */
4816
+ this.OweAmount = null;
4817
+
4818
+ /**
4819
+ * Whether overdue payments are allowed. Currently, this field is not applied.
4820
+ * @type {boolean || null}
4821
+ */
4822
+ this.IsAllowArrears = null;
4823
+
4824
+ /**
4825
+ * Whether you have a credit limit. Currently, this field is not applied.
4826
+ * @type {boolean || null}
4827
+ */
4828
+ this.IsCreditLimited = null;
4829
+
4830
+ /**
4831
+ * Credit limit in cents. Credit limit-available credit balance = consumption amount
4832
+ * @type {number || null}
4833
+ */
4834
+ this.CreditAmount = null;
4835
+
4836
+ /**
4837
+ * Available credit balance in cents, which takes the same calculation rules as `Balance`, `RealBalance`, and `RealCreditBalance`.
4838
+ * @type {number || null}
4839
+ */
4840
+ this.CreditBalance = null;
4841
+
4842
+ /**
4843
+ * Available account balance in cents, which takes the same calculation rules as `Balance`, `RealBalance`, and `CreditBalance`.
4844
+ * @type {number || null}
4845
+ */
4846
+ this.RealCreditBalance = null;
4847
+
4848
+ /**
4849
+ * Temporary limit, unit cent
4850
+ * @type {number || null}
4851
+ */
4852
+ this.TempCredit = null;
4853
+
4854
+ /**
4855
+ * Temporary limit details
4856
+ * @type {Array.<UinTempAmountModel> || null}
4857
+ */
4858
+ this.TempAmountInfoList = null;
4859
+
4860
+ /**
4861
+ * 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.
4862
+ * @type {string || null}
4863
+ */
4864
+ this.RequestId = null;
4865
+
4866
+ }
4867
+
4868
+ /**
4869
+ * @private
4870
+ */
4871
+ deserialize(params) {
4872
+ if (!params) {
4873
+ return;
4874
+ }
4875
+ this.Balance = 'Balance' in params ? params.Balance : null;
4876
+ this.Uin = 'Uin' in params ? params.Uin : null;
4877
+ this.RealBalance = 'RealBalance' in params ? params.RealBalance : null;
4878
+ this.CashAccountBalance = 'CashAccountBalance' in params ? params.CashAccountBalance : null;
4879
+ this.IncomeIntoAccountBalance = 'IncomeIntoAccountBalance' in params ? params.IncomeIntoAccountBalance : null;
4880
+ this.PresentAccountBalance = 'PresentAccountBalance' in params ? params.PresentAccountBalance : null;
4881
+ this.FreezeAmount = 'FreezeAmount' in params ? params.FreezeAmount : null;
4882
+ this.OweAmount = 'OweAmount' in params ? params.OweAmount : null;
4883
+ this.IsAllowArrears = 'IsAllowArrears' in params ? params.IsAllowArrears : null;
4884
+ this.IsCreditLimited = 'IsCreditLimited' in params ? params.IsCreditLimited : null;
4885
+ this.CreditAmount = 'CreditAmount' in params ? params.CreditAmount : null;
4886
+ this.CreditBalance = 'CreditBalance' in params ? params.CreditBalance : null;
4887
+ this.RealCreditBalance = 'RealCreditBalance' in params ? params.RealCreditBalance : null;
4888
+ this.TempCredit = 'TempCredit' in params ? params.TempCredit : null;
4889
+
4890
+ if (params.TempAmountInfoList) {
4891
+ this.TempAmountInfoList = new Array();
4892
+ for (let z in params.TempAmountInfoList) {
4893
+ let obj = new UinTempAmountModel();
4894
+ obj.deserialize(params.TempAmountInfoList[z]);
4895
+ this.TempAmountInfoList.push(obj);
4896
+ }
4897
+ }
4898
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
4308
4899
 
4309
4900
  }
4310
4901
  }
@@ -4370,6 +4961,193 @@ Note: This field may return null, indicating that no valid values can be obtaine
4370
4961
  }
4371
4962
  }
4372
4963
 
4964
+ /**
4965
+ * DescribeAllocationSummaryByResource request structure.
4966
+ * @class
4967
+ */
4968
+ class DescribeAllocationSummaryByResourceRequest extends AbstractModel {
4969
+ constructor(){
4970
+ super();
4971
+
4972
+ /**
4973
+ * Quantity, with the maximum value of 1,000
4974
+
4975
+
4976
+ * @type {number || null}
4977
+ */
4978
+ this.Limit = null;
4979
+
4980
+ /**
4981
+ * Pagination offset. If Offset is 0, it indicates the first page. If Limit is 100, then Offset is 100, and it indicates the second page. If Offset is 200, it indicates the third page, and so on.
4982
+ * @type {number || null}
4983
+ */
4984
+ this.Offset = null;
4985
+
4986
+ /**
4987
+ * Bill month, in the format of 2024-02, which is the current month by default if not provided
4988
+
4989
+
4990
+ * @type {string || null}
4991
+ */
4992
+ this.Month = null;
4993
+
4994
+ /**
4995
+ * Statistical period, with the enumerated values as follows:
4996
+ month - Month
4997
+ day - Day
4998
+ * @type {string || null}
4999
+ */
5000
+ this.PeriodType = null;
5001
+
5002
+ /**
5003
+ * Unique identifier of a billing unit, used for filtering
5004
+ * @type {Array.<string> || null}
5005
+ */
5006
+ this.TreeNodeUniqKeys = null;
5007
+
5008
+ /**
5009
+ * Sorting field, with the enumerated values as follows:
5010
+ RiTimeSpan - Deduction duration of a reserved instance
5011
+ ExtendPayAmount1 - Original price for the deduction duration of a reserved instance
5012
+ RealCost - Discounted total
5013
+ CashPayAmount - Cash amount
5014
+ VoucherPayAmount - Amount of promo voucher
5015
+ IncentivePayAmount - Amount of free credit
5016
+ TransferPayAmount - Royalty amount
5017
+ Cost - Original price of a component
5018
+ * @type {string || null}
5019
+ */
5020
+ this.Sort = null;
5021
+
5022
+ /**
5023
+ * Sorting type, with the enumerated values as follows:
5024
+ asc - Ascending
5025
+ desc - Descending
5026
+ * @type {string || null}
5027
+ */
5028
+ this.SortType = null;
5029
+
5030
+ /**
5031
+ * Date, used for filtering
5032
+ * @type {Array.<string> || null}
5033
+ */
5034
+ this.BillDates = null;
5035
+
5036
+ /**
5037
+ * Product code, used for filtering
5038
+ * @type {Array.<string> || null}
5039
+ */
5040
+ this.BusinessCodes = null;
5041
+
5042
+ /**
5043
+ * User UIN, used for filtering
5044
+ * @type {Array.<string> || null}
5045
+ */
5046
+ this.OwnerUins = null;
5047
+
5048
+ /**
5049
+ * Operator UIN, used for filtering
5050
+ * @type {Array.<string> || null}
5051
+ */
5052
+ this.OperateUins = null;
5053
+
5054
+ /**
5055
+ * Billing mode code, used for filtering
5056
+ * @type {Array.<string> || null}
5057
+ */
5058
+ this.PayModes = null;
5059
+
5060
+ /**
5061
+ * Transaction type code, used for filtering
5062
+ * @type {Array.<string> || null}
5063
+ */
5064
+ this.ActionTypes = null;
5065
+
5066
+ /**
5067
+ * Subproduct code, used for filtering
5068
+ * @type {Array.<string> || null}
5069
+ */
5070
+ this.ProductCodes = null;
5071
+
5072
+ /**
5073
+ * Region ID, used for filtering
5074
+ * @type {Array.<string> || null}
5075
+ */
5076
+ this.RegionIds = null;
5077
+
5078
+ /**
5079
+ * Availability zone (AZ) ID, used for filtering
5080
+ * @type {Array.<string> || null}
5081
+ */
5082
+ this.ZoneIds = null;
5083
+
5084
+ /**
5085
+ * Instance type code, used for filtering
5086
+ * @type {Array.<string> || null}
5087
+ */
5088
+ this.InstanceTypes = null;
5089
+
5090
+ /**
5091
+ * Tag, used for filtering
5092
+ * @type {Array.<string> || null}
5093
+ */
5094
+ this.Tag = null;
5095
+
5096
+ /**
5097
+ * Fuzzy search: supports tag, resource ID, and resource alias
5098
+ * @type {string || null}
5099
+ */
5100
+ this.SearchKey = null;
5101
+
5102
+ /**
5103
+ * Project ID, used for filtering
5104
+ * @type {Array.<number> || null}
5105
+ */
5106
+ this.ProjectIds = null;
5107
+
5108
+ /**
5109
+ * Cost collection type, with the enumerated values as follows:
5110
+ 0 - Allocation
5111
+ 1 - Collection
5112
+ -1 - Unallocated
5113
+ * @type {Array.<number> || null}
5114
+ */
5115
+ this.AllocationType = null;
5116
+
5117
+ }
5118
+
5119
+ /**
5120
+ * @private
5121
+ */
5122
+ deserialize(params) {
5123
+ if (!params) {
5124
+ return;
5125
+ }
5126
+ this.Limit = 'Limit' in params ? params.Limit : null;
5127
+ this.Offset = 'Offset' in params ? params.Offset : null;
5128
+ this.Month = 'Month' in params ? params.Month : null;
5129
+ this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
5130
+ this.TreeNodeUniqKeys = 'TreeNodeUniqKeys' in params ? params.TreeNodeUniqKeys : null;
5131
+ this.Sort = 'Sort' in params ? params.Sort : null;
5132
+ this.SortType = 'SortType' in params ? params.SortType : null;
5133
+ this.BillDates = 'BillDates' in params ? params.BillDates : null;
5134
+ this.BusinessCodes = 'BusinessCodes' in params ? params.BusinessCodes : null;
5135
+ this.OwnerUins = 'OwnerUins' in params ? params.OwnerUins : null;
5136
+ this.OperateUins = 'OperateUins' in params ? params.OperateUins : null;
5137
+ this.PayModes = 'PayModes' in params ? params.PayModes : null;
5138
+ this.ActionTypes = 'ActionTypes' in params ? params.ActionTypes : null;
5139
+ this.ProductCodes = 'ProductCodes' in params ? params.ProductCodes : null;
5140
+ this.RegionIds = 'RegionIds' in params ? params.RegionIds : null;
5141
+ this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
5142
+ this.InstanceTypes = 'InstanceTypes' in params ? params.InstanceTypes : null;
5143
+ this.Tag = 'Tag' in params ? params.Tag : null;
5144
+ this.SearchKey = 'SearchKey' in params ? params.SearchKey : null;
5145
+ this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
5146
+ this.AllocationType = 'AllocationType' in params ? params.AllocationType : null;
5147
+
5148
+ }
5149
+ }
5150
+
4373
5151
  /**
4374
5152
  * DescribeCostDetail response structure.
4375
5153
  * @class
@@ -4539,6 +5317,126 @@ class DescribeAllocationSummaryByItemResponse extends AbstractModel {
4539
5317
  }
4540
5318
  }
4541
5319
 
5320
+ /**
5321
+ * Paginated data of budget modification records
5322
+ * @class
5323
+ */
5324
+ class DataForBudgetOperationLogPage extends AbstractModel {
5325
+ constructor(){
5326
+ super();
5327
+
5328
+ /**
5329
+ * Pagination
5330
+ * @type {number || null}
5331
+ */
5332
+ this.Pages = null;
5333
+
5334
+ /**
5335
+ * Pagination size.
5336
+ * @type {number || null}
5337
+ */
5338
+ this.Size = null;
5339
+
5340
+ /**
5341
+ * Total amount
5342
+ * @type {number || null}
5343
+ */
5344
+ this.Total = null;
5345
+
5346
+ /**
5347
+ * Querying the data list
5348
+ Note: This field may return null, indicating that no valid values can be obtained.
5349
+ * @type {Array.<BudgetOperationLogEntity> || null}
5350
+ */
5351
+ this.Records = null;
5352
+
5353
+ /**
5354
+ * Current Page
5355
+ * @type {number || null}
5356
+ */
5357
+ this.Current = null;
5358
+
5359
+ }
5360
+
5361
+ /**
5362
+ * @private
5363
+ */
5364
+ deserialize(params) {
5365
+ if (!params) {
5366
+ return;
5367
+ }
5368
+ this.Pages = 'Pages' in params ? params.Pages : null;
5369
+ this.Size = 'Size' in params ? params.Size : null;
5370
+ this.Total = 'Total' in params ? params.Total : null;
5371
+
5372
+ if (params.Records) {
5373
+ this.Records = new Array();
5374
+ for (let z in params.Records) {
5375
+ let obj = new BudgetOperationLogEntity();
5376
+ obj.deserialize(params.Records[z]);
5377
+ this.Records.push(obj);
5378
+ }
5379
+ }
5380
+ this.Current = 'Current' in params ? params.Current : null;
5381
+
5382
+ }
5383
+ }
5384
+
5385
+ /**
5386
+ * ModifyBudget response structure.
5387
+ * @class
5388
+ */
5389
+ class ModifyBudgetResponse extends AbstractModel {
5390
+ constructor(){
5391
+ super();
5392
+
5393
+ /**
5394
+ * Refresh budget return information
5395
+ * @type {BudgetInfoApiResponse || null}
5396
+ */
5397
+ this.Data = null;
5398
+
5399
+ /**
5400
+ * update success
5401
+ Note: This field may return null, indicating that no valid values can be obtained.
5402
+ * @type {string || null}
5403
+ */
5404
+ this.Message = null;
5405
+
5406
+ /**
5407
+ * Return code
5408
+ * @type {number || null}
5409
+ */
5410
+ this.Code = null;
5411
+
5412
+ /**
5413
+ * 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.
5414
+ * @type {string || null}
5415
+ */
5416
+ this.RequestId = null;
5417
+
5418
+ }
5419
+
5420
+ /**
5421
+ * @private
5422
+ */
5423
+ deserialize(params) {
5424
+ if (!params) {
5425
+ return;
5426
+ }
5427
+
5428
+ if (params.Data) {
5429
+ let obj = new BudgetInfoApiResponse();
5430
+ obj.deserialize(params.Data)
5431
+ this.Data = obj;
5432
+ }
5433
+ this.Message = 'Message' in params ? params.Message : null;
5434
+ this.Code = 'Code' in params ? params.Code : null;
5435
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5436
+
5437
+ }
5438
+ }
5439
+
4542
5440
  /**
4543
5441
  * DescribeGatherResource request structure.
4544
5442
  * @class
@@ -4955,30 +5853,18 @@ Note: this field may return `null`, indicating that no valid values can be obtai
4955
5853
  }
4956
5854
 
4957
5855
  /**
4958
- * ModifyGatherRule request structure.
5856
+ * ModifyAllocationRule response structure.
4959
5857
  * @class
4960
5858
  */
4961
- class ModifyGatherRuleRequest extends AbstractModel {
5859
+ class ModifyAllocationRuleResponse extends AbstractModel {
4962
5860
  constructor(){
4963
5861
  super();
4964
5862
 
4965
5863
  /**
4966
- * Edit collection rule ID.
4967
- * @type {number || null}
4968
- */
4969
- this.Id = null;
4970
-
4971
- /**
4972
- * Rule detail of the edited collection rule.
4973
- * @type {AllocationRuleExpression || null}
4974
- */
4975
- this.RuleDetail = null;
4976
-
4977
- /**
4978
- * Month, which is the current month by default if not provided.
5864
+ * 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.
4979
5865
  * @type {string || null}
4980
5866
  */
4981
- this.Month = null;
5867
+ this.RequestId = null;
4982
5868
 
4983
5869
  }
4984
5870
 
@@ -4989,14 +5875,7 @@ class ModifyGatherRuleRequest extends AbstractModel {
4989
5875
  if (!params) {
4990
5876
  return;
4991
5877
  }
4992
- this.Id = 'Id' in params ? params.Id : null;
4993
-
4994
- if (params.RuleDetail) {
4995
- let obj = new AllocationRuleExpression();
4996
- obj.deserialize(params.RuleDetail)
4997
- this.RuleDetail = obj;
4998
- }
4999
- this.Month = 'Month' in params ? params.Month : null;
5878
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
5000
5879
 
5001
5880
  }
5002
5881
  }
@@ -5094,25 +5973,24 @@ class SummaryDetail extends AbstractModel {
5094
5973
  }
5095
5974
 
5096
5975
  /**
5097
- * DescribeBillSummaryByPayMode response structure.
5976
+ * DescribeCPQBillingMapping response structure.
5098
5977
  * @class
5099
5978
  */
5100
- class DescribeBillSummaryByPayModeResponse extends AbstractModel {
5979
+ class DescribeCPQBillingMappingResponse extends AbstractModel {
5101
5980
  constructor(){
5102
5981
  super();
5103
5982
 
5104
5983
  /**
5105
- * Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates that the current UIN is initializing billing for the first time. Wait for 5-10 minutes and try again.
5106
- * @type {number || null}
5984
+ * Return data details
5985
+ * @type {Array.<ResourceSpuSet> || null}
5107
5986
  */
5108
- this.Ready = null;
5987
+ this.ResourceSpuSet = null;
5109
5988
 
5110
5989
  /**
5111
- * Detailed cost distribution for all billing modes
5112
- Note: This field may return null, indicating that no valid value was found.
5113
- * @type {Array.<PayModeSummaryOverviewItem> || null}
5990
+ * 10
5991
+ * @type {number || null}
5114
5992
  */
5115
- this.SummaryOverview = null;
5993
+ this.Total = null;
5116
5994
 
5117
5995
  /**
5118
5996
  * 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.
@@ -5129,16 +6007,107 @@ Note: This field may return null, indicating that no valid value was found.
5129
6007
  if (!params) {
5130
6008
  return;
5131
6009
  }
5132
- this.Ready = 'Ready' in params ? params.Ready : null;
5133
6010
 
5134
- if (params.SummaryOverview) {
5135
- this.SummaryOverview = new Array();
5136
- for (let z in params.SummaryOverview) {
5137
- let obj = new PayModeSummaryOverviewItem();
5138
- obj.deserialize(params.SummaryOverview[z]);
5139
- this.SummaryOverview.push(obj);
6011
+ if (params.ResourceSpuSet) {
6012
+ this.ResourceSpuSet = new Array();
6013
+ for (let z in params.ResourceSpuSet) {
6014
+ let obj = new ResourceSpuSet();
6015
+ obj.deserialize(params.ResourceSpuSet[z]);
6016
+ this.ResourceSpuSet.push(obj);
5140
6017
  }
5141
6018
  }
6019
+ this.Total = 'Total' in params ? params.Total : null;
6020
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6021
+
6022
+ }
6023
+ }
6024
+
6025
+ /**
6026
+ * DescribeAllocationUnitDetail response structure.
6027
+ * @class
6028
+ */
6029
+ class DescribeAllocationUnitDetailResponse extends AbstractModel {
6030
+ constructor(){
6031
+ super();
6032
+
6033
+ /**
6034
+ * ID of a cost allocation unit.
6035
+ * @type {number || null}
6036
+ */
6037
+ this.Id = null;
6038
+
6039
+ /**
6040
+ * Associated UIN of the cost allocation unit.
6041
+ * @type {string || null}
6042
+ */
6043
+ this.Uin = null;
6044
+
6045
+ /**
6046
+ * Specifies the name of a cost allocation unit.
6047
+ * @type {string || null}
6048
+ */
6049
+ this.Name = null;
6050
+
6051
+ /**
6052
+ * Cost allocation unit parent node ID.
6053
+ * @type {number || null}
6054
+ */
6055
+ this.ParentId = null;
6056
+
6057
+ /**
6058
+ * Source organization name.
6059
+ * @type {string || null}
6060
+ */
6061
+ this.SourceName = null;
6062
+
6063
+ /**
6064
+ * Source organization ID.
6065
+ * @type {string || null}
6066
+ */
6067
+ this.SourceId = null;
6068
+
6069
+ /**
6070
+ * Specifies remark description.
6071
+ * @type {string || null}
6072
+ */
6073
+ this.Remark = null;
6074
+
6075
+ /**
6076
+ * Cost allocation unit identifier.
6077
+ * @type {string || null}
6078
+ */
6079
+ this.TreeNodeUniqKey = null;
6080
+
6081
+ /**
6082
+ * If a cost allocation unit is set with an collection rule, return the collection rule ID. if no collection rule is set, do not return.
6083
+ * @type {number || null}
6084
+ */
6085
+ this.RuleId = null;
6086
+
6087
+ /**
6088
+ * 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.
6089
+ * @type {string || null}
6090
+ */
6091
+ this.RequestId = null;
6092
+
6093
+ }
6094
+
6095
+ /**
6096
+ * @private
6097
+ */
6098
+ deserialize(params) {
6099
+ if (!params) {
6100
+ return;
6101
+ }
6102
+ this.Id = 'Id' in params ? params.Id : null;
6103
+ this.Uin = 'Uin' in params ? params.Uin : null;
6104
+ this.Name = 'Name' in params ? params.Name : null;
6105
+ this.ParentId = 'ParentId' in params ? params.ParentId : null;
6106
+ this.SourceName = 'SourceName' in params ? params.SourceName : null;
6107
+ this.SourceId = 'SourceId' in params ? params.SourceId : null;
6108
+ this.Remark = 'Remark' in params ? params.Remark : null;
6109
+ this.TreeNodeUniqKey = 'TreeNodeUniqKey' in params ? params.TreeNodeUniqKey : null;
6110
+ this.RuleId = 'RuleId' in params ? params.RuleId : null;
5142
6111
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
5143
6112
 
5144
6113
  }
@@ -5568,6 +6537,125 @@ class BillDays extends AbstractModel {
5568
6537
  }
5569
6538
  }
5570
6539
 
6540
+ /**
6541
+ * Resource instance information
6542
+ * @class
6543
+ */
6544
+ class RenewInstance extends AbstractModel {
6545
+ constructor(){
6546
+ super();
6547
+
6548
+ /**
6549
+ * Instance ID.
6550
+ * @type {string || null}
6551
+ */
6552
+ this.InstanceId = null;
6553
+
6554
+ /**
6555
+ * Product code
6556
+ * @type {string || null}
6557
+ */
6558
+ this.ProductCode = null;
6559
+
6560
+ /**
6561
+ * Subproduct code
6562
+ * @type {string || null}
6563
+ */
6564
+ this.SubProductCode = null;
6565
+
6566
+ /**
6567
+ * Region encoding
6568
+ Note: This field may return null, indicating that no valid values can be obtained.
6569
+ * @type {string || null}
6570
+ */
6571
+ this.RegionCode = null;
6572
+
6573
+ /**
6574
+ * Instance status:
6575
+ NORMAL
6576
+ ISOLATED Isolated
6577
+ Note: This field may return null, indicating that no valid values can be obtained.
6578
+ * @type {string || null}
6579
+ */
6580
+ this.Status = null;
6581
+
6582
+ /**
6583
+ * Renewal flag:
6584
+ NOTIFY_AND_MANUAL_RENEW: manual renewal
6585
+ NOTIFY_AND_AUTO_RENEW: auto-renewal.
6586
+ DISABLE_NOTIFY_AND_MANUAL_RENEW: non-renewal upon expiration.
6587
+ Note: This field may return null, indicating that no valid values can be obtained.
6588
+ * @type {string || null}
6589
+ */
6590
+ this.RenewFlag = null;
6591
+
6592
+ /**
6593
+ * Instance expiration time.
6594
+ Note: This field may return null, indicating that no valid values can be obtained.
6595
+ * @type {string || null}
6596
+ */
6597
+ this.ExpireTime = null;
6598
+
6599
+ /**
6600
+ * Instance alias: The name set by the user for the instance in the console, which is empty by default if not set.
6601
+ Note: This field may return null, indicating that no valid values can be obtained.
6602
+ * @type {string || null}
6603
+ */
6604
+ this.InstanceName = null;
6605
+
6606
+ /**
6607
+ * Product name: Cloud products purchased by users, such as Cloud Virtual Machine (CVM)
6608
+ Note: This field may return null, indicating that no valid values can be obtained.
6609
+ * @type {string || null}
6610
+ */
6611
+ this.ProductName = null;
6612
+
6613
+ /**
6614
+ * Project name: Instance Ownership of the project. User can autonomously assign project to the instance on the console. Default project if not allocated.
6615
+ Note: This field may return null, indicating that no valid values can be obtained.
6616
+ * @type {string || null}
6617
+ */
6618
+ this.ProjectName = null;
6619
+
6620
+ /**
6621
+ * Automatic renewal cycle length
6622
+ Note: This field may return null, indicating that no valid values can be obtained.
6623
+ * @type {number || null}
6624
+ */
6625
+ this.RenewPeriod = null;
6626
+
6627
+ /**
6628
+ * Automatic renewal cycle unit: y year, m month
6629
+ Note: This field may return null, indicating that no valid values can be obtained.
6630
+ * @type {string || null}
6631
+ */
6632
+ this.RenewPeriodUnit = null;
6633
+
6634
+ }
6635
+
6636
+ /**
6637
+ * @private
6638
+ */
6639
+ deserialize(params) {
6640
+ if (!params) {
6641
+ return;
6642
+ }
6643
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
6644
+ this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
6645
+ this.SubProductCode = 'SubProductCode' in params ? params.SubProductCode : null;
6646
+ this.RegionCode = 'RegionCode' in params ? params.RegionCode : null;
6647
+ this.Status = 'Status' in params ? params.Status : null;
6648
+ this.RenewFlag = 'RenewFlag' in params ? params.RenewFlag : null;
6649
+ this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
6650
+ this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
6651
+ this.ProductName = 'ProductName' in params ? params.ProductName : null;
6652
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
6653
+ this.RenewPeriod = 'RenewPeriod' in params ? params.RenewPeriod : null;
6654
+ this.RenewPeriodUnit = 'RenewPeriodUnit' in params ? params.RenewPeriodUnit : null;
6655
+
6656
+ }
6657
+ }
6658
+
5571
6659
  /**
5572
6660
  * DescribeAllocationRuleSummary response structure.
5573
6661
  * @class
@@ -5871,6 +6959,48 @@ This parameter can be used for querying bills after January 2021.
5871
6959
  }
5872
6960
  }
5873
6961
 
6962
+ /**
6963
+ * DescribeBudgetRemindRecordList request structure.
6964
+ * @class
6965
+ */
6966
+ class DescribeBudgetRemindRecordListRequest extends AbstractModel {
6967
+ constructor(){
6968
+ super();
6969
+
6970
+ /**
6971
+ * Page number, int
6972
+ * @type {number || null}
6973
+ */
6974
+ this.PageNo = null;
6975
+
6976
+ /**
6977
+ * Number of items per page, integer
6978
+ * @type {number || null}
6979
+ */
6980
+ this.PageSize = null;
6981
+
6982
+ /**
6983
+ * Budget base information association id
6984
+ * @type {string || null}
6985
+ */
6986
+ this.BudgetId = null;
6987
+
6988
+ }
6989
+
6990
+ /**
6991
+ * @private
6992
+ */
6993
+ deserialize(params) {
6994
+ if (!params) {
6995
+ return;
6996
+ }
6997
+ this.PageNo = 'PageNo' in params ? params.PageNo : null;
6998
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
6999
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
7000
+
7001
+ }
7002
+ }
7003
+
5874
7004
  /**
5875
7005
  * DescribeCostSummaryByRegion request structure.
5876
7006
  * @class
@@ -6020,58 +7150,150 @@ class ConsumptionSummaryTrend extends AbstractModel {
6020
7150
  this.Type = null;
6021
7151
 
6022
7152
  /**
6023
- * Trend value. The value of this field is null when Type is none.
7153
+ * Trend value. The value of this field is null when Type is none.
7154
+ * @type {string || null}
7155
+ */
7156
+ this.Value = null;
7157
+
7158
+ }
7159
+
7160
+ /**
7161
+ * @private
7162
+ */
7163
+ deserialize(params) {
7164
+ if (!params) {
7165
+ return;
7166
+ }
7167
+ this.Type = 'Type' in params ? params.Type : null;
7168
+ this.Value = 'Value' in params ? params.Value : null;
7169
+
7170
+ }
7171
+ }
7172
+
7173
+ /**
7174
+ * DescribeBillDownloadUrl request structure.
7175
+ * @class
7176
+ */
7177
+ class DescribeBillDownloadUrlRequest extends AbstractModel {
7178
+ constructor(){
7179
+ super();
7180
+
7181
+ /**
7182
+ * Billing mode. Enumeration values
7183
+ billOverview=L0-PDF Bill
7184
+ Bill Summary=L1-Summary Bill
7185
+ billResource=L2-Resource bill
7186
+ billDetail=L3-Detailed Bill
7187
+ billPack
7188
+ * @type {string || null}
7189
+ */
7190
+ this.FileType = null;
7191
+
7192
+ /**
7193
+ * Billing month
7194
+ Earliest start month supported is 2021-01
7195
+ L0-PDF&bill package does not support download for the current month. Please download the monthly bill after billing on the 1st of next month at 19:00.
7196
+ * @type {string || null}
7197
+ */
7198
+ this.Month = null;
7199
+
7200
+ /**
7201
+ * Downloaded account ID list. By default, the query returns the account statement of the current account. If the group management account needs to download the self-pay bills of member accounts, enter the member account UIN in this field.
7202
+ * @type {Array.<string> || null}
7203
+ */
7204
+ this.ChildUin = null;
7205
+
7206
+ }
7207
+
7208
+ /**
7209
+ * @private
7210
+ */
7211
+ deserialize(params) {
7212
+ if (!params) {
7213
+ return;
7214
+ }
7215
+ this.FileType = 'FileType' in params ? params.FileType : null;
7216
+ this.Month = 'Month' in params ? params.Month : null;
7217
+ this.ChildUin = 'ChildUin' in params ? params.ChildUin : null;
7218
+
7219
+ }
7220
+ }
7221
+
7222
+ /**
7223
+ * DescribeAllocationOverview request structure.
7224
+ * @class
7225
+ */
7226
+ class DescribeAllocationOverviewRequest extends AbstractModel {
7227
+ constructor(){
7228
+ super();
7229
+
7230
+ /**
7231
+ * Quantity, with the maximum value of 1,000
7232
+ * @type {number || null}
7233
+ */
7234
+ this.Limit = null;
7235
+
7236
+ /**
7237
+ * Pagination offset. If offset is 0, it indicates the first page. If limit is 100, then offset is 100, it indicates the second page; if offset is 200, it indicates the third page, and so on
7238
+ * @type {number || null}
7239
+ */
7240
+ this.Offset = null;
7241
+
7242
+ /**
7243
+ * Bill month, in the format of 2024-02, which is the current month by default if not provided
7244
+ * @type {string || null}
7245
+ */
7246
+ this.Month = null;
7247
+
7248
+ /**
7249
+ * Statistical period, with the enumerated values as follows:
7250
+ month - Month
7251
+ day - Day
6024
7252
  * @type {string || null}
6025
7253
  */
6026
- this.Value = null;
6027
-
6028
- }
6029
-
6030
- /**
6031
- * @private
6032
- */
6033
- deserialize(params) {
6034
- if (!params) {
6035
- return;
6036
- }
6037
- this.Type = 'Type' in params ? params.Type : null;
6038
- this.Value = 'Value' in params ? params.Value : null;
6039
-
6040
- }
6041
- }
7254
+ this.PeriodType = null;
6042
7255
 
6043
- /**
6044
- * DescribeBillDownloadUrl request structure.
6045
- * @class
6046
- */
6047
- class DescribeBillDownloadUrlRequest extends AbstractModel {
6048
- constructor(){
6049
- super();
7256
+ /**
7257
+ * Unique identifier of a billing unit, used for filtering
7258
+ * @type {Array.<string> || null}
7259
+ */
7260
+ this.TreeNodeUniqKeys = null;
6050
7261
 
6051
7262
  /**
6052
- * Billing mode. Enumeration values
6053
- billOverview=L0-PDF Bill
6054
- Bill Summary=L1-Summary Bill
6055
- billResource=L2-Resource bill
6056
- billDetail=L3-Detailed Bill
6057
- billPack
7263
+ * Sorting field, with the enumerated values as follows:
7264
+ GatherCashPayAmount - Collected fees (cash)
7265
+ GatherVoucherPayAmount - Collected fees (voucher)
7266
+ GatherIncentivePayAmount - Collected fees (free credit)
7267
+ GatherTransferPayAmount - Collected fees (royalty amount)
7268
+ AllocateCashPayAmount - Allocated fees (cash)
7269
+ AllocateVoucherPayAmount - Allocated fees (voucher)
7270
+ AllocateIncentivePayAmount - Allocated fees (free credit)
7271
+ AllocateTransferPayAmount - Allocated fees (royalty amount)
7272
+ TotalCashPayAmount - Total fees (cash)
7273
+ TotalVoucherPayAmount - Total fees (voucher)
7274
+ TotalIncentivePayAmount - Total fees (free credit)
7275
+ TotalTransferPayAmount - Total fees (royalty amount)
7276
+ GatherRealCost - Collected fees (discounted total)
7277
+ AllocateRealCost - Allocated fees (discounted total)
7278
+ RealTotalCost - Total fees (discounted total)
7279
+ Ratio - Proportion (discounted total)
6058
7280
  * @type {string || null}
6059
7281
  */
6060
- this.FileType = null;
7282
+ this.Sort = null;
6061
7283
 
6062
7284
  /**
6063
- * Billing month
6064
- Earliest start month supported is 2021-01
6065
- L0-PDF&bill package does not support download for the current month. Please download the monthly bill after billing on the 1st of next month at 19:00.
7285
+ * Sorting type, with the enumerated values as follows:
7286
+ asc - Ascending
7287
+ desc - Descending
6066
7288
  * @type {string || null}
6067
7289
  */
6068
- this.Month = null;
7290
+ this.SortType = null;
6069
7291
 
6070
7292
  /**
6071
- * Downloaded account ID list. By default, the query returns the account statement of the current account. If the group management account needs to download the self-pay bills of member accounts, enter the member account UIN in this field.
7293
+ * Date, used for filtering
6072
7294
  * @type {Array.<string> || null}
6073
7295
  */
6074
- this.ChildUin = null;
7296
+ this.BillDates = null;
6075
7297
 
6076
7298
  }
6077
7299
 
@@ -6082,9 +7304,14 @@ L0-PDF&bill package does not support download for the current month. Please down
6082
7304
  if (!params) {
6083
7305
  return;
6084
7306
  }
6085
- this.FileType = 'FileType' in params ? params.FileType : null;
7307
+ this.Limit = 'Limit' in params ? params.Limit : null;
7308
+ this.Offset = 'Offset' in params ? params.Offset : null;
6086
7309
  this.Month = 'Month' in params ? params.Month : null;
6087
- this.ChildUin = 'ChildUin' in params ? params.ChildUin : null;
7310
+ this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
7311
+ this.TreeNodeUniqKeys = 'TreeNodeUniqKeys' in params ? params.TreeNodeUniqKeys : null;
7312
+ this.Sort = 'Sort' in params ? params.Sort : null;
7313
+ this.SortType = 'SortType' in params ? params.SortType : null;
7314
+ this.BillDates = 'BillDates' in params ? params.BillDates : null;
6088
7315
 
6089
7316
  }
6090
7317
  }
@@ -6207,6 +7434,60 @@ Trend - Month-on-month ratio (discounted total)
6207
7434
  }
6208
7435
  }
6209
7436
 
7437
+ /**
7438
+ * CreateBudget response structure.
7439
+ * @class
7440
+ */
7441
+ class CreateBudgetResponse extends AbstractModel {
7442
+ constructor(){
7443
+ super();
7444
+
7445
+ /**
7446
+ * Create budget return information
7447
+ * @type {BudgetInfoApiResponse || null}
7448
+ */
7449
+ this.Data = null;
7450
+
7451
+ /**
7452
+ * create success
7453
+ * @type {string || null}
7454
+ */
7455
+ this.Message = null;
7456
+
7457
+ /**
7458
+ * Return code
7459
+ * @type {number || null}
7460
+ */
7461
+ this.Code = null;
7462
+
7463
+ /**
7464
+ * 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.
7465
+ * @type {string || null}
7466
+ */
7467
+ this.RequestId = null;
7468
+
7469
+ }
7470
+
7471
+ /**
7472
+ * @private
7473
+ */
7474
+ deserialize(params) {
7475
+ if (!params) {
7476
+ return;
7477
+ }
7478
+
7479
+ if (params.Data) {
7480
+ let obj = new BudgetInfoApiResponse();
7481
+ obj.deserialize(params.Data)
7482
+ this.Data = obj;
7483
+ }
7484
+ this.Message = 'Message' in params ? params.Message : null;
7485
+ this.Code = 'Code' in params ? params.Code : null;
7486
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7487
+
7488
+ }
7489
+ }
7490
+
6210
7491
  /**
6211
7492
  * DescribeBillSummaryByPayMode request structure.
6212
7493
  * @class
@@ -7869,6 +9150,97 @@ Note: This field may return null, indicating that no valid values can be obtaine
7869
9150
  }
7870
9151
  }
7871
9152
 
9153
+ /**
9154
+ * Detailed summary of purchases by project
9155
+ * @class
9156
+ */
9157
+ class ProjectSummaryOverviewItem extends AbstractModel {
9158
+ constructor(){
9159
+ super();
9160
+
9161
+ /**
9162
+ * Project ID
9163
+ * @type {string || null}
9164
+ */
9165
+ this.ProjectId = null;
9166
+
9167
+ /**
9168
+ * 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.
9169
+ * @type {string || null}
9170
+ */
9171
+ this.ProjectName = null;
9172
+
9173
+ /**
9174
+ * Cost ratio, to two decimal points
9175
+ * @type {string || null}
9176
+ */
9177
+ this.RealTotalCostRatio = null;
9178
+
9179
+ /**
9180
+ * Total amount after discount
9181
+ * @type {string || null}
9182
+ */
9183
+ this.RealTotalCost = null;
9184
+
9185
+ /**
9186
+ * Cash credit: The amount paid from the user’s cash account
9187
+ * @type {string || null}
9188
+ */
9189
+ this.CashPayAmount = null;
9190
+
9191
+ /**
9192
+ * Free credit: The amount paid with the user’s free credit
9193
+ * @type {string || null}
9194
+ */
9195
+ this.IncentivePayAmount = null;
9196
+
9197
+ /**
9198
+ * Voucher payment: The voucher deduction amount
9199
+ * @type {string || null}
9200
+ */
9201
+ this.VoucherPayAmount = null;
9202
+
9203
+ /**
9204
+ * Commission credit: The amount paid with the user’s commission credit.
9205
+ * @type {string || null}
9206
+ */
9207
+ this.TransferPayAmount = null;
9208
+
9209
+ /**
9210
+ * Billing month, e.g. `2019-08`
9211
+ * @type {string || null}
9212
+ */
9213
+ this.BillMonth = null;
9214
+
9215
+ /**
9216
+ * 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.
9217
+ * @type {string || null}
9218
+ */
9219
+ this.TotalCost = null;
9220
+
9221
+ }
9222
+
9223
+ /**
9224
+ * @private
9225
+ */
9226
+ deserialize(params) {
9227
+ if (!params) {
9228
+ return;
9229
+ }
9230
+ this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
9231
+ this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
9232
+ this.RealTotalCostRatio = 'RealTotalCostRatio' in params ? params.RealTotalCostRatio : null;
9233
+ this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
9234
+ this.CashPayAmount = 'CashPayAmount' in params ? params.CashPayAmount : null;
9235
+ this.IncentivePayAmount = 'IncentivePayAmount' in params ? params.IncentivePayAmount : null;
9236
+ this.VoucherPayAmount = 'VoucherPayAmount' in params ? params.VoucherPayAmount : null;
9237
+ this.TransferPayAmount = 'TransferPayAmount' in params ? params.TransferPayAmount : null;
9238
+ this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
9239
+ this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
9240
+
9241
+ }
9242
+ }
9243
+
7872
9244
  /**
7873
9245
  * DescribeDealsByCond response structure.
7874
9246
  * @class
@@ -9244,7 +10616,53 @@ class DescribeBillSummaryResponse extends AbstractModel {
9244
10616
  * 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.
9245
10617
  * @type {string || null}
9246
10618
  */
9247
- this.RequestId = null;
10619
+ this.RequestId = null;
10620
+
10621
+ }
10622
+
10623
+ /**
10624
+ * @private
10625
+ */
10626
+ deserialize(params) {
10627
+ if (!params) {
10628
+ return;
10629
+ }
10630
+ this.Ready = 'Ready' in params ? params.Ready : null;
10631
+
10632
+ if (params.SummaryDetail) {
10633
+ this.SummaryDetail = new Array();
10634
+ for (let z in params.SummaryDetail) {
10635
+ let obj = new SummaryDetail();
10636
+ obj.deserialize(params.SummaryDetail[z]);
10637
+ this.SummaryDetail.push(obj);
10638
+ }
10639
+ }
10640
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
10641
+
10642
+ }
10643
+ }
10644
+
10645
+ /**
10646
+ * Budget management custom fee range, parameter tag
10647
+ * @class
10648
+ */
10649
+ class TagsForm extends AbstractModel {
10650
+ constructor(){
10651
+ super();
10652
+
10653
+ /**
10654
+ * key
10655
+ Note: This field may return null, indicating that no valid values can be obtained.
10656
+ * @type {string || null}
10657
+ */
10658
+ this.TagKey = null;
10659
+
10660
+ /**
10661
+ * value
10662
+ Note: This field may return null, indicating that no valid values can be obtained.
10663
+ * @type {Array.<string> || null}
10664
+ */
10665
+ this.TagValue = null;
9248
10666
 
9249
10667
  }
9250
10668
 
@@ -9255,17 +10673,8 @@ class DescribeBillSummaryResponse extends AbstractModel {
9255
10673
  if (!params) {
9256
10674
  return;
9257
10675
  }
9258
- this.Ready = 'Ready' in params ? params.Ready : null;
9259
-
9260
- if (params.SummaryDetail) {
9261
- this.SummaryDetail = new Array();
9262
- for (let z in params.SummaryDetail) {
9263
- let obj = new SummaryDetail();
9264
- obj.deserialize(params.SummaryDetail[z]);
9265
- this.SummaryDetail.push(obj);
9266
- }
9267
- }
9268
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
10676
+ this.TagKey = 'TagKey' in params ? params.TagKey : null;
10677
+ this.TagValue = 'TagValue' in params ? params.TagValue : null;
9269
10678
 
9270
10679
  }
9271
10680
  }
@@ -9879,13 +11288,75 @@ class ProductInfo extends AbstractModel {
9879
11288
  }
9880
11289
 
9881
11290
  /**
9882
- * DeleteAllocationTag response structure.
11291
+ * Record change information for budget project related fields
9883
11292
  * @class
9884
11293
  */
9885
- class DeleteAllocationTagResponse extends AbstractModel {
11294
+ class BudgetInfoDiffEntity extends AbstractModel {
11295
+ constructor(){
11296
+ super();
11297
+
11298
+ /**
11299
+ * Modify properties
11300
+ * @type {string || null}
11301
+ */
11302
+ this.Property = null;
11303
+
11304
+ /**
11305
+ * Content before modification.
11306
+ Note: This field may return null, indicating that no valid values can be obtained.
11307
+ * @type {string || null}
11308
+ */
11309
+ this.Before = null;
11310
+
11311
+ /**
11312
+ * Content after modification.
11313
+ Note: This field may return null, indicating that no valid values can be obtained.
11314
+ * @type {string || null}
11315
+ */
11316
+ this.After = null;
11317
+
11318
+ }
11319
+
11320
+ /**
11321
+ * @private
11322
+ */
11323
+ deserialize(params) {
11324
+ if (!params) {
11325
+ return;
11326
+ }
11327
+ this.Property = 'Property' in params ? params.Property : null;
11328
+ this.Before = 'Before' in params ? params.Before : null;
11329
+ this.After = 'After' in params ? params.After : null;
11330
+
11331
+ }
11332
+ }
11333
+
11334
+ /**
11335
+ * DescribeBudgetOperationLog response structure.
11336
+ * @class
11337
+ */
11338
+ class DescribeBudgetOperationLogResponse extends AbstractModel {
9886
11339
  constructor(){
9887
11340
  super();
9888
11341
 
11342
+ /**
11343
+ * Budget modification record details
11344
+ * @type {DataForBudgetOperationLogPage || null}
11345
+ */
11346
+ this.Data = null;
11347
+
11348
+ /**
11349
+ * prompt
11350
+ * @type {string || null}
11351
+ */
11352
+ this.Message = null;
11353
+
11354
+ /**
11355
+ * Return code
11356
+ * @type {number || null}
11357
+ */
11358
+ this.Code = null;
11359
+
9889
11360
  /**
9890
11361
  * 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.
9891
11362
  * @type {string || null}
@@ -9901,6 +11372,14 @@ class DeleteAllocationTagResponse extends AbstractModel {
9901
11372
  if (!params) {
9902
11373
  return;
9903
11374
  }
11375
+
11376
+ if (params.Data) {
11377
+ let obj = new DataForBudgetOperationLogPage();
11378
+ obj.deserialize(params.Data)
11379
+ this.Data = obj;
11380
+ }
11381
+ this.Message = 'Message' in params ? params.Message : null;
11382
+ this.Code = 'Code' in params ? params.Code : null;
9904
11383
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
9905
11384
 
9906
11385
  }
@@ -11125,18 +12604,92 @@ class AllocationStat extends AbstractModel {
11125
12604
  }
11126
12605
 
11127
12606
  /**
11128
- * ModifyGatherRule response structure.
12607
+ * ModifyBudget request structure.
11129
12608
  * @class
11130
12609
  */
11131
- class ModifyGatherRuleResponse extends AbstractModel {
12610
+ class ModifyBudgetRequest extends AbstractModel {
11132
12611
  constructor(){
11133
12612
  super();
11134
12613
 
11135
12614
  /**
11136
- * 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.
12615
+ * Budget project id
11137
12616
  * @type {string || null}
11138
12617
  */
11139
- this.RequestId = null;
12618
+ this.BudgetId = null;
12619
+
12620
+ /**
12621
+ * Budget Name
12622
+ * @type {string || null}
12623
+ */
12624
+ this.BudgetName = null;
12625
+
12626
+ /**
12627
+ * DAY, MONTH, QUARTER, YEAR
12628
+ * @type {string || null}
12629
+ */
12630
+ this.CycleType = null;
12631
+
12632
+ /**
12633
+ * Validity start time 2025-01-01
12634
+ * @type {string || null}
12635
+ */
12636
+ this.PeriodBegin = null;
12637
+
12638
+ /**
12639
+ * Validity End Time 2025-12-01
12640
+ * @type {string || null}
12641
+ */
12642
+ this.PeriodEnd = null;
12643
+
12644
+ /**
12645
+ * FIX fixed value, CYCLE different value
12646
+ * @type {string || null}
12647
+ */
12648
+ this.PlanType = null;
12649
+
12650
+ /**
12651
+ * Budget amount limit
12652
+ Set as a fixed value when the schedule type is fixed budget.
12653
+ When the schedule type is CYCLE (budget planning), pass [{"dateDesc":"2025-07","quota":"1000"},{"dateDesc":"2025-08","quota":"2000"}].
12654
+ * @type {string || null}
12655
+ */
12656
+ this.BudgetQuota = null;
12657
+
12658
+ /**
12659
+ * BILL System bill, CONSUMPTION Consumption bill
12660
+ * @type {string || null}
12661
+ */
12662
+ this.BillType = null;
12663
+
12664
+ /**
12665
+ * COST Original price, REAL_COST Actual fee, CASH Cash, INCENTIVE Free credit, VOUCHER Voucher, TRANSFER Allocated fees (royalty amount), TAX Tax, AMOUNT_BEFORE_TAX Cash payment (pre-tax)
12666
+ * @type {string || null}
12667
+ */
12668
+ this.FeeType = null;
12669
+
12670
+ /**
12671
+ * threshold alert
12672
+ * @type {Array.<BudgetWarn> || null}
12673
+ */
12674
+ this.WarnJson = null;
12675
+
12676
+ /**
12677
+ * Budget remark
12678
+ * @type {string || null}
12679
+ */
12680
+ this.BudgetNote = null;
12681
+
12682
+ /**
12683
+ * Budget dimension range condition
12684
+ * @type {BudgetConditionsForm || null}
12685
+ */
12686
+ this.DimensionsRange = null;
12687
+
12688
+ /**
12689
+ * fluctuation alert
12690
+ * @type {Array.<WaveThresholdForm> || null}
12691
+ */
12692
+ this.WaveThresholdJson = null;
11140
12693
 
11141
12694
  }
11142
12695
 
@@ -11147,7 +12700,40 @@ class ModifyGatherRuleResponse extends AbstractModel {
11147
12700
  if (!params) {
11148
12701
  return;
11149
12702
  }
11150
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
12703
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
12704
+ this.BudgetName = 'BudgetName' in params ? params.BudgetName : null;
12705
+ this.CycleType = 'CycleType' in params ? params.CycleType : null;
12706
+ this.PeriodBegin = 'PeriodBegin' in params ? params.PeriodBegin : null;
12707
+ this.PeriodEnd = 'PeriodEnd' in params ? params.PeriodEnd : null;
12708
+ this.PlanType = 'PlanType' in params ? params.PlanType : null;
12709
+ this.BudgetQuota = 'BudgetQuota' in params ? params.BudgetQuota : null;
12710
+ this.BillType = 'BillType' in params ? params.BillType : null;
12711
+ this.FeeType = 'FeeType' in params ? params.FeeType : null;
12712
+
12713
+ if (params.WarnJson) {
12714
+ this.WarnJson = new Array();
12715
+ for (let z in params.WarnJson) {
12716
+ let obj = new BudgetWarn();
12717
+ obj.deserialize(params.WarnJson[z]);
12718
+ this.WarnJson.push(obj);
12719
+ }
12720
+ }
12721
+ this.BudgetNote = 'BudgetNote' in params ? params.BudgetNote : null;
12722
+
12723
+ if (params.DimensionsRange) {
12724
+ let obj = new BudgetConditionsForm();
12725
+ obj.deserialize(params.DimensionsRange)
12726
+ this.DimensionsRange = obj;
12727
+ }
12728
+
12729
+ if (params.WaveThresholdJson) {
12730
+ this.WaveThresholdJson = new Array();
12731
+ for (let z in params.WaveThresholdJson) {
12732
+ let obj = new WaveThresholdForm();
12733
+ obj.deserialize(params.WaveThresholdJson[z]);
12734
+ this.WaveThresholdJson.push(obj);
12735
+ }
12736
+ }
11151
12737
 
11152
12738
  }
11153
12739
  }
@@ -12252,185 +13838,112 @@ class DescribeCostDetailRequest extends AbstractModel {
12252
13838
  this.PayMode = null;
12253
13839
 
12254
13840
  /**
12255
- * Used to query information of a specified resource
12256
- * @type {string || null}
12257
- */
12258
- this.ResourceId = null;
12259
-
12260
- }
12261
-
12262
- /**
12263
- * @private
12264
- */
12265
- deserialize(params) {
12266
- if (!params) {
12267
- return;
12268
- }
12269
- this.Limit = 'Limit' in params ? params.Limit : null;
12270
- this.Offset = 'Offset' in params ? params.Offset : null;
12271
- this.BeginTime = 'BeginTime' in params ? params.BeginTime : null;
12272
- this.EndTime = 'EndTime' in params ? params.EndTime : null;
12273
- this.NeedRecordNum = 'NeedRecordNum' in params ? params.NeedRecordNum : null;
12274
- this.Month = 'Month' in params ? params.Month : null;
12275
- this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
12276
- this.PayMode = 'PayMode' in params ? params.PayMode : null;
12277
- this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
12278
-
12279
- }
12280
- }
12281
-
12282
- /**
12283
- * DescribeAllocationSummaryByResource request structure.
12284
- * @class
12285
- */
12286
- class DescribeAllocationSummaryByResourceRequest extends AbstractModel {
12287
- constructor(){
12288
- super();
12289
-
12290
- /**
12291
- * Quantity, with the maximum value of 1,000
12292
-
12293
-
12294
- * @type {number || null}
12295
- */
12296
- this.Limit = null;
12297
-
12298
- /**
12299
- * Pagination offset. If Offset is 0, it indicates the first page. If Limit is 100, then Offset is 100, and it indicates the second page. If Offset is 200, it indicates the third page, and so on.
12300
- * @type {number || null}
12301
- */
12302
- this.Offset = null;
12303
-
12304
- /**
12305
- * Bill month, in the format of 2024-02, which is the current month by default if not provided
12306
-
12307
-
12308
- * @type {string || null}
12309
- */
12310
- this.Month = null;
12311
-
12312
- /**
12313
- * Statistical period, with the enumerated values as follows:
12314
- month - Month
12315
- day - Day
12316
- * @type {string || null}
12317
- */
12318
- this.PeriodType = null;
12319
-
12320
- /**
12321
- * Unique identifier of a billing unit, used for filtering
12322
- * @type {Array.<string> || null}
12323
- */
12324
- this.TreeNodeUniqKeys = null;
12325
-
12326
- /**
12327
- * Sorting field, with the enumerated values as follows:
12328
- RiTimeSpan - Deduction duration of a reserved instance
12329
- ExtendPayAmount1 - Original price for the deduction duration of a reserved instance
12330
- RealCost - Discounted total
12331
- CashPayAmount - Cash amount
12332
- VoucherPayAmount - Amount of promo voucher
12333
- IncentivePayAmount - Amount of free credit
12334
- TransferPayAmount - Royalty amount
12335
- Cost - Original price of a component
12336
- * @type {string || null}
12337
- */
12338
- this.Sort = null;
12339
-
12340
- /**
12341
- * Sorting type, with the enumerated values as follows:
12342
- asc - Ascending
12343
- desc - Descending
12344
- * @type {string || null}
12345
- */
12346
- this.SortType = null;
12347
-
12348
- /**
12349
- * Date, used for filtering
12350
- * @type {Array.<string> || null}
12351
- */
12352
- this.BillDates = null;
12353
-
12354
- /**
12355
- * Product code, used for filtering
12356
- * @type {Array.<string> || null}
12357
- */
12358
- this.BusinessCodes = null;
12359
-
12360
- /**
12361
- * User UIN, used for filtering
12362
- * @type {Array.<string> || null}
12363
- */
12364
- this.OwnerUins = null;
12365
-
12366
- /**
12367
- * Operator UIN, used for filtering
12368
- * @type {Array.<string> || null}
12369
- */
12370
- this.OperateUins = null;
12371
-
12372
- /**
12373
- * Billing mode code, used for filtering
12374
- * @type {Array.<string> || null}
12375
- */
12376
- this.PayModes = null;
12377
-
12378
- /**
12379
- * Transaction type code, used for filtering
12380
- * @type {Array.<string> || null}
13841
+ * Used to query information of a specified resource
13842
+ * @type {string || null}
12381
13843
  */
12382
- this.ActionTypes = null;
13844
+ this.ResourceId = null;
13845
+
13846
+ }
13847
+
13848
+ /**
13849
+ * @private
13850
+ */
13851
+ deserialize(params) {
13852
+ if (!params) {
13853
+ return;
13854
+ }
13855
+ this.Limit = 'Limit' in params ? params.Limit : null;
13856
+ this.Offset = 'Offset' in params ? params.Offset : null;
13857
+ this.BeginTime = 'BeginTime' in params ? params.BeginTime : null;
13858
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
13859
+ this.NeedRecordNum = 'NeedRecordNum' in params ? params.NeedRecordNum : null;
13860
+ this.Month = 'Month' in params ? params.Month : null;
13861
+ this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
13862
+ this.PayMode = 'PayMode' in params ? params.PayMode : null;
13863
+ this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
13864
+
13865
+ }
13866
+ }
13867
+
13868
+ /**
13869
+ * Budget reminder
13870
+ * @class
13871
+ */
13872
+ class BudgetSendInfoDto extends AbstractModel {
13873
+ constructor(){
13874
+ super();
12383
13875
 
12384
13876
  /**
12385
- * Subproduct code, used for filtering
12386
- * @type {Array.<string> || null}
13877
+ * Notification cycle, separated by commas.
13878
+ Enumeration values:
13879
+ Monday:1
13880
+ Tuesday:2
13881
+ Sunday: 7
13882
+ Note: This field may return null, indicating that no valid values can be obtained.
13883
+ * @type {Array.<number> || null}
12387
13884
  */
12388
- this.ProductCodes = null;
13885
+ this.WeekDays = null;
12389
13886
 
12390
13887
  /**
12391
- * Region ID, used for filtering
12392
- * @type {Array.<string> || null}
13888
+ * Reception type.
13889
+ Enumeration values:
13890
+ UIN default mode
13891
+ USER
13892
+ GROUP User group.
13893
+ Note: This field may return null, indicating that no valid values can be obtained.
13894
+ * @type {string || null}
12393
13895
  */
12394
- this.RegionIds = null;
13896
+ this.ReceiverType = null;
12395
13897
 
12396
13898
  /**
12397
- * Availability zone (AZ) ID, used for filtering
12398
- * @type {Array.<string> || null}
13899
+ * Sending and receiving window HH:mm:ss
13900
+ Note: This field may return null, indicating that no valid values can be obtained.
13901
+ * @type {string || null}
12399
13902
  */
12400
- this.ZoneIds = null;
13903
+ this.EndTime = null;
12401
13904
 
12402
13905
  /**
12403
- * Instance type code, used for filtering
12404
- * @type {Array.<string> || null}
13906
+ * Budget configuration id (budget name)
13907
+ Note: This field may return null, indicating that no valid values can be obtained.
13908
+ * @type {number || null}
12405
13909
  */
12406
- this.InstanceTypes = null;
13910
+ this.BudgetId = null;
12407
13911
 
12408
13912
  /**
12409
- * Tag, used for filtering
13913
+ * receiving channel, separated by commas
13914
+ Enumeration values:
13915
+ TITLE
13916
+ Message Center
13917
+ mail
13918
+ SMS
13919
+ WECHAT
13920
+ VOICE
13921
+ WeCom
13922
+ Note: This field may return null, indicating that no valid values can be obtained.
12410
13923
  * @type {Array.<string> || null}
12411
13924
  */
12412
- this.Tag = null;
13925
+ this.NoticeWays = null;
12413
13926
 
12414
13927
  /**
12415
- * Fuzzy search: supports tag, resource ID, and resource alias
13928
+ * Send start window HH:mm:ss
13929
+ Note: This field may return null, indicating that no valid values can be obtained.
12416
13930
  * @type {string || null}
12417
13931
  */
12418
- this.SearchKey = null;
13932
+ this.StartTime = null;
12419
13933
 
12420
13934
  /**
12421
- * Project ID, used for filtering
12422
- * @type {Array.<number> || null}
13935
+ * id
13936
+ Note: This field may return null, indicating that no valid values can be obtained.
13937
+ * @type {string || null}
12423
13938
  */
12424
- this.ProjectIds = null;
13939
+ this.Id = null;
12425
13940
 
12426
13941
  /**
12427
- * Cost collection type, with the enumerated values as follows:
12428
- 0 - Allocation
12429
- 1 - Collection
12430
- -1 - Unallocated
13942
+ * user id, user group id
13943
+ Note: This field may return null, indicating that no valid values can be obtained.
12431
13944
  * @type {Array.<number> || null}
12432
13945
  */
12433
- this.AllocationType = null;
13946
+ this.ReceiverIds = null;
12434
13947
 
12435
13948
  }
12436
13949
 
@@ -12441,27 +13954,14 @@ desc - Descending
12441
13954
  if (!params) {
12442
13955
  return;
12443
13956
  }
12444
- this.Limit = 'Limit' in params ? params.Limit : null;
12445
- this.Offset = 'Offset' in params ? params.Offset : null;
12446
- this.Month = 'Month' in params ? params.Month : null;
12447
- this.PeriodType = 'PeriodType' in params ? params.PeriodType : null;
12448
- this.TreeNodeUniqKeys = 'TreeNodeUniqKeys' in params ? params.TreeNodeUniqKeys : null;
12449
- this.Sort = 'Sort' in params ? params.Sort : null;
12450
- this.SortType = 'SortType' in params ? params.SortType : null;
12451
- this.BillDates = 'BillDates' in params ? params.BillDates : null;
12452
- this.BusinessCodes = 'BusinessCodes' in params ? params.BusinessCodes : null;
12453
- this.OwnerUins = 'OwnerUins' in params ? params.OwnerUins : null;
12454
- this.OperateUins = 'OperateUins' in params ? params.OperateUins : null;
12455
- this.PayModes = 'PayModes' in params ? params.PayModes : null;
12456
- this.ActionTypes = 'ActionTypes' in params ? params.ActionTypes : null;
12457
- this.ProductCodes = 'ProductCodes' in params ? params.ProductCodes : null;
12458
- this.RegionIds = 'RegionIds' in params ? params.RegionIds : null;
12459
- this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
12460
- this.InstanceTypes = 'InstanceTypes' in params ? params.InstanceTypes : null;
12461
- this.Tag = 'Tag' in params ? params.Tag : null;
12462
- this.SearchKey = 'SearchKey' in params ? params.SearchKey : null;
12463
- this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
12464
- this.AllocationType = 'AllocationType' in params ? params.AllocationType : null;
13957
+ this.WeekDays = 'WeekDays' in params ? params.WeekDays : null;
13958
+ this.ReceiverType = 'ReceiverType' in params ? params.ReceiverType : null;
13959
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
13960
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
13961
+ this.NoticeWays = 'NoticeWays' in params ? params.NoticeWays : null;
13962
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
13963
+ this.Id = 'Id' in params ? params.Id : null;
13964
+ this.ReceiverIds = 'ReceiverIds' in params ? params.ReceiverIds : null;
12465
13965
 
12466
13966
  }
12467
13967
  }
@@ -13033,6 +14533,83 @@ class BillBusiness extends AbstractModel {
13033
14533
  }
13034
14534
  }
13035
14535
 
14536
+ /**
14537
+ * Budget History Details
14538
+ * @class
14539
+ */
14540
+ class BudgetRemindRecords extends AbstractModel {
14541
+ constructor(){
14542
+ super();
14543
+
14544
+ /**
14545
+ * budget period
14546
+ * @type {string || null}
14547
+ */
14548
+ this.DateDesc = null;
14549
+
14550
+ /**
14551
+ * actual fee
14552
+ * @type {string || null}
14553
+ */
14554
+ this.RealCost = null;
14555
+
14556
+ /**
14557
+ * Budget amount limit
14558
+ * @type {string || null}
14559
+ */
14560
+ this.BudgetQuota = null;
14561
+
14562
+ /**
14563
+ * Reminder type.
14564
+ Enumeration values:
14565
+ BUDGET reminder
14566
+ Fluctuation alert
14567
+ Note: This field may return null, indicating that no valid values can be obtained.
14568
+ * @type {string || null}
14569
+ */
14570
+ this.AlarmType = null;
14571
+
14572
+ /**
14573
+ * message content
14574
+ Note: This field may return null, indicating that no valid values can be obtained.
14575
+ * @type {string || null}
14576
+ */
14577
+ this.MessageContent = null;
14578
+
14579
+ /**
14580
+ * Send time
14581
+ Note: This field may return null, indicating that no valid values can be obtained.
14582
+ * @type {number || null}
14583
+ */
14584
+ this.SendTime = null;
14585
+
14586
+ /**
14587
+ * Creation time.
14588
+ Note: This field may return null, indicating that no valid values can be obtained.
14589
+ * @type {number || null}
14590
+ */
14591
+ this.CreateTime = null;
14592
+
14593
+ }
14594
+
14595
+ /**
14596
+ * @private
14597
+ */
14598
+ deserialize(params) {
14599
+ if (!params) {
14600
+ return;
14601
+ }
14602
+ this.DateDesc = 'DateDesc' in params ? params.DateDesc : null;
14603
+ this.RealCost = 'RealCost' in params ? params.RealCost : null;
14604
+ this.BudgetQuota = 'BudgetQuota' in params ? params.BudgetQuota : null;
14605
+ this.AlarmType = 'AlarmType' in params ? params.AlarmType : null;
14606
+ this.MessageContent = 'MessageContent' in params ? params.MessageContent : null;
14607
+ this.SendTime = 'SendTime' in params ? params.SendTime : null;
14608
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
14609
+
14610
+ }
14611
+ }
14612
+
13036
14613
  /**
13037
14614
  * DescribeAllocationRuleDetail response structure.
13038
14615
  * @class
@@ -13253,6 +14830,57 @@ class UsageDetails extends AbstractModel {
13253
14830
  }
13254
14831
  }
13255
14832
 
14833
+ /**
14834
+ * DescribeBillSummaryByPayMode response structure.
14835
+ * @class
14836
+ */
14837
+ class DescribeBillSummaryByPayModeResponse extends AbstractModel {
14838
+ constructor(){
14839
+ super();
14840
+
14841
+ /**
14842
+ * Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates that the current UIN is initializing billing for the first time. Wait for 5-10 minutes and try again.
14843
+ * @type {number || null}
14844
+ */
14845
+ this.Ready = null;
14846
+
14847
+ /**
14848
+ * Detailed cost distribution for all billing modes
14849
+ Note: This field may return null, indicating that no valid value was found.
14850
+ * @type {Array.<PayModeSummaryOverviewItem> || null}
14851
+ */
14852
+ this.SummaryOverview = null;
14853
+
14854
+ /**
14855
+ * 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.
14856
+ * @type {string || null}
14857
+ */
14858
+ this.RequestId = null;
14859
+
14860
+ }
14861
+
14862
+ /**
14863
+ * @private
14864
+ */
14865
+ deserialize(params) {
14866
+ if (!params) {
14867
+ return;
14868
+ }
14869
+ this.Ready = 'Ready' in params ? params.Ready : null;
14870
+
14871
+ if (params.SummaryOverview) {
14872
+ this.SummaryOverview = new Array();
14873
+ for (let z in params.SummaryOverview) {
14874
+ let obj = new PayModeSummaryOverviewItem();
14875
+ obj.deserialize(params.SummaryOverview[z]);
14876
+ this.SummaryOverview.push(obj);
14877
+ }
14878
+ }
14879
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
14880
+
14881
+ }
14882
+ }
14883
+
13256
14884
  /**
13257
14885
  * Instance type filter list
13258
14886
  * @class
@@ -13400,19 +15028,93 @@ costBeforeTax: pre-tax price
13400
15028
  * User UIN for querying cost analysis data
13401
15029
  * @type {string || null}
13402
15030
  */
13403
- this.PayerUins = null;
15031
+ this.PayerUins = null;
15032
+
15033
+ /**
15034
+ * User UIN for using resources
15035
+ * @type {string || null}
15036
+ */
15037
+ this.OwnerUins = null;
15038
+
15039
+ /**
15040
+ * Consumption type. Query consumption type (please use consumption type code input parameter).
15041
+ * @type {string || null}
15042
+ */
15043
+ this.ConsumptionTypes = null;
15044
+
15045
+ }
15046
+
15047
+ /**
15048
+ * @private
15049
+ */
15050
+ deserialize(params) {
15051
+ if (!params) {
15052
+ return;
15053
+ }
15054
+ this.BusinessCodes = 'BusinessCodes' in params ? params.BusinessCodes : null;
15055
+ this.ProductCodes = 'ProductCodes' in params ? params.ProductCodes : null;
15056
+ this.ComponentCode = 'ComponentCode' in params ? params.ComponentCode : null;
15057
+ this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
15058
+ this.RegionIds = 'RegionIds' in params ? params.RegionIds : null;
15059
+ this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
15060
+ this.PayModes = 'PayModes' in params ? params.PayModes : null;
15061
+ this.ActionTypes = 'ActionTypes' in params ? params.ActionTypes : null;
15062
+ this.Tags = 'Tags' in params ? params.Tags : null;
15063
+ this.FeeType = 'FeeType' in params ? params.FeeType : null;
15064
+ this.PayerUins = 'PayerUins' in params ? params.PayerUins : null;
15065
+ this.OwnerUins = 'OwnerUins' in params ? params.OwnerUins : null;
15066
+ this.ConsumptionTypes = 'ConsumptionTypes' in params ? params.ConsumptionTypes : null;
15067
+
15068
+ }
15069
+ }
15070
+
15071
+ /**
15072
+ * DeleteAllocationTag response structure.
15073
+ * @class
15074
+ */
15075
+ class DeleteAllocationTagResponse extends AbstractModel {
15076
+ constructor(){
15077
+ super();
15078
+
15079
+ /**
15080
+ * 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.
15081
+ * @type {string || null}
15082
+ */
15083
+ this.RequestId = null;
15084
+
15085
+ }
15086
+
15087
+ /**
15088
+ * @private
15089
+ */
15090
+ deserialize(params) {
15091
+ if (!params) {
15092
+ return;
15093
+ }
15094
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
15095
+
15096
+ }
15097
+ }
15098
+
15099
+ /**
15100
+ * Return information after the budget operation
15101
+ * @class
15102
+ */
15103
+ class BudgetInfoApiResponse extends AbstractModel {
15104
+ constructor(){
15105
+ super();
13404
15106
 
13405
15107
  /**
13406
- * User UIN for using resources
15108
+ * Budget project id
13407
15109
  * @type {string || null}
13408
15110
  */
13409
- this.OwnerUins = null;
15111
+ this.BudgetId = null;
13410
15112
 
13411
15113
  /**
13412
- * Consumption type. Query consumption type (please use consumption type code input parameter).
15114
+ * Update budget time
13413
15115
  * @type {string || null}
13414
15116
  */
13415
- this.ConsumptionTypes = null;
15117
+ this.UpdateTime = null;
13416
15118
 
13417
15119
  }
13418
15120
 
@@ -13423,19 +15125,8 @@ costBeforeTax: pre-tax price
13423
15125
  if (!params) {
13424
15126
  return;
13425
15127
  }
13426
- this.BusinessCodes = 'BusinessCodes' in params ? params.BusinessCodes : null;
13427
- this.ProductCodes = 'ProductCodes' in params ? params.ProductCodes : null;
13428
- this.ComponentCode = 'ComponentCode' in params ? params.ComponentCode : null;
13429
- this.ZoneIds = 'ZoneIds' in params ? params.ZoneIds : null;
13430
- this.RegionIds = 'RegionIds' in params ? params.RegionIds : null;
13431
- this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
13432
- this.PayModes = 'PayModes' in params ? params.PayModes : null;
13433
- this.ActionTypes = 'ActionTypes' in params ? params.ActionTypes : null;
13434
- this.Tags = 'Tags' in params ? params.Tags : null;
13435
- this.FeeType = 'FeeType' in params ? params.FeeType : null;
13436
- this.PayerUins = 'PayerUins' in params ? params.PayerUins : null;
13437
- this.OwnerUins = 'OwnerUins' in params ? params.OwnerUins : null;
13438
- this.ConsumptionTypes = 'ConsumptionTypes' in params ? params.ConsumptionTypes : null;
15128
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
15129
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
13439
15130
 
13440
15131
  }
13441
15132
  }
@@ -13597,36 +15288,30 @@ class CostDetail extends AbstractModel {
13597
15288
  }
13598
15289
 
13599
15290
  /**
13600
- * Temporary limit details
15291
+ * DescribeBudgetOperationLog request structure.
13601
15292
  * @class
13602
15293
  */
13603
- class UinTempAmountModel extends AbstractModel {
15294
+ class DescribeBudgetOperationLogRequest extends AbstractModel {
13604
15295
  constructor(){
13605
15296
  super();
13606
15297
 
13607
15298
  /**
13608
- * User UIN
13609
- * @type {string || null}
13610
- */
13611
- this.Uin = null;
13612
-
13613
- /**
13614
- * temporary limit
15299
+ * Page number
13615
15300
  * @type {number || null}
13616
15301
  */
13617
- this.TempAmount = null;
15302
+ this.PageNo = null;
13618
15303
 
13619
15304
  /**
13620
- * Start time.
13621
- * @type {string || null}
15305
+ * Number of Items per Page
15306
+ * @type {number || null}
13622
15307
  */
13623
- this.StartTime = null;
15308
+ this.PageSize = null;
13624
15309
 
13625
15310
  /**
13626
- * End time.
15311
+ * Budget project id
13627
15312
  * @type {string || null}
13628
15313
  */
13629
- this.EndTime = null;
15314
+ this.BudgetId = null;
13630
15315
 
13631
15316
  }
13632
15317
 
@@ -13637,10 +15322,9 @@ class UinTempAmountModel extends AbstractModel {
13637
15322
  if (!params) {
13638
15323
  return;
13639
15324
  }
13640
- this.Uin = 'Uin' in params ? params.Uin : null;
13641
- this.TempAmount = 'TempAmount' in params ? params.TempAmount : null;
13642
- this.StartTime = 'StartTime' in params ? params.StartTime : null;
13643
- this.EndTime = 'EndTime' in params ? params.EndTime : null;
15325
+ this.PageNo = 'PageNo' in params ? params.PageNo : null;
15326
+ this.PageSize = 'PageSize' in params ? params.PageSize : null;
15327
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
13644
15328
 
13645
15329
  }
13646
15330
  }
@@ -13710,31 +15394,46 @@ Note: This field may return null, indicating that no valid value was found.
13710
15394
  }
13711
15395
 
13712
15396
  /**
13713
- * DescribeBillSummaryByRegion response structure.
15397
+ * DescribeAllocationRuleSummary request structure.
13714
15398
  * @class
13715
15399
  */
13716
- class DescribeBillSummaryByRegionResponse extends AbstractModel {
15400
+ class DescribeAllocationRuleSummaryRequest extends AbstractModel {
13717
15401
  constructor(){
13718
15402
  super();
13719
15403
 
13720
15404
  /**
13721
- * Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates that the current UIN is initializing billing for the first time. Wait for 5-10 minutes and try again.
15405
+ * Specifies the data quantity per fetch. the maximum value is 1000.
13722
15406
  * @type {number || null}
13723
15407
  */
13724
- this.Ready = null;
15408
+ this.Limit = null;
13725
15409
 
13726
15410
  /**
13727
- * Detailed cost distribution for all regions
13728
- Note: This field may return null, indicating that no valid value was found.
13729
- * @type {Array.<RegionSummaryOverviewItem> || null}
15411
+ * Pagination offset
15412
+ * @type {number || null}
13730
15413
  */
13731
- this.SummaryOverview = null;
15414
+ this.Offset = null;
13732
15415
 
13733
15416
  /**
13734
- * 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.
15417
+ * Month, which is the current month by default if not provided.
13735
15418
  * @type {string || null}
13736
15419
  */
13737
- this.RequestId = null;
15420
+ this.Month = null;
15421
+
15422
+ /**
15423
+ * Public area policy type, for filtering.
15424
+ Enumeration values are as follows:.
15425
+ 1 - custom sharing proportion.
15426
+ 2 - proportional allocation.
15427
+ 3 - allocation by proportion.
15428
+ * @type {number || null}
15429
+ */
15430
+ this.Type = null;
15431
+
15432
+ /**
15433
+ * Sharing rule name or cost allocation unit name, used for fuzzy filter criteria.
15434
+ * @type {string || null}
15435
+ */
15436
+ this.Name = null;
13738
15437
 
13739
15438
  }
13740
15439
 
@@ -13745,17 +15444,60 @@ Note: This field may return null, indicating that no valid value was found.
13745
15444
  if (!params) {
13746
15445
  return;
13747
15446
  }
13748
- this.Ready = 'Ready' in params ? params.Ready : null;
15447
+ this.Limit = 'Limit' in params ? params.Limit : null;
15448
+ this.Offset = 'Offset' in params ? params.Offset : null;
15449
+ this.Month = 'Month' in params ? params.Month : null;
15450
+ this.Type = 'Type' in params ? params.Type : null;
15451
+ this.Name = 'Name' in params ? params.Name : null;
13749
15452
 
13750
- if (params.SummaryOverview) {
13751
- this.SummaryOverview = new Array();
13752
- for (let z in params.SummaryOverview) {
13753
- let obj = new RegionSummaryOverviewItem();
13754
- obj.deserialize(params.SummaryOverview[z]);
13755
- this.SummaryOverview.push(obj);
13756
- }
15453
+ }
15454
+ }
15455
+
15456
+ /**
15457
+ * Temporary limit details
15458
+ * @class
15459
+ */
15460
+ class UinTempAmountModel extends AbstractModel {
15461
+ constructor(){
15462
+ super();
15463
+
15464
+ /**
15465
+ * User UIN
15466
+ * @type {string || null}
15467
+ */
15468
+ this.Uin = null;
15469
+
15470
+ /**
15471
+ * temporary limit
15472
+ * @type {number || null}
15473
+ */
15474
+ this.TempAmount = null;
15475
+
15476
+ /**
15477
+ * Start time.
15478
+ * @type {string || null}
15479
+ */
15480
+ this.StartTime = null;
15481
+
15482
+ /**
15483
+ * End time.
15484
+ * @type {string || null}
15485
+ */
15486
+ this.EndTime = null;
15487
+
15488
+ }
15489
+
15490
+ /**
15491
+ * @private
15492
+ */
15493
+ deserialize(params) {
15494
+ if (!params) {
15495
+ return;
13757
15496
  }
13758
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
15497
+ this.Uin = 'Uin' in params ? params.Uin : null;
15498
+ this.TempAmount = 'TempAmount' in params ? params.TempAmount : null;
15499
+ this.StartTime = 'StartTime' in params ? params.StartTime : null;
15500
+ this.EndTime = 'EndTime' in params ? params.EndTime : null;
13759
15501
 
13760
15502
  }
13761
15503
  }
@@ -14216,6 +15958,34 @@ class ConsumptionResourceSummaryDataItem extends AbstractModel {
14216
15958
  }
14217
15959
  }
14218
15960
 
15961
+ /**
15962
+ * ModifyGatherRule response structure.
15963
+ * @class
15964
+ */
15965
+ class ModifyGatherRuleResponse extends AbstractModel {
15966
+ constructor(){
15967
+ super();
15968
+
15969
+ /**
15970
+ * 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.
15971
+ * @type {string || null}
15972
+ */
15973
+ this.RequestId = null;
15974
+
15975
+ }
15976
+
15977
+ /**
15978
+ * @private
15979
+ */
15980
+ deserialize(params) {
15981
+ if (!params) {
15982
+ return;
15983
+ }
15984
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
15985
+
15986
+ }
15987
+ }
15988
+
14219
15989
  /**
14220
15990
  * DescribeAccountBalance request structure.
14221
15991
  * @class
@@ -14586,108 +16356,144 @@ class DeleteGatherRuleRequest extends AbstractModel {
14586
16356
  }
14587
16357
 
14588
16358
  /**
14589
- * DescribeAccountBalance response structure.
16359
+ * Paginated data of budget management basic information
14590
16360
  * @class
14591
16361
  */
14592
- class DescribeAccountBalanceResponse extends AbstractModel {
16362
+ class DataForBudgetInfoPage extends AbstractModel {
14593
16363
  constructor(){
14594
16364
  super();
14595
16365
 
14596
16366
  /**
14597
- * Available account balance in cents, which takes the same calculation rules as `RealBalance`, `CreditBalance`, and `RealCreditBalance`.
16367
+ * Pagination
14598
16368
  * @type {number || null}
14599
16369
  */
14600
- this.Balance = null;
16370
+ this.Pages = null;
14601
16371
 
14602
16372
  /**
14603
- * The user Uin for the query
16373
+ * Pagination size.
14604
16374
  * @type {number || null}
14605
16375
  */
14606
- this.Uin = null;
16376
+ this.Size = null;
14607
16377
 
14608
16378
  /**
14609
- * Available account balance in cents, which takes the same calculation rules as `Balance`, `CreditBalance`, and `RealCreditBalance`.
16379
+ * total amount
14610
16380
  * @type {number || null}
14611
16381
  */
14612
- this.RealBalance = null;
16382
+ this.Total = null;
14613
16383
 
14614
16384
  /**
14615
- * Cash account balance in cents. Currently, this field is not applied.
14616
- * @type {number || null}
16385
+ * Querying the data list
16386
+ Note: This field may return null, indicating that no valid values can be obtained.
16387
+ * @type {Array.<BudgetExtend> || null}
14617
16388
  */
14618
- this.CashAccountBalance = null;
16389
+ this.Records = null;
14619
16390
 
14620
16391
  /**
14621
- * Income account balance in cents. Currently, this field is not applied.
16392
+ * Current Page
14622
16393
  * @type {number || null}
14623
16394
  */
14624
- this.IncomeIntoAccountBalance = null;
16395
+ this.Current = null;
16396
+
16397
+ }
16398
+
16399
+ /**
16400
+ * @private
16401
+ */
16402
+ deserialize(params) {
16403
+ if (!params) {
16404
+ return;
16405
+ }
16406
+ this.Pages = 'Pages' in params ? params.Pages : null;
16407
+ this.Size = 'Size' in params ? params.Size : null;
16408
+ this.Total = 'Total' in params ? params.Total : null;
16409
+
16410
+ if (params.Records) {
16411
+ this.Records = new Array();
16412
+ for (let z in params.Records) {
16413
+ let obj = new BudgetExtend();
16414
+ obj.deserialize(params.Records[z]);
16415
+ this.Records.push(obj);
16416
+ }
16417
+ }
16418
+ this.Current = 'Current' in params ? params.Current : null;
16419
+
16420
+ }
16421
+ }
16422
+
16423
+ /**
16424
+ * Budget modification record info
16425
+ * @class
16426
+ */
16427
+ class BudgetOperationLogEntity extends AbstractModel {
16428
+ constructor(){
16429
+ super();
14625
16430
 
14626
16431
  /**
14627
- * Present account balance in cents. Currently, this field is not applied.
16432
+ * Payer Uin
14628
16433
  * @type {number || null}
14629
16434
  */
14630
- this.PresentAccountBalance = null;
16435
+ this.PayerUin = null;
14631
16436
 
14632
16437
  /**
14633
- * Frozen amount in cents.
16438
+ * User Uin
16439
+
14634
16440
  * @type {number || null}
14635
16441
  */
14636
- this.FreezeAmount = null;
16442
+ this.OwnerUin = null;
14637
16443
 
14638
16444
  /**
14639
- * Overdue amount in cents, which is when the available credit balance is negative.
16445
+ * Operation user Uin
14640
16446
  * @type {number || null}
14641
16447
  */
14642
- this.OweAmount = null;
16448
+ this.OperateUin = null;
14643
16449
 
14644
16450
  /**
14645
- * Whether overdue payments are allowed. Currently, this field is not applied.
14646
- * @type {boolean || null}
16451
+ * Date
16452
+ * @type {number || null}
14647
16453
  */
14648
- this.IsAllowArrears = null;
16454
+ this.BillDay = null;
14649
16455
 
14650
16456
  /**
14651
- * Whether you have a credit limit. Currently, this field is not applied.
14652
- * @type {boolean || null}
16457
+ * month
16458
+ * @type {string || null}
14653
16459
  */
14654
- this.IsCreditLimited = null;
16460
+ this.BillMonth = null;
14655
16461
 
14656
16462
  /**
14657
- * Credit limit in cents. Credit limit-available credit balance = consumption amount
14658
- * @type {number || null}
16463
+ * Modify type: ADD (add new), UPDATE (update), DELETE (delete)
16464
+ * @type {string || null}
14659
16465
  */
14660
- this.CreditAmount = null;
16466
+ this.Action = null;
14661
16467
 
14662
16468
  /**
14663
- * Available credit balance in cents, which takes the same calculation rules as `Balance`, `RealBalance`, and `RealCreditBalance`.
14664
- * @type {number || null}
16469
+ * modification information
16470
+ * @type {Array.<BudgetInfoDiffEntity> || null}
14665
16471
  */
14666
- this.CreditBalance = null;
16472
+ this.DiffValue = null;
14667
16473
 
14668
16474
  /**
14669
- * Available account balance in cents, which takes the same calculation rules as `Balance`, `RealBalance`, and `CreditBalance`.
14670
- * @type {number || null}
16475
+ * Creation time.
16476
+ * @type {string || null}
14671
16477
  */
14672
- this.RealCreditBalance = null;
16478
+ this.CreateTime = null;
14673
16479
 
14674
16480
  /**
14675
- * Temporary limit, unit cent
14676
- * @type {number || null}
16481
+ * Modification time.
16482
+ * @type {string || null}
14677
16483
  */
14678
- this.TempCredit = null;
16484
+ this.UpdateTime = null;
14679
16485
 
14680
16486
  /**
14681
- * Temporary limit details
14682
- * @type {Array.<UinTempAmountModel> || null}
16487
+ * Modify channel: CONSOLE/API
16488
+ * @type {string || null}
14683
16489
  */
14684
- this.TempAmountInfoList = null;
16490
+ this.OperationChannel = null;
14685
16491
 
14686
16492
  /**
14687
- * 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.
16493
+ * Budget project id
14688
16494
  * @type {string || null}
14689
16495
  */
14690
- this.RequestId = null;
16496
+ this.BudgetId = null;
14691
16497
 
14692
16498
  }
14693
16499
 
@@ -14698,30 +16504,25 @@ class DescribeAccountBalanceResponse extends AbstractModel {
14698
16504
  if (!params) {
14699
16505
  return;
14700
16506
  }
14701
- this.Balance = 'Balance' in params ? params.Balance : null;
14702
- this.Uin = 'Uin' in params ? params.Uin : null;
14703
- this.RealBalance = 'RealBalance' in params ? params.RealBalance : null;
14704
- this.CashAccountBalance = 'CashAccountBalance' in params ? params.CashAccountBalance : null;
14705
- this.IncomeIntoAccountBalance = 'IncomeIntoAccountBalance' in params ? params.IncomeIntoAccountBalance : null;
14706
- this.PresentAccountBalance = 'PresentAccountBalance' in params ? params.PresentAccountBalance : null;
14707
- this.FreezeAmount = 'FreezeAmount' in params ? params.FreezeAmount : null;
14708
- this.OweAmount = 'OweAmount' in params ? params.OweAmount : null;
14709
- this.IsAllowArrears = 'IsAllowArrears' in params ? params.IsAllowArrears : null;
14710
- this.IsCreditLimited = 'IsCreditLimited' in params ? params.IsCreditLimited : null;
14711
- this.CreditAmount = 'CreditAmount' in params ? params.CreditAmount : null;
14712
- this.CreditBalance = 'CreditBalance' in params ? params.CreditBalance : null;
14713
- this.RealCreditBalance = 'RealCreditBalance' in params ? params.RealCreditBalance : null;
14714
- this.TempCredit = 'TempCredit' in params ? params.TempCredit : null;
16507
+ this.PayerUin = 'PayerUin' in params ? params.PayerUin : null;
16508
+ this.OwnerUin = 'OwnerUin' in params ? params.OwnerUin : null;
16509
+ this.OperateUin = 'OperateUin' in params ? params.OperateUin : null;
16510
+ this.BillDay = 'BillDay' in params ? params.BillDay : null;
16511
+ this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
16512
+ this.Action = 'Action' in params ? params.Action : null;
14715
16513
 
14716
- if (params.TempAmountInfoList) {
14717
- this.TempAmountInfoList = new Array();
14718
- for (let z in params.TempAmountInfoList) {
14719
- let obj = new UinTempAmountModel();
14720
- obj.deserialize(params.TempAmountInfoList[z]);
14721
- this.TempAmountInfoList.push(obj);
16514
+ if (params.DiffValue) {
16515
+ this.DiffValue = new Array();
16516
+ for (let z in params.DiffValue) {
16517
+ let obj = new BudgetInfoDiffEntity();
16518
+ obj.deserialize(params.DiffValue[z]);
16519
+ this.DiffValue.push(obj);
14722
16520
  }
14723
16521
  }
14724
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
16522
+ this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
16523
+ this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
16524
+ this.OperationChannel = 'OperationChannel' in params ? params.OperationChannel : null;
16525
+ this.BudgetId = 'BudgetId' in params ? params.BudgetId : null;
14725
16526
 
14726
16527
  }
14727
16528
  }
@@ -15142,6 +16943,195 @@ class DescribeAllocateConditionsResponse extends AbstractModel {
15142
16943
  }
15143
16944
  }
15144
16945
 
16946
+ /**
16947
+ * DescribeVoucherInfo request structure.
16948
+ * @class
16949
+ */
16950
+ class DescribeVoucherInfoRequest extends AbstractModel {
16951
+ constructor(){
16952
+ super();
16953
+
16954
+ /**
16955
+ * <p>How many data entries per page, 20 is selected by default, maximum not exceeding 1000</p>
16956
+ * @type {number || null}
16957
+ */
16958
+ this.Limit = null;
16959
+
16960
+ /**
16961
+ * <p>Page number, starts from 1 by default</p>
16962
+ * @type {number || null}
16963
+ */
16964
+ this.Offset = null;
16965
+
16966
+ /**
16967
+ * <p>Voucher status: pending use: unUsed, Used: used, delivered: delivered, discarded: cancel, expired: overdue</p>
16968
+ * @type {string || null}
16969
+ */
16970
+ this.Status = null;
16971
+
16972
+ /**
16973
+ * <p>Voucher id</p>
16974
+ * @type {string || null}
16975
+ */
16976
+ this.VoucherId = null;
16977
+
16978
+ /**
16979
+ * <p>Voucher order id</p>
16980
+ * @type {string || null}
16981
+ */
16982
+ this.CodeId = null;
16983
+
16984
+ /**
16985
+ * <p>product code</p>
16986
+ * @type {string || null}
16987
+ */
16988
+ this.ProductCode = null;
16989
+
16990
+ /**
16991
+ * <p>Activity id</p>
16992
+ * @type {string || null}
16993
+ */
16994
+ this.ActivityId = null;
16995
+
16996
+ /**
16997
+ * <p>Voucher name</p>
16998
+ * @type {string || null}
16999
+ */
17000
+ this.VoucherName = null;
17001
+
17002
+ /**
17003
+ * <p>Start time of delivery. Example: 2021-01-01</p>
17004
+ * @type {string || null}
17005
+ */
17006
+ this.TimeFrom = null;
17007
+
17008
+ /**
17009
+ * <p>Delivery end time. Example: 2021-01-01</p>
17010
+ * @type {string || null}
17011
+ */
17012
+ this.TimeTo = null;
17013
+
17014
+ /**
17015
+ * <p>Specified sorting field: BeginTime start time, EndTime expiry time, CreateTime creation time</p>
17016
+ * @type {string || null}
17017
+ */
17018
+ this.SortField = null;
17019
+
17020
+ /**
17021
+ * <p>Specify ascending/descending order: desc, asc</p>
17022
+ * @type {string || null}
17023
+ */
17024
+ this.SortOrder = null;
17025
+
17026
+ /**
17027
+ * <p>Payment mode, postPay (postpaid)/prePay (prepaid)/riPay (reserved instance)/"" or "*" means all modes. If payMode is "" or "*", productCode and subProductCode must be empty.</p>
17028
+ * @type {string || null}
17029
+ */
17030
+ this.PayMode = null;
17031
+
17032
+ /**
17033
+ * <p>Payment scenario PayMode=postPay: spotpay - spot instance, "settle account" - standard post-paid. PayMode=prePay: purchase - monthly subscription new purchase, renew - annual and monthly renewal (auto renewal), modify - monthly subscription configuration change. PayMode=riPay: oneOffFee - prepayment of reserved instance, hourlyFee - hourly charge for reserved instance, * - support all payment scenarios.</p>
17034
+ * @type {string || null}
17035
+ */
17036
+ this.PayScene = null;
17037
+
17038
+ /**
17039
+ * <p>Operator is used by default as user uin</p>
17040
+ * @type {string || null}
17041
+ */
17042
+ this.Operator = null;
17043
+
17044
+ /**
17045
+ * <p>The primary types of vouchers are has_price and no_price, which represent the cash voucher with a price and the cash voucher without a price respectively.</p>
17046
+ * @type {string || null}
17047
+ */
17048
+ this.VoucherMainType = null;
17049
+
17050
+ /**
17051
+ * <p>Voucher subtype: Discount is a discount voucher, and deduct is a deduction voucher.</p>
17052
+ * @type {string || null}
17053
+ */
17054
+ this.VoucherSubType = null;
17055
+
17056
+ /**
17057
+ * <p>Voucher validity start time</p>
17058
+ * @type {string || null}
17059
+ */
17060
+ this.StartTimeFrom = null;
17061
+
17062
+ /**
17063
+ * <p>Voucher validity time end time</p>
17064
+ * @type {string || null}
17065
+ */
17066
+ this.StartTimeTo = null;
17067
+
17068
+ /**
17069
+ * <p>Voucher expiration time start time</p>
17070
+ * @type {string || null}
17071
+ */
17072
+ this.EndTimeFrom = null;
17073
+
17074
+ /**
17075
+ * <p>Voucher expiration time end time</p>
17076
+ * @type {string || null}
17077
+ */
17078
+ this.EndTimeTo = null;
17079
+
17080
+ /**
17081
+ * <p>Voucher issuance start time</p>
17082
+ * @type {string || null}
17083
+ */
17084
+ this.CreateTimeFrom = null;
17085
+
17086
+ /**
17087
+ * <p>Voucher issuance time end time</p>
17088
+ * @type {string || null}
17089
+ */
17090
+ this.CreateTimeTo = null;
17091
+
17092
+ /**
17093
+ * <p>Language parameter</p><p>Default value: zh</p><p>Expect the product name to return in Chinese or other languages. Currently only support Chinese and English. Return in Chinese when "zh" is entered or left blank; return in English in other cases.</p>
17094
+ * @type {string || null}
17095
+ */
17096
+ this.Lang = null;
17097
+
17098
+ }
17099
+
17100
+ /**
17101
+ * @private
17102
+ */
17103
+ deserialize(params) {
17104
+ if (!params) {
17105
+ return;
17106
+ }
17107
+ this.Limit = 'Limit' in params ? params.Limit : null;
17108
+ this.Offset = 'Offset' in params ? params.Offset : null;
17109
+ this.Status = 'Status' in params ? params.Status : null;
17110
+ this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
17111
+ this.CodeId = 'CodeId' in params ? params.CodeId : null;
17112
+ this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
17113
+ this.ActivityId = 'ActivityId' in params ? params.ActivityId : null;
17114
+ this.VoucherName = 'VoucherName' in params ? params.VoucherName : null;
17115
+ this.TimeFrom = 'TimeFrom' in params ? params.TimeFrom : null;
17116
+ this.TimeTo = 'TimeTo' in params ? params.TimeTo : null;
17117
+ this.SortField = 'SortField' in params ? params.SortField : null;
17118
+ this.SortOrder = 'SortOrder' in params ? params.SortOrder : null;
17119
+ this.PayMode = 'PayMode' in params ? params.PayMode : null;
17120
+ this.PayScene = 'PayScene' in params ? params.PayScene : null;
17121
+ this.Operator = 'Operator' in params ? params.Operator : null;
17122
+ this.VoucherMainType = 'VoucherMainType' in params ? params.VoucherMainType : null;
17123
+ this.VoucherSubType = 'VoucherSubType' in params ? params.VoucherSubType : null;
17124
+ this.StartTimeFrom = 'StartTimeFrom' in params ? params.StartTimeFrom : null;
17125
+ this.StartTimeTo = 'StartTimeTo' in params ? params.StartTimeTo : null;
17126
+ this.EndTimeFrom = 'EndTimeFrom' in params ? params.EndTimeFrom : null;
17127
+ this.EndTimeTo = 'EndTimeTo' in params ? params.EndTimeTo : null;
17128
+ this.CreateTimeFrom = 'CreateTimeFrom' in params ? params.CreateTimeFrom : null;
17129
+ this.CreateTimeTo = 'CreateTimeTo' in params ? params.CreateTimeTo : null;
17130
+ this.Lang = 'Lang' in params ? params.Lang : null;
17131
+
17132
+ }
17133
+ }
17134
+
15145
17135
  /**
15146
17136
  * The usage records.
15147
17137
  * @class
@@ -15221,13 +17211,32 @@ class UsageRecords extends AbstractModel {
15221
17211
  }
15222
17212
 
15223
17213
  /**
15224
- * ModifyAllocationRule response structure.
17214
+ * DescribeBudgetRemindRecordList response structure.
15225
17215
  * @class
15226
17216
  */
15227
- class ModifyAllocationRuleResponse extends AbstractModel {
17217
+ class DescribeBudgetRemindRecordListResponse extends AbstractModel {
15228
17218
  constructor(){
15229
17219
  super();
15230
17220
 
17221
+ /**
17222
+ * Budget configuration properties
17223
+ * @type {BudgetRemindRecordList || null}
17224
+ */
17225
+ this.Data = null;
17226
+
17227
+ /**
17228
+ * Error message prompt.
17229
+ Note: This field may return null, indicating that no valid values can be obtained.
17230
+ * @type {string || null}
17231
+ */
17232
+ this.Message = null;
17233
+
17234
+ /**
17235
+ * Error response code
17236
+ * @type {number || null}
17237
+ */
17238
+ this.Code = null;
17239
+
15231
17240
  /**
15232
17241
  * 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.
15233
17242
  * @type {string || null}
@@ -15243,6 +17252,14 @@ class ModifyAllocationRuleResponse extends AbstractModel {
15243
17252
  if (!params) {
15244
17253
  return;
15245
17254
  }
17255
+
17256
+ if (params.Data) {
17257
+ let obj = new BudgetRemindRecordList();
17258
+ obj.deserialize(params.Data)
17259
+ this.Data = obj;
17260
+ }
17261
+ this.Message = 'Message' in params ? params.Message : null;
17262
+ this.Code = 'Code' in params ? params.Code : null;
15246
17263
  this.RequestId = 'RequestId' in params ? params.RequestId : null;
15247
17264
 
15248
17265
  }
@@ -15284,156 +17301,186 @@ class BillComponent extends AbstractModel {
15284
17301
  }
15285
17302
 
15286
17303
  /**
15287
- * DescribeVoucherInfo request structure.
17304
+ * DescribeBillSummaryByRegion response structure.
15288
17305
  * @class
15289
17306
  */
15290
- class DescribeVoucherInfoRequest extends AbstractModel {
17307
+ class DescribeBillSummaryByRegionResponse extends AbstractModel {
15291
17308
  constructor(){
15292
17309
  super();
15293
17310
 
15294
17311
  /**
15295
- * <p>How many data entries per page, 20 is selected by default, maximum not exceeding 1000</p>
17312
+ * Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates that the current UIN is initializing billing for the first time. Wait for 5-10 minutes and try again.
15296
17313
  * @type {number || null}
15297
17314
  */
15298
- this.Limit = null;
17315
+ this.Ready = null;
15299
17316
 
15300
17317
  /**
15301
- * <p>Page number, starts from 1 by default</p>
15302
- * @type {number || null}
17318
+ * Detailed cost distribution for all regions
17319
+ Note: This field may return null, indicating that no valid value was found.
17320
+ * @type {Array.<RegionSummaryOverviewItem> || null}
15303
17321
  */
15304
- this.Offset = null;
17322
+ this.SummaryOverview = null;
15305
17323
 
15306
17324
  /**
15307
- * <p>Voucher status: pending use: unUsed, Used: used, delivered: delivered, discarded: cancel, expired: overdue</p>
17325
+ * 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.
15308
17326
  * @type {string || null}
15309
17327
  */
15310
- this.Status = null;
17328
+ this.RequestId = null;
15311
17329
 
15312
- /**
15313
- * <p>Voucher id</p>
15314
- * @type {string || null}
15315
- */
15316
- this.VoucherId = null;
17330
+ }
15317
17331
 
15318
- /**
15319
- * <p>Voucher order id</p>
15320
- * @type {string || null}
15321
- */
15322
- this.CodeId = null;
17332
+ /**
17333
+ * @private
17334
+ */
17335
+ deserialize(params) {
17336
+ if (!params) {
17337
+ return;
17338
+ }
17339
+ this.Ready = 'Ready' in params ? params.Ready : null;
15323
17340
 
15324
- /**
15325
- * <p>product code</p>
15326
- * @type {string || null}
15327
- */
15328
- this.ProductCode = null;
17341
+ if (params.SummaryOverview) {
17342
+ this.SummaryOverview = new Array();
17343
+ for (let z in params.SummaryOverview) {
17344
+ let obj = new RegionSummaryOverviewItem();
17345
+ obj.deserialize(params.SummaryOverview[z]);
17346
+ this.SummaryOverview.push(obj);
17347
+ }
17348
+ }
17349
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
15329
17350
 
15330
- /**
15331
- * <p>Activity id</p>
15332
- * @type {string || null}
15333
- */
15334
- this.ActivityId = null;
17351
+ }
17352
+ }
15335
17353
 
15336
- /**
15337
- * <p>Voucher name</p>
15338
- * @type {string || null}
15339
- */
15340
- this.VoucherName = null;
17354
+ /**
17355
+ * Paginated data of budget management
17356
+ * @class
17357
+ */
17358
+ class BudgetRemindRecordList extends AbstractModel {
17359
+ constructor(){
17360
+ super();
15341
17361
 
15342
17362
  /**
15343
- * <p>Start time of delivery. Example: 2021-01-01</p>
15344
- * @type {string || null}
17363
+ * Optimize COUNT SQL automatically if encounter unresolved jSqlParser case, set the parameter to false
17364
+ Note: This field may return null, indicating that no valid values can be obtained.
17365
+ * @type {boolean || null}
15345
17366
  */
15346
- this.TimeFrom = null;
17367
+ this.OptimizeCountSql = null;
15347
17368
 
15348
17369
  /**
15349
- * <p>Delivery end time. Example: 2021-01-01</p>
15350
- * @type {string || null}
17370
+ * Pagination
17371
+ Note: This field may return null, indicating that no valid values can be obtained.
17372
+ * @type {number || null}
15351
17373
  */
15352
- this.TimeTo = null;
17374
+ this.Pages = null;
15353
17375
 
15354
17376
  /**
15355
- * <p>Specified sorting field: BeginTime start time, EndTime expiry time, CreateTime creation time</p>
15356
- * @type {string || null}
17377
+ * Sorting field information. When allowing frontend input, be aware of SQL injection issue. Use SqlInjectionUtils.check(...) to check the text.
17378
+ Note: This field may return null, indicating that no valid values can be obtained.
17379
+ * @type {Array.<OrderDto> || null}
15357
17380
  */
15358
- this.SortField = null;
17381
+ this.Orders = null;
15359
17382
 
15360
17383
  /**
15361
- * <p>Specify ascending/descending order: desc, asc</p>
17384
+ * The statementId for a custom count query in xml can also be set without specifying it. Just add _mpCount after the pagination statementId. For example, for the pagination selectPageById, set the count query statementId to selectPageById_mpCount. The SQL execution can then be found by default.
17385
+ Note: This field may return null, indicating that no valid values can be obtained.
15362
17386
  * @type {string || null}
15363
17387
  */
15364
- this.SortOrder = null;
17388
+ this.CountId = null;
15365
17389
 
15366
17390
  /**
15367
- * <p>Payment mode, postPay (postpaid)/prePay (prepaid)/riPay (reserved instance)/"" or "*" means all modes. If payMode is "" or "*", productCode and subProductCode must be empty.</p>
15368
- * @type {string || null}
17391
+ * Pagination size.
17392
+ Note: This field may return null, indicating that no valid values can be obtained.
17393
+ * @type {number || null}
15369
17394
  */
15370
- this.PayMode = null;
17395
+ this.Size = null;
15371
17396
 
15372
17397
  /**
15373
- * <p>Payment scenario PayMode=postPay: spotpay - spot instance, "settle account" - standard post-paid. PayMode=prePay: purchase - monthly subscription new purchase, renew - annual and monthly renewal (auto renewal), modify - monthly subscription configuration change. PayMode=riPay: oneOffFee - prepayment of reserved instance, hourlyFee - hourly charge for reserved instance, * - support all payment scenarios.</p>
15374
- * @type {string || null}
17398
+ * total amount
17399
+ Note: This field may return null, indicating that no valid values can be obtained.
17400
+ * @type {number || null}
15375
17401
  */
15376
- this.PayScene = null;
17402
+ this.Total = null;
15377
17403
 
15378
17404
  /**
15379
- * <p>Operator is used by default as user uin</p>
17405
+ * Number of items per page limit
17406
+ Note: This field may return null, indicating that no valid values can be obtained.
15380
17407
  * @type {string || null}
15381
17408
  */
15382
- this.Operator = null;
17409
+ this.MaxLimit = null;
15383
17410
 
15384
17411
  /**
15385
- * <p>The primary types of vouchers are has_price and no_price, which represent the cash voucher with a price and the cash voucher without a price respectively.</p>
15386
- * @type {string || null}
17412
+ * Querying the data list
17413
+ Note: This field may return null, indicating that no valid values can be obtained.
17414
+ * @type {Array.<BudgetRemindRecords> || null}
15387
17415
  */
15388
- this.VoucherMainType = null;
17416
+ this.Records = null;
15389
17417
 
15390
17418
  /**
15391
- * <p>Voucher subtype: Discount is a discount voucher, and deduct is a deduction voucher.</p>
15392
- * @type {string || null}
17419
+ * Current Page
17420
+ Note: This field may return null, indicating that no valid values can be obtained.
17421
+ * @type {number || null}
15393
17422
  */
15394
- this.VoucherSubType = null;
17423
+ this.Current = null;
15395
17424
 
15396
17425
  /**
15397
- * <p>Voucher validity start time</p>
15398
- * @type {string || null}
17426
+ * Whether to perform a count query. If you only want to query the list and do not query the total record count, set the parameter to false.
17427
+ Note: This field may return null, indicating that no valid values can be obtained.
17428
+ * @type {boolean || null}
15399
17429
  */
15400
- this.StartTimeFrom = null;
17430
+ this.SearchCount = null;
15401
17431
 
15402
- /**
15403
- * <p>Voucher validity time end time</p>
15404
- * @type {string || null}
15405
- */
15406
- this.StartTimeTo = null;
17432
+ }
15407
17433
 
15408
- /**
15409
- * <p>Voucher expiration time start time</p>
15410
- * @type {string || null}
15411
- */
15412
- this.EndTimeFrom = null;
17434
+ /**
17435
+ * @private
17436
+ */
17437
+ deserialize(params) {
17438
+ if (!params) {
17439
+ return;
17440
+ }
17441
+ this.OptimizeCountSql = 'OptimizeCountSql' in params ? params.OptimizeCountSql : null;
17442
+ this.Pages = 'Pages' in params ? params.Pages : null;
15413
17443
 
15414
- /**
15415
- * <p>Voucher expiration time end time</p>
15416
- * @type {string || null}
15417
- */
15418
- this.EndTimeTo = null;
17444
+ if (params.Orders) {
17445
+ this.Orders = new Array();
17446
+ for (let z in params.Orders) {
17447
+ let obj = new OrderDto();
17448
+ obj.deserialize(params.Orders[z]);
17449
+ this.Orders.push(obj);
17450
+ }
17451
+ }
17452
+ this.CountId = 'CountId' in params ? params.CountId : null;
17453
+ this.Size = 'Size' in params ? params.Size : null;
17454
+ this.Total = 'Total' in params ? params.Total : null;
17455
+ this.MaxLimit = 'MaxLimit' in params ? params.MaxLimit : null;
17456
+
17457
+ if (params.Records) {
17458
+ this.Records = new Array();
17459
+ for (let z in params.Records) {
17460
+ let obj = new BudgetRemindRecords();
17461
+ obj.deserialize(params.Records[z]);
17462
+ this.Records.push(obj);
17463
+ }
17464
+ }
17465
+ this.Current = 'Current' in params ? params.Current : null;
17466
+ this.SearchCount = 'SearchCount' in params ? params.SearchCount : null;
15419
17467
 
15420
- /**
15421
- * <p>Voucher issuance start time</p>
15422
- * @type {string || null}
15423
- */
15424
- this.CreateTimeFrom = null;
17468
+ }
17469
+ }
15425
17470
 
15426
- /**
15427
- * <p>Voucher issuance time end time</p>
15428
- * @type {string || null}
15429
- */
15430
- this.CreateTimeTo = null;
17471
+ /**
17472
+ * DeleteBudget request structure.
17473
+ * @class
17474
+ */
17475
+ class DeleteBudgetRequest extends AbstractModel {
17476
+ constructor(){
17477
+ super();
15431
17478
 
15432
17479
  /**
15433
- * <p>Language parameter</p><p>Default value: zh</p><p>Expect the product name to return in Chinese or other languages. Currently only support Chinese and English. Return in Chinese when "zh" is entered or left blank; return in English in other cases.</p>
15434
- * @type {string || null}
17480
+ * Budget project id
17481
+ * @type {Array.<string> || null}
15435
17482
  */
15436
- this.Lang = null;
17483
+ this.BudgetIds = null;
15437
17484
 
15438
17485
  }
15439
17486
 
@@ -15444,30 +17491,7 @@ class DescribeVoucherInfoRequest extends AbstractModel {
15444
17491
  if (!params) {
15445
17492
  return;
15446
17493
  }
15447
- this.Limit = 'Limit' in params ? params.Limit : null;
15448
- this.Offset = 'Offset' in params ? params.Offset : null;
15449
- this.Status = 'Status' in params ? params.Status : null;
15450
- this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
15451
- this.CodeId = 'CodeId' in params ? params.CodeId : null;
15452
- this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
15453
- this.ActivityId = 'ActivityId' in params ? params.ActivityId : null;
15454
- this.VoucherName = 'VoucherName' in params ? params.VoucherName : null;
15455
- this.TimeFrom = 'TimeFrom' in params ? params.TimeFrom : null;
15456
- this.TimeTo = 'TimeTo' in params ? params.TimeTo : null;
15457
- this.SortField = 'SortField' in params ? params.SortField : null;
15458
- this.SortOrder = 'SortOrder' in params ? params.SortOrder : null;
15459
- this.PayMode = 'PayMode' in params ? params.PayMode : null;
15460
- this.PayScene = 'PayScene' in params ? params.PayScene : null;
15461
- this.Operator = 'Operator' in params ? params.Operator : null;
15462
- this.VoucherMainType = 'VoucherMainType' in params ? params.VoucherMainType : null;
15463
- this.VoucherSubType = 'VoucherSubType' in params ? params.VoucherSubType : null;
15464
- this.StartTimeFrom = 'StartTimeFrom' in params ? params.StartTimeFrom : null;
15465
- this.StartTimeTo = 'StartTimeTo' in params ? params.StartTimeTo : null;
15466
- this.EndTimeFrom = 'EndTimeFrom' in params ? params.EndTimeFrom : null;
15467
- this.EndTimeTo = 'EndTimeTo' in params ? params.EndTimeTo : null;
15468
- this.CreateTimeFrom = 'CreateTimeFrom' in params ? params.CreateTimeFrom : null;
15469
- this.CreateTimeTo = 'CreateTimeTo' in params ? params.CreateTimeTo : null;
15470
- this.Lang = 'Lang' in params ? params.Lang : null;
17494
+ this.BudgetIds = 'BudgetIds' in params ? params.BudgetIds : null;
15471
17495
 
15472
17496
  }
15473
17497
  }
@@ -16492,46 +18516,26 @@ class CosDetailSets extends AbstractModel {
16492
18516
  }
16493
18517
 
16494
18518
  /**
16495
- * DescribeAllocationRuleSummary request structure.
18519
+ * Budget computation for complex data type
16496
18520
  * @class
16497
18521
  */
16498
- class DescribeAllocationRuleSummaryRequest extends AbstractModel {
18522
+ class BudgetPlan extends AbstractModel {
16499
18523
  constructor(){
16500
18524
  super();
16501
18525
 
16502
18526
  /**
16503
- * Specifies the data quantity per fetch. the maximum value is 1000.
16504
- * @type {number || null}
16505
- */
16506
- this.Limit = null;
16507
-
16508
- /**
16509
- * Pagination offset
16510
- * @type {number || null}
16511
- */
16512
- this.Offset = null;
16513
-
16514
- /**
16515
- * Month, which is the current month by default if not provided.
18527
+ * Frontend page date display
18528
+ Note: This field may return null, indicating that no valid values can be obtained.
16516
18529
  * @type {string || null}
16517
18530
  */
16518
- this.Month = null;
16519
-
16520
- /**
16521
- * Public area policy type, for filtering.
16522
- Enumeration values are as follows:.
16523
- 1 - custom sharing proportion.
16524
- 2 - proportional allocation.
16525
- 3 - allocation by proportion.
16526
- * @type {number || null}
16527
- */
16528
- this.Type = null;
18531
+ this.DateDesc = null;
16529
18532
 
16530
18533
  /**
16531
- * Sharing rule name or cost allocation unit name, used for fuzzy filter criteria.
18534
+ * Budget limit
18535
+ Note: This field may return null, indicating that no valid values can be obtained.
16532
18536
  * @type {string || null}
16533
18537
  */
16534
- this.Name = null;
18538
+ this.Quota = null;
16535
18539
 
16536
18540
  }
16537
18541
 
@@ -16542,11 +18546,8 @@ Enumeration values are as follows:.
16542
18546
  if (!params) {
16543
18547
  return;
16544
18548
  }
16545
- this.Limit = 'Limit' in params ? params.Limit : null;
16546
- this.Offset = 'Offset' in params ? params.Offset : null;
16547
- this.Month = 'Month' in params ? params.Month : null;
16548
- this.Type = 'Type' in params ? params.Type : null;
16549
- this.Name = 'Name' in params ? params.Name : null;
18549
+ this.DateDesc = 'DateDesc' in params ? params.DateDesc : null;
18550
+ this.Quota = 'Quota' in params ? params.Quota : null;
16550
18551
 
16551
18552
  }
16552
18553
  }
@@ -17373,19 +19374,21 @@ module.exports = {
17373
19374
  CreateAllocationUnitRequest: CreateAllocationUnitRequest,
17374
19375
  DescribeBillAdjustInfoResponse: DescribeBillAdjustInfoResponse,
17375
19376
  DescribeCostSummaryByProductRequest: DescribeCostSummaryByProductRequest,
19377
+ DescribeBudgetResponse: DescribeBudgetResponse,
17376
19378
  DescribeCPQBillingMappingRequest: DescribeCPQBillingMappingRequest,
17377
19379
  ConsumptionBusinessSummaryDataItem: ConsumptionBusinessSummaryDataItem,
17378
- ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
17379
- RenewInstance: RenewInstance,
19380
+ ModifyGatherRuleRequest: ModifyGatherRuleRequest,
19381
+ BudgetWarn: BudgetWarn,
17380
19382
  ModifyAllocationRuleRequest: ModifyAllocationRuleRequest,
17381
19383
  DeleteAllocationRuleRequest: DeleteAllocationRuleRequest,
17382
19384
  CreateAllocationRuleResponse: CreateAllocationRuleResponse,
17383
19385
  BillTagInfo: BillTagInfo,
17384
19386
  AllocationOverviewTotal: AllocationOverviewTotal,
17385
19387
  CreateInstanceResponse: CreateInstanceResponse,
19388
+ BudgetExtend: BudgetExtend,
17386
19389
  ConditionBusiness: ConditionBusiness,
17387
19390
  AnalyseActionTypeDetail: AnalyseActionTypeDetail,
17388
- DescribeCPQBillingMappingResponse: DescribeCPQBillingMappingResponse,
19391
+ DescribeBudgetRequest: DescribeBudgetRequest,
17389
19392
  DescribeCostExplorerSummaryRequest: DescribeCostExplorerSummaryRequest,
17390
19393
  BillBusinessLink: BillBusinessLink,
17391
19394
  DescribeCostSummaryByProductResponse: DescribeCostSummaryByProductResponse,
@@ -17396,11 +19399,12 @@ module.exports = {
17396
19399
  BillDetailComponentConfig: BillDetailComponentConfig,
17397
19400
  DescribeCostSummaryByResourceResponse: DescribeCostSummaryByResourceResponse,
17398
19401
  DescribeBillSummaryByRegionRequest: DescribeBillSummaryByRegionRequest,
19402
+ CreateBudgetRequest: CreateBudgetRequest,
17399
19403
  AdjustInfoDetail: AdjustInfoDetail,
17400
19404
  DescribeAllocateConditionsRequest: DescribeAllocateConditionsRequest,
17401
19405
  CreateAllocationRuleRequest: CreateAllocationRuleRequest,
17402
19406
  ConsumptionRegionSummaryDataItem: ConsumptionRegionSummaryDataItem,
17403
- DescribeAllocationUnitDetailResponse: DescribeAllocationUnitDetailResponse,
19407
+ DeleteBudgetResponse: DeleteBudgetResponse,
17404
19408
  DescribeBillSummaryRequest: DescribeBillSummaryRequest,
17405
19409
  DescribeBillResourceSummaryResponse: DescribeBillResourceSummaryResponse,
17406
19410
  AllocationSummaryByItem: AllocationSummaryByItem,
@@ -17410,8 +19414,10 @@ module.exports = {
17410
19414
  DescribeAllocationOverviewResponse: DescribeAllocationOverviewResponse,
17411
19415
  DescribeDosageCosDetailByDateRequest: DescribeDosageCosDetailByDateRequest,
17412
19416
  DeleteAllocationTagRequest: DeleteAllocationTagRequest,
19417
+ OrderDto: OrderDto,
17413
19418
  OperateRsp: OperateRsp,
17414
19419
  BillDistributionResourceSummary: BillDistributionResourceSummary,
19420
+ WaveThresholdForm: WaveThresholdForm,
17415
19421
  BusinessSummaryInfo: BusinessSummaryInfo,
17416
19422
  DescribeAllocationBillDetailRequest: DescribeAllocationBillDetailRequest,
17417
19423
  DescribeBillSummaryByProductRequest: DescribeBillSummaryByProductRequest,
@@ -17421,34 +19427,43 @@ module.exports = {
17421
19427
  DescribeVoucherUsageDetailsResponse: DescribeVoucherUsageDetailsResponse,
17422
19428
  ResourceSpuSet: ResourceSpuSet,
17423
19429
  ConsumptionSummaryTotal: ConsumptionSummaryTotal,
17424
- DescribeAllocationOverviewRequest: DescribeAllocationOverviewRequest,
19430
+ BudgetConditionsForm: BudgetConditionsForm,
19431
+ DescribeAccountBalanceResponse: DescribeAccountBalanceResponse,
17425
19432
  DescribeGatherResourceResponse: DescribeGatherResourceResponse,
19433
+ DescribeAllocationSummaryByResourceRequest: DescribeAllocationSummaryByResourceRequest,
17426
19434
  DescribeCostDetailResponse: DescribeCostDetailResponse,
17427
19435
  DescribeAllocationMonthOverviewResponse: DescribeAllocationMonthOverviewResponse,
17428
19436
  DescribeAllocationSummaryByItemResponse: DescribeAllocationSummaryByItemResponse,
19437
+ DataForBudgetOperationLogPage: DataForBudgetOperationLogPage,
19438
+ ModifyBudgetResponse: ModifyBudgetResponse,
17429
19439
  DescribeGatherResourceRequest: DescribeGatherResourceRequest,
17430
19440
  DescribeCostSummaryByProjectResponse: DescribeCostSummaryByProjectResponse,
17431
19441
  AnalyseProjectDetail: AnalyseProjectDetail,
17432
19442
  DescribeOrgMemberAccountBalanceData: DescribeOrgMemberAccountBalanceData,
17433
19443
  DescribeBillSummaryByTagResponse: DescribeBillSummaryByTagResponse,
17434
- ModifyGatherRuleRequest: ModifyGatherRuleRequest,
19444
+ ModifyAllocationRuleResponse: ModifyAllocationRuleResponse,
17435
19445
  SummaryDetail: SummaryDetail,
17436
- DescribeBillSummaryByPayModeResponse: DescribeBillSummaryByPayModeResponse,
19446
+ DescribeCPQBillingMappingResponse: DescribeCPQBillingMappingResponse,
19447
+ DescribeAllocationUnitDetailResponse: DescribeAllocationUnitDetailResponse,
17437
19448
  DescribeAllocationSummaryByBusinessResponse: DescribeAllocationSummaryByBusinessResponse,
17438
19449
  DescribeAllocationSummaryByItemRequest: DescribeAllocationSummaryByItemRequest,
17439
19450
  DescribeBillSummaryByTagRequest: DescribeBillSummaryByTagRequest,
17440
19451
  AnalyseDetail: AnalyseDetail,
17441
19452
  BillDays: BillDays,
19453
+ RenewInstance: RenewInstance,
17442
19454
  DescribeAllocationRuleSummaryResponse: DescribeAllocationRuleSummaryResponse,
17443
19455
  AnalyseAmountDetail: AnalyseAmountDetail,
17444
19456
  DescribeBillSummaryByProjectRequest: DescribeBillSummaryByProjectRequest,
17445
19457
  CreateGatherRuleRequest: CreateGatherRuleRequest,
17446
19458
  DescribeBillResourceSummaryForOrganizationRequest: DescribeBillResourceSummaryForOrganizationRequest,
19459
+ DescribeBudgetRemindRecordListRequest: DescribeBudgetRemindRecordListRequest,
17447
19460
  DescribeCostSummaryByRegionRequest: DescribeCostSummaryByRegionRequest,
17448
19461
  SetRenewalRequest: SetRenewalRequest,
17449
19462
  ConsumptionSummaryTrend: ConsumptionSummaryTrend,
17450
19463
  DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
19464
+ DescribeAllocationOverviewRequest: DescribeAllocationOverviewRequest,
17451
19465
  DescribeAllocationSummaryByBusinessRequest: DescribeAllocationSummaryByBusinessRequest,
19466
+ CreateBudgetResponse: CreateBudgetResponse,
17452
19467
  DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
17453
19468
  DeleteGatherRuleResponse: DeleteGatherRuleResponse,
17454
19469
  DescribeAllocationBillConditionsRequest: DescribeAllocationBillConditionsRequest,
@@ -17466,6 +19481,7 @@ module.exports = {
17466
19481
  BillDetail: BillDetail,
17467
19482
  DescribeBillDetailResponse: DescribeBillDetailResponse,
17468
19483
  Deal: Deal,
19484
+ ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
17469
19485
  DescribeDealsByCondResponse: DescribeDealsByCondResponse,
17470
19486
  BillZoneId: BillZoneId,
17471
19487
  BillRegion: BillRegion,
@@ -17487,6 +19503,7 @@ module.exports = {
17487
19503
  AnalysePayModeDetail: AnalysePayModeDetail,
17488
19504
  AllocationBillTrendDetail: AllocationBillTrendDetail,
17489
19505
  DescribeBillSummaryResponse: DescribeBillSummaryResponse,
19506
+ TagsForm: TagsForm,
17490
19507
  AnalyseOwnerUinDetail: AnalyseOwnerUinDetail,
17491
19508
  Conditions: Conditions,
17492
19509
  AnalyseTimeDetail: AnalyseTimeDetail,
@@ -17497,7 +19514,8 @@ module.exports = {
17497
19514
  ConsumptionProjectSummaryDataItem: ConsumptionProjectSummaryDataItem,
17498
19515
  AnalyseRegionDetail: AnalyseRegionDetail,
17499
19516
  ProductInfo: ProductInfo,
17500
- DeleteAllocationTagResponse: DeleteAllocationTagResponse,
19517
+ BudgetInfoDiffEntity: BudgetInfoDiffEntity,
19518
+ DescribeBudgetOperationLogResponse: DescribeBudgetOperationLogResponse,
17501
19519
  AllocationDetail: AllocationDetail,
17502
19520
  VoucherInfos: VoucherInfos,
17503
19521
  DescribeAllocationUnitDetailRequest: DescribeAllocationUnitDetailRequest,
@@ -17505,7 +19523,7 @@ module.exports = {
17505
19523
  AllocationSummaryByBusiness: AllocationSummaryByBusiness,
17506
19524
  CreateInstanceRequest: CreateInstanceRequest,
17507
19525
  AllocationStat: AllocationStat,
17508
- ModifyGatherRuleResponse: ModifyGatherRuleResponse,
19526
+ ModifyBudgetRequest: ModifyBudgetRequest,
17509
19527
  DescribeOrgMemberAccountBalanceResponse: DescribeOrgMemberAccountBalanceResponse,
17510
19528
  BillProject: BillProject,
17511
19529
  ActionSummaryOverviewItem: ActionSummaryOverviewItem,
@@ -17519,7 +19537,7 @@ module.exports = {
17519
19537
  ConsumptionResourceSummaryConditionValue: ConsumptionResourceSummaryConditionValue,
17520
19538
  DescribeCostSummaryByRegionResponse: DescribeCostSummaryByRegionResponse,
17521
19539
  DescribeCostDetailRequest: DescribeCostDetailRequest,
17522
- DescribeAllocationSummaryByResourceRequest: DescribeAllocationSummaryByResourceRequest,
19540
+ BudgetSendInfoDto: BudgetSendInfoDto,
17523
19541
  RenewInstanceRequest: RenewInstanceRequest,
17524
19542
  DescribeBillSummaryForOrganizationResponse: DescribeBillSummaryForOrganizationResponse,
17525
19543
  BillOperateUin: BillOperateUin,
@@ -17531,36 +19549,46 @@ module.exports = {
17531
19549
  ExcludedProducts: ExcludedProducts,
17532
19550
  PayModeSummaryOverviewItem: PayModeSummaryOverviewItem,
17533
19551
  BillBusiness: BillBusiness,
19552
+ BudgetRemindRecords: BudgetRemindRecords,
17534
19553
  DescribeAllocationRuleDetailResponse: DescribeAllocationRuleDetailResponse,
17535
19554
  SetRenewalResponse: SetRenewalResponse,
17536
19555
  UsageDetails: UsageDetails,
19556
+ DescribeBillSummaryByPayModeResponse: DescribeBillSummaryByPayModeResponse,
17537
19557
  BillInstanceType: BillInstanceType,
17538
19558
  AnalyseBusinessDetail: AnalyseBusinessDetail,
17539
19559
  AnalyseConditions: AnalyseConditions,
19560
+ DeleteAllocationTagResponse: DeleteAllocationTagResponse,
19561
+ BudgetInfoApiResponse: BudgetInfoApiResponse,
17540
19562
  CostDetail: CostDetail,
17541
- UinTempAmountModel: UinTempAmountModel,
19563
+ DescribeBudgetOperationLogRequest: DescribeBudgetOperationLogRequest,
17542
19564
  DescribeBillSummaryByProductResponse: DescribeBillSummaryByProductResponse,
17543
- DescribeBillSummaryByRegionResponse: DescribeBillSummaryByRegionResponse,
19565
+ DescribeAllocationRuleSummaryRequest: DescribeAllocationRuleSummaryRequest,
19566
+ UinTempAmountModel: UinTempAmountModel,
17544
19567
  CreateAllocationTagResponse: CreateAllocationTagResponse,
17545
19568
  ModifyAllocationUnitRequest: ModifyAllocationUnitRequest,
17546
19569
  DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
17547
19570
  ConsumptionResourceSummaryDataItem: ConsumptionResourceSummaryDataItem,
19571
+ ModifyGatherRuleResponse: ModifyGatherRuleResponse,
17548
19572
  DescribeAccountBalanceRequest: DescribeAccountBalanceRequest,
17549
19573
  DescribeBillDetailRequest: DescribeBillDetailRequest,
17550
19574
  AnalyseZoneDetail: AnalyseZoneDetail,
17551
19575
  DescribeVoucherInfoResponse: DescribeVoucherInfoResponse,
17552
19576
  AllocationRulesSummary: AllocationRulesSummary,
17553
19577
  DeleteGatherRuleRequest: DeleteGatherRuleRequest,
17554
- DescribeAccountBalanceResponse: DescribeAccountBalanceResponse,
19578
+ DataForBudgetInfoPage: DataForBudgetInfoPage,
19579
+ BudgetOperationLogEntity: BudgetOperationLogEntity,
17555
19580
  DescribeAllocationBillDetailResponse: DescribeAllocationBillDetailResponse,
17556
19581
  BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
17557
19582
  CreateGatherRuleResponse: CreateGatherRuleResponse,
17558
19583
  BillTag: BillTag,
17559
19584
  DescribeAllocateConditionsResponse: DescribeAllocateConditionsResponse,
19585
+ DescribeVoucherInfoRequest: DescribeVoucherInfoRequest,
17560
19586
  UsageRecords: UsageRecords,
17561
- ModifyAllocationRuleResponse: ModifyAllocationRuleResponse,
19587
+ DescribeBudgetRemindRecordListResponse: DescribeBudgetRemindRecordListResponse,
17562
19588
  BillComponent: BillComponent,
17563
- DescribeVoucherInfoRequest: DescribeVoucherInfoRequest,
19589
+ DescribeBillSummaryByRegionResponse: DescribeBillSummaryByRegionResponse,
19590
+ BudgetRemindRecordList: BudgetRemindRecordList,
19591
+ DeleteBudgetRequest: DeleteBudgetRequest,
17564
19592
  BillActionType: BillActionType,
17565
19593
  GatherResourceSummary: GatherResourceSummary,
17566
19594
  DescribeDealsByCondRequest: DescribeDealsByCondRequest,
@@ -17576,7 +19604,7 @@ module.exports = {
17576
19604
  ConditionProject: ConditionProject,
17577
19605
  DescribeTagListResponse: DescribeTagListResponse,
17578
19606
  CosDetailSets: CosDetailSets,
17579
- DescribeAllocationRuleSummaryRequest: DescribeAllocationRuleSummaryRequest,
19607
+ BudgetPlan: BudgetPlan,
17580
19608
  BillPayMode: BillPayMode,
17581
19609
  DescribeAllocationTrendByMonthResponse: DescribeAllocationTrendByMonthResponse,
17582
19610
  ModifyAllocationUnitResponse: ModifyAllocationUnitResponse,