tencentcloud-sdk-nodejs-intl-en 3.0.721 → 3.0.722
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/billing/v20180709/billing_client.js +2 -2
- package/tencentcloud/billing/v20180709/models.js +152 -138
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/teo/index.js +1 -1
package/package.json
CHANGED
|
@@ -107,7 +107,7 @@ class BillingClient extends AbstractClient {
|
|
|
107
107
|
|
|
108
108
|
/**
|
|
109
109
|
* This API is used to get bill details.
|
|
110
|
-
Notes: 1. The API request may fail due to network instability or other exceptions. In this case, we recommend you manually retry the request when the API request fails. 2. If the volume of your bill data is high (for example, if over 200 thousand bill entries are generated for a month), bill data
|
|
110
|
+
Notes: 1. The API request may fail due to network instability or other network exceptions. In this case, we recommend you manually retry the request when the API request fails. 2. If the volume of your bill data is high (for example, if over 200 thousand bill entries are generated for a month), querying bill data via APIs may be slow. We recommend you enable bill storage so that you can obtain bill files from COS buckets for analysis. For details, see [Saving Bills to COS](https://intl.cloud.tencent.com/document/product/555/61275?from_cn_redirect=1).
|
|
111
111
|
* @param {DescribeBillDetailRequest} req
|
|
112
112
|
* @param {function(string, DescribeBillDetailResponse):void} cb
|
|
113
113
|
* @public
|
|
@@ -118,7 +118,7 @@ Notes: 1. The API request may fail due to network instability or other exception
|
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
/**
|
|
121
|
-
* This API is used to get bill details by product, project, region, billing mode, and tag
|
|
121
|
+
* This API is used to get bill details by product, project, region, billing mode, and tag by passing in parameters.
|
|
122
122
|
* @param {DescribeBillSummaryRequest} req
|
|
123
123
|
* @param {function(string, DescribeBillSummaryResponse):void} cb
|
|
124
124
|
* @public
|
|
@@ -174,7 +174,7 @@ class DescribeBillSummaryByTagResponse extends AbstractModel {
|
|
|
174
174
|
super();
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first
|
|
177
|
+
* 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. Wait for 5-10 minutes and try again.
|
|
178
178
|
* @type {number || null}
|
|
179
179
|
*/
|
|
180
180
|
this.Ready = null;
|
|
@@ -238,7 +238,7 @@ class DescribeBillSummaryResponse extends AbstractModel {
|
|
|
238
238
|
super();
|
|
239
239
|
|
|
240
240
|
/**
|
|
241
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready.
|
|
241
|
+
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first billing. Wait for 5-10 minutes and try again.
|
|
242
242
|
* @type {number || null}
|
|
243
243
|
*/
|
|
244
244
|
this.Ready = null;
|
|
@@ -288,7 +288,7 @@ class DescribeBillSummaryByPayModeResponse extends AbstractModel {
|
|
|
288
288
|
super();
|
|
289
289
|
|
|
290
290
|
/**
|
|
291
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first
|
|
291
|
+
* 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. Wait for 5-10 minutes and try again.
|
|
292
292
|
* @type {number || null}
|
|
293
293
|
*/
|
|
294
294
|
this.Ready = null;
|
|
@@ -339,109 +339,109 @@ class BillResourceSummary extends AbstractModel {
|
|
|
339
339
|
super();
|
|
340
340
|
|
|
341
341
|
/**
|
|
342
|
-
* Product name:
|
|
342
|
+
* Product name: The name of a Tencent Cloud product purchased by the user, such as CVM.
|
|
343
343
|
* @type {string || null}
|
|
344
344
|
*/
|
|
345
345
|
this.BusinessCodeName = null;
|
|
346
346
|
|
|
347
347
|
/**
|
|
348
|
-
* Subproduct name:
|
|
348
|
+
* Subproduct name: The subcategory of a Tencent Cloud product purchased by the user, such as CVM – Standard S1.
|
|
349
349
|
* @type {string || null}
|
|
350
350
|
*/
|
|
351
351
|
this.ProductCodeName = null;
|
|
352
352
|
|
|
353
353
|
/**
|
|
354
|
-
* Billing mode,
|
|
354
|
+
* Billing mode, which can be monthly subscription or pay-as-you-go.
|
|
355
355
|
* @type {string || null}
|
|
356
356
|
*/
|
|
357
357
|
this.PayModeName = null;
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
|
-
* Project name:
|
|
360
|
+
* 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.
|
|
361
361
|
* @type {string || null}
|
|
362
362
|
*/
|
|
363
363
|
this.ProjectName = null;
|
|
364
364
|
|
|
365
365
|
/**
|
|
366
|
-
* Region:
|
|
366
|
+
* Region: The region to which a resource belongs, such as South China (Guangzhou).
|
|
367
367
|
* @type {string || null}
|
|
368
368
|
*/
|
|
369
369
|
this.RegionName = null;
|
|
370
370
|
|
|
371
371
|
/**
|
|
372
|
-
* Availability zone:
|
|
372
|
+
* Availability zone: The availability zone to which a resource belongs, such as Guangzhou Zone 3.
|
|
373
373
|
* @type {string || null}
|
|
374
374
|
*/
|
|
375
375
|
this.ZoneName = null;
|
|
376
376
|
|
|
377
377
|
/**
|
|
378
|
-
* Instance ID:
|
|
378
|
+
* Instance ID: The object ID of a billed resource, such as a CVM instance ID. This object ID may vary due to various forms and contents of resources in different products.
|
|
379
379
|
* @type {string || null}
|
|
380
380
|
*/
|
|
381
381
|
this.ResourceId = null;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
|
-
* Instance name:
|
|
384
|
+
* Instance name: The resource name set by the user in the console. If it is not set, it will be empty by default.
|
|
385
385
|
* @type {string || null}
|
|
386
386
|
*/
|
|
387
387
|
this.ResourceName = null;
|
|
388
388
|
|
|
389
389
|
/**
|
|
390
|
-
* Transaction type,
|
|
390
|
+
* Transaction type, which can be monthly subscription purchase, monthly subscription renewal, or pay-as-you-go deduction.
|
|
391
391
|
* @type {string || null}
|
|
392
392
|
*/
|
|
393
393
|
this.ActionTypeName = null;
|
|
394
394
|
|
|
395
395
|
/**
|
|
396
|
-
* Order ID:
|
|
396
|
+
* Order ID: The order number for a monthly subscription purchase
|
|
397
397
|
* @type {string || null}
|
|
398
398
|
*/
|
|
399
399
|
this.OrderId = null;
|
|
400
400
|
|
|
401
401
|
/**
|
|
402
|
-
* Transaction time:
|
|
402
|
+
* Transaction time: The time at which a payment was deducted
|
|
403
403
|
* @type {string || null}
|
|
404
404
|
*/
|
|
405
405
|
this.PayTime = null;
|
|
406
406
|
|
|
407
407
|
/**
|
|
408
|
-
* Usage start time:
|
|
408
|
+
* Usage start time: The time at which product or service usage starts
|
|
409
409
|
* @type {string || null}
|
|
410
410
|
*/
|
|
411
411
|
this.FeeBeginTime = null;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
* Usage end time:
|
|
414
|
+
* Usage end time: The time at which product or service usage ends
|
|
415
415
|
* @type {string || null}
|
|
416
416
|
*/
|
|
417
417
|
this.FeeEndTime = null;
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
* Configuration description:
|
|
420
|
+
* Configuration description: The billable item names and usage of a resource, which are displayed on the resource bill only.
|
|
421
421
|
* @type {string || null}
|
|
422
422
|
*/
|
|
423
423
|
this.ConfigDesc = null;
|
|
424
424
|
|
|
425
425
|
/**
|
|
426
|
-
* Extended field 1:
|
|
426
|
+
* Extended field 1: Extended attribute information of a product, which is displayed on the resource bill only.
|
|
427
427
|
* @type {string || null}
|
|
428
428
|
*/
|
|
429
429
|
this.ExtendField1 = null;
|
|
430
430
|
|
|
431
431
|
/**
|
|
432
|
-
* Extended field 2:
|
|
432
|
+
* Extended field 2: Extended attribute information of a product, which is displayed on the resource bill only.
|
|
433
433
|
* @type {string || null}
|
|
434
434
|
*/
|
|
435
435
|
this.ExtendField2 = null;
|
|
436
436
|
|
|
437
437
|
/**
|
|
438
|
-
* Original cost:
|
|
438
|
+
* Original cost: The original cost of a resource, which is "List price x Usage x Usage duration". If a customer has applied for a fixed preferential price or contract price or applied for a refund, this parameter will not be displayed by default.
|
|
439
439
|
* @type {string || null}
|
|
440
440
|
*/
|
|
441
441
|
this.TotalCost = null;
|
|
442
442
|
|
|
443
443
|
/**
|
|
444
|
-
* Discount multiplier:
|
|
444
|
+
* Discount multiplier: The discount multiplier applied to the cost of the resource. If a customer has applied for a fixed preferential price or contract price or applied for a refund, this parameter will not be displayed by default.
|
|
445
445
|
* @type {string || null}
|
|
446
446
|
*/
|
|
447
447
|
this.Discount = null;
|
|
@@ -459,67 +459,67 @@ class BillResourceSummary extends AbstractModel {
|
|
|
459
459
|
this.RealTotalCost = null;
|
|
460
460
|
|
|
461
461
|
/**
|
|
462
|
-
* Voucher payment:
|
|
462
|
+
* Voucher payment: The voucher deduction amount
|
|
463
463
|
* @type {string || null}
|
|
464
464
|
*/
|
|
465
465
|
this.VoucherPayAmount = null;
|
|
466
466
|
|
|
467
467
|
/**
|
|
468
|
-
* Cash credit:
|
|
468
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
469
469
|
* @type {string || null}
|
|
470
470
|
*/
|
|
471
471
|
this.CashPayAmount = null;
|
|
472
472
|
|
|
473
473
|
/**
|
|
474
|
-
* Free credit:
|
|
474
|
+
* Free credit: The amount paid with the user’s free credit
|
|
475
475
|
* @type {string || null}
|
|
476
476
|
*/
|
|
477
477
|
this.IncentivePayAmount = null;
|
|
478
478
|
|
|
479
479
|
/**
|
|
480
|
-
* Commission credit:
|
|
480
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
481
481
|
* @type {string || null}
|
|
482
482
|
*/
|
|
483
483
|
this.TransferPayAmount = null;
|
|
484
484
|
|
|
485
485
|
/**
|
|
486
|
-
* Extended field 3:
|
|
486
|
+
* Extended field 3: Extended attribute information of a product, which is displayed on the resource bill only.
|
|
487
487
|
* @type {string || null}
|
|
488
488
|
*/
|
|
489
489
|
this.ExtendField3 = null;
|
|
490
490
|
|
|
491
491
|
/**
|
|
492
|
-
* Extended field 4:
|
|
492
|
+
* Extended field 4: Extended attribute information of a product, which is displayed on the resource bill only.
|
|
493
493
|
* @type {string || null}
|
|
494
494
|
*/
|
|
495
495
|
this.ExtendField4 = null;
|
|
496
496
|
|
|
497
497
|
/**
|
|
498
|
-
* Extended field 5:
|
|
498
|
+
* Extended field 5: Extended attribute information of a product, which is displayed on the resource bill only.
|
|
499
499
|
* @type {string || null}
|
|
500
500
|
*/
|
|
501
501
|
this.ExtendField5 = null;
|
|
502
502
|
|
|
503
503
|
/**
|
|
504
|
-
* Tag information. Note:
|
|
504
|
+
* Tag information. Note: This field may return null, indicating that no valid values can be obtained.
|
|
505
505
|
* @type {Array.<BillTagInfo> || null}
|
|
506
506
|
*/
|
|
507
507
|
this.Tags = null;
|
|
508
508
|
|
|
509
509
|
/**
|
|
510
|
-
* Payer account ID:
|
|
510
|
+
* Payer account ID: The account ID of the payer, which is the unique identifier of a Tencent Cloud user.
|
|
511
511
|
* @type {string || null}
|
|
512
512
|
*/
|
|
513
513
|
this.PayerUin = null;
|
|
514
514
|
|
|
515
515
|
/**
|
|
516
|
-
* Owner account ID:
|
|
516
|
+
* Owner account ID: The account ID of the actual resource user
|
|
517
517
|
* @type {string || null}
|
|
518
518
|
*/
|
|
519
519
|
this.OwnerUin = null;
|
|
520
520
|
|
|
521
521
|
/**
|
|
522
|
-
* Operator account ID:
|
|
522
|
+
* Operator account ID: The account or role ID of the operator who purchases or activates a resource.
|
|
523
523
|
* @type {string || null}
|
|
524
524
|
*/
|
|
525
525
|
this.OperateUin = null;
|
|
@@ -543,13 +543,13 @@ class BillResourceSummary extends AbstractModel {
|
|
|
543
543
|
this.RegionId = null;
|
|
544
544
|
|
|
545
545
|
/**
|
|
546
|
-
* Instance type:
|
|
546
|
+
* Instance type: The instance type of a product or service purchased, which can be resource package, RI, SP, or spot instance. Other instance types are not displayed by default.
|
|
547
547
|
* @type {string || null}
|
|
548
548
|
*/
|
|
549
549
|
this.InstanceType = null;
|
|
550
550
|
|
|
551
551
|
/**
|
|
552
|
-
* RI deduction (cost):
|
|
552
|
+
* RI deduction (cost): The amount deducted from the original cost by RI
|
|
553
553
|
* @type {string || null}
|
|
554
554
|
*/
|
|
555
555
|
this.OriginalCostWithRI = null;
|
|
@@ -561,7 +561,7 @@ class BillResourceSummary extends AbstractModel {
|
|
|
561
561
|
this.SPDeduction = null;
|
|
562
562
|
|
|
563
563
|
/**
|
|
564
|
-
* SP deduction (cost):
|
|
564
|
+
* SP deduction (cost): SP deduction (cost) = Cost deduction by SP / SP deduction rate
|
|
565
565
|
* @type {string || null}
|
|
566
566
|
*/
|
|
567
567
|
this.OriginalCostWithSP = null;
|
|
@@ -690,7 +690,7 @@ class DescribeBillSummaryByProductResponse extends AbstractModel {
|
|
|
690
690
|
super();
|
|
691
691
|
|
|
692
692
|
/**
|
|
693
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first
|
|
693
|
+
* 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. Wait for 5-10 minutes and try again.
|
|
694
694
|
* @type {number || null}
|
|
695
695
|
*/
|
|
696
696
|
this.Ready = null;
|
|
@@ -789,7 +789,7 @@ class DescribeBillSummaryByRegionResponse extends AbstractModel {
|
|
|
789
789
|
super();
|
|
790
790
|
|
|
791
791
|
/**
|
|
792
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first
|
|
792
|
+
* 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. Wait for 5-10 minutes and try again.
|
|
793
793
|
* @type {number || null}
|
|
794
794
|
*/
|
|
795
795
|
this.Ready = null;
|
|
@@ -847,7 +847,7 @@ Note: This field may return null, indicating that no valid value was found.
|
|
|
847
847
|
this.RegionId = null;
|
|
848
848
|
|
|
849
849
|
/**
|
|
850
|
-
* Region:
|
|
850
|
+
* Region: The region to which a resource belongs, such as South China (Guangzhou).
|
|
851
851
|
* @type {string || null}
|
|
852
852
|
*/
|
|
853
853
|
this.RegionName = null;
|
|
@@ -865,25 +865,25 @@ Note: This field may return null, indicating that no valid value was found.
|
|
|
865
865
|
this.RealTotalCost = null;
|
|
866
866
|
|
|
867
867
|
/**
|
|
868
|
-
* Cash credit:
|
|
868
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
869
869
|
* @type {string || null}
|
|
870
870
|
*/
|
|
871
871
|
this.CashPayAmount = null;
|
|
872
872
|
|
|
873
873
|
/**
|
|
874
|
-
* Free credit:
|
|
874
|
+
* Free credit: The amount paid with the user’s free credit
|
|
875
875
|
* @type {string || null}
|
|
876
876
|
*/
|
|
877
877
|
this.IncentivePayAmount = null;
|
|
878
878
|
|
|
879
879
|
/**
|
|
880
|
-
* Voucher payment:
|
|
880
|
+
* Voucher payment: The voucher deduction amount
|
|
881
881
|
* @type {string || null}
|
|
882
882
|
*/
|
|
883
883
|
this.VoucherPayAmount = null;
|
|
884
884
|
|
|
885
885
|
/**
|
|
886
|
-
* Commission credit:
|
|
886
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
887
887
|
* @type {string || null}
|
|
888
888
|
*/
|
|
889
889
|
this.TransferPayAmount = null;
|
|
@@ -1065,7 +1065,7 @@ Note: To query the product codes used in the current month, call <a href="https:
|
|
|
1065
1065
|
this.BusinessCode = null;
|
|
1066
1066
|
|
|
1067
1067
|
/**
|
|
1068
|
-
* Context information returned by the last request. You can set `Month` to `2023-05`
|
|
1068
|
+
* Context information returned by the last request. You can set `Month` to `2023-05` or later to accelerate queries. We recommend users whose data volume is over 100 thousand entries use the paginated query feature, which can help greatly speed up your queries.
|
|
1069
1069
|
* @type {string || null}
|
|
1070
1070
|
*/
|
|
1071
1071
|
this.Context = null;
|
|
@@ -1171,13 +1171,13 @@ class SummaryDetail extends AbstractModel {
|
|
|
1171
1171
|
super();
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
1174
|
-
* Bill dimension code. Note:
|
|
1174
|
+
* Bill dimension code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1175
1175
|
* @type {string || null}
|
|
1176
1176
|
*/
|
|
1177
1177
|
this.GroupKey = null;
|
|
1178
1178
|
|
|
1179
1179
|
/**
|
|
1180
|
-
* Bill dimension value. Note:
|
|
1180
|
+
* Bill dimension value. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1181
1181
|
* @type {string || null}
|
|
1182
1182
|
*/
|
|
1183
1183
|
this.GroupValue = null;
|
|
@@ -1195,31 +1195,31 @@ class SummaryDetail extends AbstractModel {
|
|
|
1195
1195
|
this.RealTotalCost = null;
|
|
1196
1196
|
|
|
1197
1197
|
/**
|
|
1198
|
-
* Cash credit:
|
|
1198
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
1199
1199
|
* @type {string || null}
|
|
1200
1200
|
*/
|
|
1201
1201
|
this.CashPayAmount = null;
|
|
1202
1202
|
|
|
1203
1203
|
/**
|
|
1204
|
-
* Free credit:
|
|
1204
|
+
* Free credit: The amount paid with the user’s free credit
|
|
1205
1205
|
* @type {string || null}
|
|
1206
1206
|
*/
|
|
1207
1207
|
this.IncentivePayAmount = null;
|
|
1208
1208
|
|
|
1209
1209
|
/**
|
|
1210
|
-
* Voucher payment:
|
|
1210
|
+
* Voucher payment: The voucher deduction amount
|
|
1211
1211
|
* @type {string || null}
|
|
1212
1212
|
*/
|
|
1213
1213
|
this.VoucherPayAmount = null;
|
|
1214
1214
|
|
|
1215
1215
|
/**
|
|
1216
|
-
* Commission credit:
|
|
1216
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1217
1217
|
* @type {string || null}
|
|
1218
1218
|
*/
|
|
1219
1219
|
this.TransferPayAmount = null;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
* Detailed summary of products. Note:
|
|
1222
|
+
* Detailed summary of products. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1223
1223
|
* @type {Array.<BusinessSummaryInfo> || null}
|
|
1224
1224
|
*/
|
|
1225
1225
|
this.Business = null;
|
|
@@ -1382,13 +1382,13 @@ class BusinessSummaryOverviewItem extends AbstractModel {
|
|
|
1382
1382
|
super();
|
|
1383
1383
|
|
|
1384
1384
|
/**
|
|
1385
|
-
* Product code. Note:
|
|
1385
|
+
* Product code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1386
1386
|
* @type {string || null}
|
|
1387
1387
|
*/
|
|
1388
1388
|
this.BusinessCode = null;
|
|
1389
1389
|
|
|
1390
1390
|
/**
|
|
1391
|
-
* Product name:
|
|
1391
|
+
* Product name: The name of a Tencent Cloud product purchased by the user, such as CVM.
|
|
1392
1392
|
* @type {string || null}
|
|
1393
1393
|
*/
|
|
1394
1394
|
this.BusinessCodeName = null;
|
|
@@ -1406,25 +1406,25 @@ class BusinessSummaryOverviewItem extends AbstractModel {
|
|
|
1406
1406
|
this.RealTotalCost = null;
|
|
1407
1407
|
|
|
1408
1408
|
/**
|
|
1409
|
-
* Cash credit:
|
|
1409
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
1410
1410
|
* @type {string || null}
|
|
1411
1411
|
*/
|
|
1412
1412
|
this.CashPayAmount = null;
|
|
1413
1413
|
|
|
1414
1414
|
/**
|
|
1415
|
-
* Free credit:
|
|
1415
|
+
* Free credit: The amount paid with the user’s free credit
|
|
1416
1416
|
* @type {string || null}
|
|
1417
1417
|
*/
|
|
1418
1418
|
this.IncentivePayAmount = null;
|
|
1419
1419
|
|
|
1420
1420
|
/**
|
|
1421
|
-
* Voucher payment:
|
|
1421
|
+
* Voucher payment: The voucher deduction amount
|
|
1422
1422
|
* @type {string || null}
|
|
1423
1423
|
*/
|
|
1424
1424
|
this.VoucherPayAmount = null;
|
|
1425
1425
|
|
|
1426
1426
|
/**
|
|
1427
|
-
* Commission credit:
|
|
1427
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
1428
1428
|
* @type {string || null}
|
|
1429
1429
|
*/
|
|
1430
1430
|
this.TransferPayAmount = null;
|
|
@@ -1473,19 +1473,19 @@ class BillDetailComponent extends AbstractModel {
|
|
|
1473
1473
|
super();
|
|
1474
1474
|
|
|
1475
1475
|
/**
|
|
1476
|
-
* Component type:
|
|
1476
|
+
* Component type: The component type of a product or service purchased, such as CVM instance components including CPU and memory.
|
|
1477
1477
|
* @type {string || null}
|
|
1478
1478
|
*/
|
|
1479
1479
|
this.ComponentCodeName = null;
|
|
1480
1480
|
|
|
1481
1481
|
/**
|
|
1482
|
-
* Component name:
|
|
1482
|
+
* Component name: The specific component of a product or service purchased
|
|
1483
1483
|
* @type {string || null}
|
|
1484
1484
|
*/
|
|
1485
1485
|
this.ItemCodeName = null;
|
|
1486
1486
|
|
|
1487
1487
|
/**
|
|
1488
|
-
* Component list price:
|
|
1488
|
+
* Component list price: The listed unit price of a component. If a customer has applied for a fixed preferential price or contract price, this parameter will not be displayed by default.
|
|
1489
1489
|
* @type {string || null}
|
|
1490
1490
|
*/
|
|
1491
1491
|
this.SinglePrice = null;
|
|
@@ -1497,43 +1497,55 @@ class BillDetailComponent extends AbstractModel {
|
|
|
1497
1497
|
this.SpecifiedPrice = null;
|
|
1498
1498
|
|
|
1499
1499
|
/**
|
|
1500
|
-
* Component price measurement unit:
|
|
1500
|
+
* Component price measurement unit: The unit of measurement for a component price, which is composed of USD, usage unit, and duration unit.
|
|
1501
1501
|
* @type {string || null}
|
|
1502
1502
|
*/
|
|
1503
1503
|
this.PriceUnit = null;
|
|
1504
1504
|
|
|
1505
1505
|
/**
|
|
1506
|
-
* Component usage:
|
|
1506
|
+
* Component usage: The actually settled usage of a component, which is "Raw usage - Deducted usage (including packages)".
|
|
1507
1507
|
* @type {string || null}
|
|
1508
1508
|
*/
|
|
1509
1509
|
this.UsedAmount = null;
|
|
1510
1510
|
|
|
1511
1511
|
/**
|
|
1512
|
-
* Component usage unit:
|
|
1512
|
+
* Component usage unit: The unit of measurement for component usage
|
|
1513
1513
|
* @type {string || null}
|
|
1514
1514
|
*/
|
|
1515
1515
|
this.UsedAmountUnit = null;
|
|
1516
1516
|
|
|
1517
1517
|
/**
|
|
1518
|
-
*
|
|
1518
|
+
*
|
|
1519
|
+
* @type {string || null}
|
|
1520
|
+
*/
|
|
1521
|
+
this.RealTotalMeasure = null;
|
|
1522
|
+
|
|
1523
|
+
/**
|
|
1524
|
+
*
|
|
1525
|
+
* @type {string || null}
|
|
1526
|
+
*/
|
|
1527
|
+
this.DeductedMeasure = null;
|
|
1528
|
+
|
|
1529
|
+
/**
|
|
1530
|
+
* Usage duration: The resource usage duration
|
|
1519
1531
|
* @type {string || null}
|
|
1520
1532
|
*/
|
|
1521
1533
|
this.TimeSpan = null;
|
|
1522
1534
|
|
|
1523
1535
|
/**
|
|
1524
|
-
* Duration unit:
|
|
1536
|
+
* Duration unit: The unit of measurement for usage duration
|
|
1525
1537
|
* @type {string || null}
|
|
1526
1538
|
*/
|
|
1527
1539
|
this.TimeUnitName = null;
|
|
1528
1540
|
|
|
1529
1541
|
/**
|
|
1530
|
-
* Original cost:
|
|
1542
|
+
* Original cost: The original cost of a resource, which is "List price x Usage x Usage duration". If a customer has applied for a fixed preferential price or contract price or is in a refund scenario, this parameter will not be displayed by default.
|
|
1531
1543
|
* @type {string || null}
|
|
1532
1544
|
*/
|
|
1533
1545
|
this.Cost = null;
|
|
1534
1546
|
|
|
1535
1547
|
/**
|
|
1536
|
-
* Discount multiplier:
|
|
1548
|
+
* Discount multiplier: The discount multiplier applied to the cost of the resource. If a customer has applied for a fixed preferential price or contract price or is in a refund scenario, this parameter will not be displayed by default.
|
|
1537
1549
|
* @type {string || null}
|
|
1538
1550
|
*/
|
|
1539
1551
|
this.Discount = null;
|
|
@@ -1545,91 +1557,91 @@ class BillDetailComponent extends AbstractModel {
|
|
|
1545
1557
|
this.ReduceType = null;
|
|
1546
1558
|
|
|
1547
1559
|
/**
|
|
1548
|
-
* Total amount after discount:
|
|
1560
|
+
* Total amount after discount: Total amount after discount = (Original cost - RI deduction (cost) - SP deduction (cost)) x Discount multiplier
|
|
1549
1561
|
* @type {string || null}
|
|
1550
1562
|
*/
|
|
1551
1563
|
this.RealCost = null;
|
|
1552
1564
|
|
|
1553
1565
|
/**
|
|
1554
|
-
* Voucher payment:
|
|
1566
|
+
* Voucher payment: The voucher deduction amount
|
|
1555
1567
|
* @type {string || null}
|
|
1556
1568
|
*/
|
|
1557
1569
|
this.VoucherPayAmount = null;
|
|
1558
1570
|
|
|
1559
1571
|
/**
|
|
1560
|
-
* Cash credit:
|
|
1572
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
1561
1573
|
* @type {string || null}
|
|
1562
1574
|
*/
|
|
1563
1575
|
this.CashPayAmount = null;
|
|
1564
1576
|
|
|
1565
1577
|
/**
|
|
1566
|
-
* Free credit:
|
|
1578
|
+
* Free credit: The amount paid with the user’s free credit
|
|
1567
1579
|
* @type {string || null}
|
|
1568
1580
|
*/
|
|
1569
1581
|
this.IncentivePayAmount = null;
|
|
1570
1582
|
|
|
1571
1583
|
/**
|
|
1572
|
-
* Commission credit:
|
|
1584
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1573
1585
|
* @type {string || null}
|
|
1574
1586
|
*/
|
|
1575
1587
|
this.TransferPayAmount = null;
|
|
1576
1588
|
|
|
1577
1589
|
/**
|
|
1578
|
-
* Component type code. Note:
|
|
1590
|
+
* Component type code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1579
1591
|
* @type {string || null}
|
|
1580
1592
|
*/
|
|
1581
1593
|
this.ItemCode = null;
|
|
1582
1594
|
|
|
1583
1595
|
/**
|
|
1584
|
-
* Component name code. Note:
|
|
1596
|
+
* Component name code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1585
1597
|
* @type {string || null}
|
|
1586
1598
|
*/
|
|
1587
1599
|
this.ComponentCode = null;
|
|
1588
1600
|
|
|
1589
1601
|
/**
|
|
1590
|
-
* Component contracted price:
|
|
1602
|
+
* Component contracted price: The contracted unit price of a component, which is "List price x Discount". Note: This field may return null, indicating that no valid values can be obtained.
|
|
1591
1603
|
* @type {string || null}
|
|
1592
1604
|
*/
|
|
1593
1605
|
this.ContractPrice = null;
|
|
1594
1606
|
|
|
1595
1607
|
/**
|
|
1596
|
-
* Instance type:
|
|
1608
|
+
* Instance type: The instance type of a product or service purchased, which can be resource package, RI, SP, or spot instance. Other instance types are not displayed by default. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1597
1609
|
* @type {string || null}
|
|
1598
1610
|
*/
|
|
1599
1611
|
this.InstanceType = null;
|
|
1600
1612
|
|
|
1601
1613
|
/**
|
|
1602
|
-
* RI deduction (duration):
|
|
1614
|
+
* RI deduction (duration): The usage duration deducted by RI. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1603
1615
|
* @type {string || null}
|
|
1604
1616
|
*/
|
|
1605
1617
|
this.RiTimeSpan = null;
|
|
1606
1618
|
|
|
1607
1619
|
/**
|
|
1608
|
-
* RI deduction (cost):
|
|
1620
|
+
* RI deduction (cost): The amount deducted from the original cost by RI. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1609
1621
|
* @type {string || null}
|
|
1610
1622
|
*/
|
|
1611
1623
|
this.OriginalCostWithRI = null;
|
|
1612
1624
|
|
|
1613
1625
|
/**
|
|
1614
|
-
* Savings plan deduction rate:
|
|
1626
|
+
* Savings plan deduction rate: The discount multiplier that applies to the component based on the remaining commitment of the savings plan. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1615
1627
|
* @type {string || null}
|
|
1616
1628
|
*/
|
|
1617
1629
|
this.SPDeductionRate = null;
|
|
1618
1630
|
|
|
1619
1631
|
/**
|
|
1620
|
-
* Cost deduction by SP. This parameter has been deprecated. Note:
|
|
1632
|
+
* Cost deduction by SP. This parameter has been deprecated. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1621
1633
|
* @type {string || null}
|
|
1622
1634
|
*/
|
|
1623
1635
|
this.SPDeduction = null;
|
|
1624
1636
|
|
|
1625
1637
|
/**
|
|
1626
|
-
* SP deduction (cost):
|
|
1638
|
+
* SP deduction (cost): SP deduction (cost) = Cost deduction by SP / SP deduction rate. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1627
1639
|
* @type {string || null}
|
|
1628
1640
|
*/
|
|
1629
1641
|
this.OriginalCostWithSP = null;
|
|
1630
1642
|
|
|
1631
1643
|
/**
|
|
1632
|
-
* Blended discount multiplier:
|
|
1644
|
+
* Blended discount multiplier: The final discount multiplier that is applied after combining multiple discount types, which is "Total amount after discount / Original cost". Note: This field may return null, indicating that no valid values can be obtained.
|
|
1633
1645
|
* @type {string || null}
|
|
1634
1646
|
*/
|
|
1635
1647
|
this.BlendedDiscount = null;
|
|
@@ -1650,6 +1662,8 @@ class BillDetailComponent extends AbstractModel {
|
|
|
1650
1662
|
this.PriceUnit = 'PriceUnit' in params ? params.PriceUnit : null;
|
|
1651
1663
|
this.UsedAmount = 'UsedAmount' in params ? params.UsedAmount : null;
|
|
1652
1664
|
this.UsedAmountUnit = 'UsedAmountUnit' in params ? params.UsedAmountUnit : null;
|
|
1665
|
+
this.RealTotalMeasure = 'RealTotalMeasure' in params ? params.RealTotalMeasure : null;
|
|
1666
|
+
this.DeductedMeasure = 'DeductedMeasure' in params ? params.DeductedMeasure : null;
|
|
1653
1667
|
this.TimeSpan = 'TimeSpan' in params ? params.TimeSpan : null;
|
|
1654
1668
|
this.TimeUnitName = 'TimeUnitName' in params ? params.TimeUnitName : null;
|
|
1655
1669
|
this.Cost = 'Cost' in params ? params.Cost : null;
|
|
@@ -1861,13 +1875,13 @@ class DescribeBillSummaryRequest extends AbstractModel {
|
|
|
1861
1875
|
super();
|
|
1862
1876
|
|
|
1863
1877
|
/**
|
|
1864
|
-
* Bill month in the format of "
|
|
1878
|
+
* Bill month in the format of "yyyy-mm"
|
|
1865
1879
|
* @type {string || null}
|
|
1866
1880
|
*/
|
|
1867
1881
|
this.Month = null;
|
|
1868
1882
|
|
|
1869
1883
|
/**
|
|
1870
|
-
* Bill dimension. Valid values:
|
|
1884
|
+
* Bill dimension. Valid values: `business`, `project`, `region`, `payMode`, and `tag`
|
|
1871
1885
|
* @type {string || null}
|
|
1872
1886
|
*/
|
|
1873
1887
|
this.GroupType = null;
|
|
@@ -1959,7 +1973,7 @@ class ActionSummaryOverviewItem extends AbstractModel {
|
|
|
1959
1973
|
this.ActionType = null;
|
|
1960
1974
|
|
|
1961
1975
|
/**
|
|
1962
|
-
* Transaction type,
|
|
1976
|
+
* Transaction type, which can be monthly subscription purchase, monthly subscription renewal, or pay-as-you-go deduction.
|
|
1963
1977
|
* @type {string || null}
|
|
1964
1978
|
*/
|
|
1965
1979
|
this.ActionTypeName = null;
|
|
@@ -1977,25 +1991,25 @@ class ActionSummaryOverviewItem extends AbstractModel {
|
|
|
1977
1991
|
this.RealTotalCost = null;
|
|
1978
1992
|
|
|
1979
1993
|
/**
|
|
1980
|
-
* Cash credit:
|
|
1994
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
1981
1995
|
* @type {string || null}
|
|
1982
1996
|
*/
|
|
1983
1997
|
this.CashPayAmount = null;
|
|
1984
1998
|
|
|
1985
1999
|
/**
|
|
1986
|
-
* Free credit:
|
|
2000
|
+
* Free credit: The amount paid with the user’s free credit
|
|
1987
2001
|
* @type {string || null}
|
|
1988
2002
|
*/
|
|
1989
2003
|
this.IncentivePayAmount = null;
|
|
1990
2004
|
|
|
1991
2005
|
/**
|
|
1992
|
-
* Voucher payment:
|
|
2006
|
+
* Voucher payment: The voucher deduction amount
|
|
1993
2007
|
* @type {string || null}
|
|
1994
2008
|
*/
|
|
1995
2009
|
this.VoucherPayAmount = null;
|
|
1996
2010
|
|
|
1997
2011
|
/**
|
|
1998
|
-
* Commission credit:
|
|
2012
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
1999
2013
|
* @type {string || null}
|
|
2000
2014
|
*/
|
|
2001
2015
|
this.TransferPayAmount = null;
|
|
@@ -2350,7 +2364,7 @@ class DescribeBillResourceSummaryRequest extends AbstractModel {
|
|
|
2350
2364
|
this.Limit = null;
|
|
2351
2365
|
|
|
2352
2366
|
/**
|
|
2353
|
-
* Bill month in the format of "yyyy-mm".
|
|
2367
|
+
* Bill month in the format of "yyyy-mm". This value must be no earlier than March 2019, when Bill 2.0 was launched.
|
|
2354
2368
|
* @type {string || null}
|
|
2355
2369
|
*/
|
|
2356
2370
|
this.Month = null;
|
|
@@ -2504,7 +2518,7 @@ class SummaryTotal extends AbstractModel {
|
|
|
2504
2518
|
super();
|
|
2505
2519
|
|
|
2506
2520
|
/**
|
|
2507
|
-
* Total amount after discount. Note:
|
|
2521
|
+
* Total amount after discount. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2508
2522
|
* @type {string || null}
|
|
2509
2523
|
*/
|
|
2510
2524
|
this.RealTotalCost = null;
|
|
@@ -2540,31 +2554,31 @@ class BillDetail extends AbstractModel {
|
|
|
2540
2554
|
super();
|
|
2541
2555
|
|
|
2542
2556
|
/**
|
|
2543
|
-
* Product name:
|
|
2557
|
+
* Product name: The name of a Tencent Cloud product purchased by the user, such as CVM.
|
|
2544
2558
|
* @type {string || null}
|
|
2545
2559
|
*/
|
|
2546
2560
|
this.BusinessCodeName = null;
|
|
2547
2561
|
|
|
2548
2562
|
/**
|
|
2549
|
-
* Subproduct name:
|
|
2563
|
+
* Subproduct name: The subcategory of a Tencent Cloud product purchased by the user, such as CVM – Standard S1.
|
|
2550
2564
|
* @type {string || null}
|
|
2551
2565
|
*/
|
|
2552
2566
|
this.ProductCodeName = null;
|
|
2553
2567
|
|
|
2554
2568
|
/**
|
|
2555
|
-
* Billing mode,
|
|
2569
|
+
* Billing mode, which can be monthly subscription or pay-as-you-go.
|
|
2556
2570
|
* @type {string || null}
|
|
2557
2571
|
*/
|
|
2558
2572
|
this.PayModeName = null;
|
|
2559
2573
|
|
|
2560
2574
|
/**
|
|
2561
|
-
* Project name:
|
|
2575
|
+
* 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.
|
|
2562
2576
|
* @type {string || null}
|
|
2563
2577
|
*/
|
|
2564
2578
|
this.ProjectName = null;
|
|
2565
2579
|
|
|
2566
2580
|
/**
|
|
2567
|
-
* Region:
|
|
2581
|
+
* Region: The region to which a resource belongs, such as South China (Guangzhou).
|
|
2568
2582
|
* @type {string || null}
|
|
2569
2583
|
*/
|
|
2570
2584
|
this.RegionName = null;
|
|
@@ -2576,13 +2590,13 @@ class BillDetail extends AbstractModel {
|
|
|
2576
2590
|
this.ZoneName = null;
|
|
2577
2591
|
|
|
2578
2592
|
/**
|
|
2579
|
-
* Instance ID:
|
|
2593
|
+
* Instance ID: The object ID of a billed resource, such as a CVM instance ID. This object ID may vary due to various forms and contents of resources in different products.
|
|
2580
2594
|
* @type {string || null}
|
|
2581
2595
|
*/
|
|
2582
2596
|
this.ResourceId = null;
|
|
2583
2597
|
|
|
2584
2598
|
/**
|
|
2585
|
-
* Instance name:
|
|
2599
|
+
* Instance name: The resource name set by the user in the console. If it is not set, it will be empty by default.
|
|
2586
2600
|
* @type {string || null}
|
|
2587
2601
|
*/
|
|
2588
2602
|
this.ResourceName = null;
|
|
@@ -2594,31 +2608,31 @@ class BillDetail extends AbstractModel {
|
|
|
2594
2608
|
this.ActionTypeName = null;
|
|
2595
2609
|
|
|
2596
2610
|
/**
|
|
2597
|
-
* Order ID:
|
|
2611
|
+
* Order ID: The order number for a monthly subscription purchase
|
|
2598
2612
|
* @type {string || null}
|
|
2599
2613
|
*/
|
|
2600
2614
|
this.OrderId = null;
|
|
2601
2615
|
|
|
2602
2616
|
/**
|
|
2603
|
-
* Transaction ID:
|
|
2617
|
+
* Transaction ID: The bill number for a deducted payment
|
|
2604
2618
|
* @type {string || null}
|
|
2605
2619
|
*/
|
|
2606
2620
|
this.BillId = null;
|
|
2607
2621
|
|
|
2608
2622
|
/**
|
|
2609
|
-
* Transaction time:
|
|
2623
|
+
* Transaction time: The time at which a payment was deducted
|
|
2610
2624
|
* @type {string || null}
|
|
2611
2625
|
*/
|
|
2612
2626
|
this.PayTime = null;
|
|
2613
2627
|
|
|
2614
2628
|
/**
|
|
2615
|
-
* Usage start time:
|
|
2629
|
+
* Usage start time: The time at which product or service usage starts
|
|
2616
2630
|
* @type {string || null}
|
|
2617
2631
|
*/
|
|
2618
2632
|
this.FeeBeginTime = null;
|
|
2619
2633
|
|
|
2620
2634
|
/**
|
|
2621
|
-
* Usage end time:
|
|
2635
|
+
* Usage end time: The time at which product or service usage ends
|
|
2622
2636
|
* @type {string || null}
|
|
2623
2637
|
*/
|
|
2624
2638
|
this.FeeEndTime = null;
|
|
@@ -2630,49 +2644,49 @@ class BillDetail extends AbstractModel {
|
|
|
2630
2644
|
this.ComponentSet = null;
|
|
2631
2645
|
|
|
2632
2646
|
/**
|
|
2633
|
-
* Payer account ID:
|
|
2647
|
+
* Payer account ID: The account ID of the payer, which is the unique identifier of a Tencent Cloud user.
|
|
2634
2648
|
* @type {string || null}
|
|
2635
2649
|
*/
|
|
2636
2650
|
this.PayerUin = null;
|
|
2637
2651
|
|
|
2638
2652
|
/**
|
|
2639
|
-
* Owner account ID:
|
|
2653
|
+
* Owner account ID: The account ID of the actual resource user
|
|
2640
2654
|
* @type {string || null}
|
|
2641
2655
|
*/
|
|
2642
2656
|
this.OwnerUin = null;
|
|
2643
2657
|
|
|
2644
2658
|
/**
|
|
2645
|
-
* Operator account ID:
|
|
2659
|
+
* Operator account ID: The account or role ID of the operator who purchases or activates a resource
|
|
2646
2660
|
* @type {string || null}
|
|
2647
2661
|
*/
|
|
2648
2662
|
this.OperateUin = null;
|
|
2649
2663
|
|
|
2650
2664
|
/**
|
|
2651
|
-
* Tag information. Note:
|
|
2665
|
+
* Tag information. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2652
2666
|
* @type {Array.<BillTagInfo> || null}
|
|
2653
2667
|
*/
|
|
2654
2668
|
this.Tags = null;
|
|
2655
2669
|
|
|
2656
2670
|
/**
|
|
2657
|
-
* Product code. Note:
|
|
2671
|
+
* Product code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2658
2672
|
* @type {string || null}
|
|
2659
2673
|
*/
|
|
2660
2674
|
this.BusinessCode = null;
|
|
2661
2675
|
|
|
2662
2676
|
/**
|
|
2663
|
-
* Subproduct code. Note:
|
|
2677
|
+
* Subproduct code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2664
2678
|
* @type {string || null}
|
|
2665
2679
|
*/
|
|
2666
2680
|
this.ProductCode = null;
|
|
2667
2681
|
|
|
2668
2682
|
/**
|
|
2669
|
-
* Transaction type code. Note:
|
|
2683
|
+
* Transaction type code. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2670
2684
|
* @type {string || null}
|
|
2671
2685
|
*/
|
|
2672
2686
|
this.ActionType = null;
|
|
2673
2687
|
|
|
2674
2688
|
/**
|
|
2675
|
-
* Region ID. Note:
|
|
2689
|
+
* Region ID. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2676
2690
|
* @type {string || null}
|
|
2677
2691
|
*/
|
|
2678
2692
|
this.RegionId = null;
|
|
@@ -2759,13 +2773,13 @@ class BusinessSummaryInfo extends AbstractModel {
|
|
|
2759
2773
|
this.BusinessCode = null;
|
|
2760
2774
|
|
|
2761
2775
|
/**
|
|
2762
|
-
* Product name:
|
|
2776
|
+
* Product name: The name of a Tencent Cloud product purchased by the user, such as CVM.
|
|
2763
2777
|
* @type {string || null}
|
|
2764
2778
|
*/
|
|
2765
2779
|
this.BusinessCodeName = null;
|
|
2766
2780
|
|
|
2767
2781
|
/**
|
|
2768
|
-
* Original cost in USD.
|
|
2782
|
+
* Original cost in USD. This parameter became valid when Bill 3.0 took effect in May 2021. Before that, `-` was returned for this parameter. If a customer has applied for a contract price different from the prices listed on the official website, `-` will also be returned for this parameter.
|
|
2769
2783
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2770
2784
|
* @type {string || null}
|
|
2771
2785
|
*/
|
|
@@ -2778,25 +2792,25 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2778
2792
|
this.RealTotalCost = null;
|
|
2779
2793
|
|
|
2780
2794
|
/**
|
|
2781
|
-
* Cash credit:
|
|
2795
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
2782
2796
|
* @type {string || null}
|
|
2783
2797
|
*/
|
|
2784
2798
|
this.CashPayAmount = null;
|
|
2785
2799
|
|
|
2786
2800
|
/**
|
|
2787
|
-
* Free credit:
|
|
2801
|
+
* Free credit: The amount paid with the user’s free credit
|
|
2788
2802
|
* @type {string || null}
|
|
2789
2803
|
*/
|
|
2790
2804
|
this.IncentivePayAmount = null;
|
|
2791
2805
|
|
|
2792
2806
|
/**
|
|
2793
|
-
* Voucher payment:
|
|
2807
|
+
* Voucher payment: The voucher deduction amount
|
|
2794
2808
|
* @type {string || null}
|
|
2795
2809
|
*/
|
|
2796
2810
|
this.VoucherPayAmount = null;
|
|
2797
2811
|
|
|
2798
2812
|
/**
|
|
2799
|
-
* Commission credit:
|
|
2813
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2800
2814
|
* @type {string || null}
|
|
2801
2815
|
*/
|
|
2802
2816
|
this.TransferPayAmount = null;
|
|
@@ -2845,31 +2859,31 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2845
2859
|
this.RealTotalCostRatio = null;
|
|
2846
2860
|
|
|
2847
2861
|
/**
|
|
2848
|
-
* Total amount after discount. Note:
|
|
2862
|
+
* Total amount after discount. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2849
2863
|
* @type {string || null}
|
|
2850
2864
|
*/
|
|
2851
2865
|
this.RealTotalCost = null;
|
|
2852
2866
|
|
|
2853
2867
|
/**
|
|
2854
|
-
* Cash credit:
|
|
2868
|
+
* Cash credit: The amount paid from the user’s cash account. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2855
2869
|
* @type {string || null}
|
|
2856
2870
|
*/
|
|
2857
2871
|
this.CashPayAmount = null;
|
|
2858
2872
|
|
|
2859
2873
|
/**
|
|
2860
|
-
* Free credit:
|
|
2874
|
+
* Free credit: The amount paid with the user’s free credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2861
2875
|
* @type {string || null}
|
|
2862
2876
|
*/
|
|
2863
2877
|
this.IncentivePayAmount = null;
|
|
2864
2878
|
|
|
2865
2879
|
/**
|
|
2866
|
-
* Voucher payment:
|
|
2880
|
+
* Voucher payment: The amount deducted by using vouchers. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2867
2881
|
* @type {string || null}
|
|
2868
2882
|
*/
|
|
2869
2883
|
this.VoucherPayAmount = null;
|
|
2870
2884
|
|
|
2871
2885
|
/**
|
|
2872
|
-
* Commission credit:
|
|
2886
|
+
* Commission credit: The amount paid with the user’s commission credit. Note: This field may return null, indicating that no valid values can be obtained.
|
|
2873
2887
|
* @type {string || null}
|
|
2874
2888
|
*/
|
|
2875
2889
|
this.TransferPayAmount = null;
|
|
@@ -2917,7 +2931,7 @@ class ProjectSummaryOverviewItem extends AbstractModel {
|
|
|
2917
2931
|
this.ProjectId = null;
|
|
2918
2932
|
|
|
2919
2933
|
/**
|
|
2920
|
-
* Project name:
|
|
2934
|
+
* 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.
|
|
2921
2935
|
* @type {string || null}
|
|
2922
2936
|
*/
|
|
2923
2937
|
this.ProjectName = null;
|
|
@@ -2935,25 +2949,25 @@ class ProjectSummaryOverviewItem extends AbstractModel {
|
|
|
2935
2949
|
this.RealTotalCost = null;
|
|
2936
2950
|
|
|
2937
2951
|
/**
|
|
2938
|
-
* Cash credit:
|
|
2952
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
2939
2953
|
* @type {string || null}
|
|
2940
2954
|
*/
|
|
2941
2955
|
this.CashPayAmount = null;
|
|
2942
2956
|
|
|
2943
2957
|
/**
|
|
2944
|
-
* Free credit:
|
|
2958
|
+
* Free credit: The amount paid with the user’s free credit
|
|
2945
2959
|
* @type {string || null}
|
|
2946
2960
|
*/
|
|
2947
2961
|
this.IncentivePayAmount = null;
|
|
2948
2962
|
|
|
2949
2963
|
/**
|
|
2950
|
-
* Voucher payment:
|
|
2964
|
+
* Voucher payment: The voucher deduction amount
|
|
2951
2965
|
* @type {string || null}
|
|
2952
2966
|
*/
|
|
2953
2967
|
this.VoucherPayAmount = null;
|
|
2954
2968
|
|
|
2955
2969
|
/**
|
|
2956
|
-
* Commission credit:
|
|
2970
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
2957
2971
|
* @type {string || null}
|
|
2958
2972
|
*/
|
|
2959
2973
|
this.TransferPayAmount = null;
|
|
@@ -3009,13 +3023,13 @@ class DescribeBillDetailResponse extends AbstractModel {
|
|
|
3009
3023
|
|
|
3010
3024
|
/**
|
|
3011
3025
|
*
|
|
3012
|
-
Note:
|
|
3026
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3013
3027
|
* @type {number || null}
|
|
3014
3028
|
*/
|
|
3015
3029
|
this.Total = null;
|
|
3016
3030
|
|
|
3017
3031
|
/**
|
|
3018
|
-
* Context information returned by this request
|
|
3032
|
+
* Context information returned by this request. The value can be passed in as the value of parameters in the next request to accelerate queries. Note: This field may return null, indicating that no valid values can be obtained.
|
|
3019
3033
|
* @type {string || null}
|
|
3020
3034
|
*/
|
|
3021
3035
|
this.Context = null;
|
|
@@ -3188,7 +3202,7 @@ class DescribeBillSummaryByProjectResponse extends AbstractModel {
|
|
|
3188
3202
|
super();
|
|
3189
3203
|
|
|
3190
3204
|
/**
|
|
3191
|
-
* Indicates whether the data is ready. `0`: Not ready. `1`: Ready. If `Ready` is `0`, it indicates the current UIN is initializing for the first
|
|
3205
|
+
* 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. Wait for 5-10 minutes and try again.
|
|
3192
3206
|
* @type {number || null}
|
|
3193
3207
|
*/
|
|
3194
3208
|
this.Ready = null;
|
|
@@ -3280,7 +3294,7 @@ class PayModeSummaryOverviewItem extends AbstractModel {
|
|
|
3280
3294
|
this.PayMode = null;
|
|
3281
3295
|
|
|
3282
3296
|
/**
|
|
3283
|
-
* Billing mode,
|
|
3297
|
+
* Billing mode, which can be monthly subscription or pay-as-you-go.
|
|
3284
3298
|
* @type {string || null}
|
|
3285
3299
|
*/
|
|
3286
3300
|
this.PayModeName = null;
|
|
@@ -3298,25 +3312,25 @@ class PayModeSummaryOverviewItem extends AbstractModel {
|
|
|
3298
3312
|
this.RealTotalCost = null;
|
|
3299
3313
|
|
|
3300
3314
|
/**
|
|
3301
|
-
* Cash credit:
|
|
3315
|
+
* Cash credit: The amount paid from the user’s cash balance
|
|
3302
3316
|
* @type {string || null}
|
|
3303
3317
|
*/
|
|
3304
3318
|
this.CashPayAmount = null;
|
|
3305
3319
|
|
|
3306
3320
|
/**
|
|
3307
|
-
* Free credit:
|
|
3321
|
+
* Free credit: The amount paid with the user’s free credit
|
|
3308
3322
|
* @type {string || null}
|
|
3309
3323
|
*/
|
|
3310
3324
|
this.IncentivePayAmount = null;
|
|
3311
3325
|
|
|
3312
3326
|
/**
|
|
3313
|
-
* Voucher payment:
|
|
3327
|
+
* Voucher payment: The voucher deduction amount
|
|
3314
3328
|
* @type {string || null}
|
|
3315
3329
|
*/
|
|
3316
3330
|
this.VoucherPayAmount = null;
|
|
3317
3331
|
|
|
3318
3332
|
/**
|
|
3319
|
-
* Commission credit:
|
|
3333
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
3320
3334
|
* @type {string || null}
|
|
3321
3335
|
*/
|
|
3322
3336
|
this.TransferPayAmount = null;
|
|
@@ -3380,25 +3394,25 @@ class BusinessSummaryTotal extends AbstractModel {
|
|
|
3380
3394
|
this.RealTotalCost = null;
|
|
3381
3395
|
|
|
3382
3396
|
/**
|
|
3383
|
-
* Voucher payment:
|
|
3397
|
+
* Voucher payment: The voucher deduction amount
|
|
3384
3398
|
* @type {string || null}
|
|
3385
3399
|
*/
|
|
3386
3400
|
this.VoucherPayAmount = null;
|
|
3387
3401
|
|
|
3388
3402
|
/**
|
|
3389
|
-
* Free credit:
|
|
3403
|
+
* Free credit: The amount paid with the user’s free credit
|
|
3390
3404
|
* @type {string || null}
|
|
3391
3405
|
*/
|
|
3392
3406
|
this.IncentivePayAmount = null;
|
|
3393
3407
|
|
|
3394
3408
|
/**
|
|
3395
|
-
* Cash credit:
|
|
3409
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
3396
3410
|
* @type {string || null}
|
|
3397
3411
|
*/
|
|
3398
3412
|
this.CashPayAmount = null;
|
|
3399
3413
|
|
|
3400
3414
|
/**
|
|
3401
|
-
* Commission credit:
|
|
3415
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
3402
3416
|
* @type {string || null}
|
|
3403
3417
|
*/
|
|
3404
3418
|
this.TransferPayAmount = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.722";
|
|
2
2
|
module.exports = sdkVersion
|