tencentcloud-sdk-nodejs-intl-en 3.0.1427 → 3.0.1428
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 +2 -2
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +3 -4
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +112 -125
- package/tencentcloud/kms/v20190118/models.js +27 -27
- package/tencentcloud/mdc/v20200828/mdc_client.js +2 -0
- package/tencentcloud/mdc/v20200828/models.js +163 -6
- package/tencentcloud/tokenhub/v20260322/models.js +2529 -510
- package/tencentcloud/tokenhub/v20260322/tokenhub_client.js +247 -43
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-intl-en",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1428",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"https-proxy-agent": "^2.2.1",
|
|
26
26
|
"is-stream": "^1.1.0",
|
|
27
27
|
"node-fetch": "^2.2.0",
|
|
28
|
-
"uuid": "^
|
|
28
|
+
"uuid": "^11.1.1"
|
|
29
29
|
},
|
|
30
30
|
"directories": {
|
|
31
31
|
"example": "examples",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1428";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -545,8 +545,8 @@ Callable roles: Distributor, Second-level reseller, Reseller
|
|
|
545
545
|
}
|
|
546
546
|
|
|
547
547
|
/**
|
|
548
|
-
*
|
|
549
|
-
|
|
548
|
+
* Description: Query customer bill details.
|
|
549
|
+
Resellers, first-level resellers, and second-level resellers can call this API.
|
|
550
550
|
* @param {DescribeCustomerBillDetailRequest} req
|
|
551
551
|
* @param {function(string, DescribeCustomerBillDetailResponse):void} cb
|
|
552
552
|
* @public
|
|
@@ -557,8 +557,7 @@ Callable roles: Distributor, Second-level reseller, Reseller.
|
|
|
557
557
|
}
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
*
|
|
561
|
-
Callable roles: Distributor, Second-level reseller, Reseller
|
|
560
|
+
* Query the aggregate value of a sub-client bill
|
|
562
561
|
* @param {DescribeCustomerBillSummaryRequest} req
|
|
563
562
|
* @param {function(string, DescribeCustomerBillSummaryResponse):void} cb
|
|
564
563
|
* @public
|
|
@@ -861,73 +861,43 @@ class DescribeCustomerBillDetailRequest extends AbstractModel {
|
|
|
861
861
|
super();
|
|
862
862
|
|
|
863
863
|
/**
|
|
864
|
-
* Sub-
|
|
864
|
+
* <p>Sub-customer uin</p>
|
|
865
865
|
* @type {number || null}
|
|
866
866
|
*/
|
|
867
867
|
this.CustomerUin = null;
|
|
868
868
|
|
|
869
869
|
/**
|
|
870
|
-
* Inquiry month, in the format of YYYY-MM, such as 2023-01
|
|
870
|
+
* <p>Inquiry month, in the format of YYYY-MM, such as 2023-01</p>
|
|
871
871
|
* @type {string || null}
|
|
872
872
|
*/
|
|
873
873
|
this.Month = null;
|
|
874
874
|
|
|
875
875
|
/**
|
|
876
|
-
*
|
|
876
|
+
* <p>Pagination parameter: entries per page. Value range: [1, 200]</p>
|
|
877
877
|
* @type {number || null}
|
|
878
878
|
*/
|
|
879
879
|
this.PageSize = null;
|
|
880
880
|
|
|
881
881
|
/**
|
|
882
|
-
*
|
|
882
|
+
* <p>Pagination parameter: current page number. The minimum value is 1.</p>
|
|
883
883
|
* @type {number || null}
|
|
884
884
|
*/
|
|
885
885
|
this.Page = null;
|
|
886
886
|
|
|
887
887
|
/**
|
|
888
|
-
* Billing mode
|
|
889
|
-
prePay (Monthly subscription)
|
|
890
|
-
postPay (Pay-As-You-Go resources)
|
|
888
|
+
* <p>Billing mode</p><p>Enumeration values:</p><ul><li>prePay: yearly/monthly subscription</li><li>postPay: Pay-As-You-Go resources</li></ul>
|
|
891
889
|
* @type {string || null}
|
|
892
890
|
*/
|
|
893
891
|
this.PayMode = null;
|
|
894
892
|
|
|
895
893
|
/**
|
|
896
|
-
* Transaction type
|
|
897
|
-
prepay_purchase (Purchase)
|
|
898
|
-
prepay_renew (Renewal)
|
|
899
|
-
prepay_modify (Upgrade/Downgrade)
|
|
900
|
-
prepay_return ( Monthly subscription refund)
|
|
901
|
-
postpay_deduct (Pay-as-you-go)
|
|
902
|
-
postpay_deduct_h (Hourly settlement)
|
|
903
|
-
postpay_deduct_d (Daily settlement)
|
|
904
|
-
postpay_deduct_m (Monthly settlement)
|
|
905
|
-
offline_deduct (Offline project deduction)
|
|
906
|
-
online_deduct (Offline product deduction)
|
|
907
|
-
recon_deduct (Adjustment - deduction)
|
|
908
|
-
recon_increase (Adjustment - compensation)
|
|
909
|
-
ripay_purchase (One-off RI Fee)
|
|
910
|
-
postpay_deduct_s (Spot)
|
|
911
|
-
ri_hour_pay (Hourly RI fee)
|
|
912
|
-
prePurchase (New monthly subscription)
|
|
913
|
-
preRenew (Monthly subscription renewal)
|
|
914
|
-
preUpgrade (Upgrade/Downgrade)
|
|
915
|
-
preDowngrade (Upgrade/Downgrade)
|
|
916
|
-
svp_hour_pay (Hourly Savings Plan fee)
|
|
917
|
-
recon_guarantee (Minimum spend deduction)
|
|
918
|
-
pre_purchase (New monthly subscription)
|
|
919
|
-
pre_renew (Monthly subscription renewal)
|
|
920
|
-
pre_upgrade (Upgrade/Downgrade)
|
|
921
|
-
pre_downgrade (Upgrade/Downgrade)
|
|
894
|
+
* <p>Transaction type</p><p>Enumeration values:</p><ul><li>prepay_purchase: Purchase</li><li>prepay_renew: Renewal</li><li>prepay_modify: Upgrade/Downgrade</li><li>prepay_return: yearly/monthly subscription refund</li><li>postpay_deduct: Pay-as-you-go</li><li>postpay_deduct_h: Hourly settlement</li><li>postpay_deduct_d: Daily settlement</li><li>postpay_deduct_m: Monthly settlement</li><li>offline_deduct: Offline project deduction</li><li>online_deduct: Offline product deduction</li><li>recon_deduct: Adjustment - deduction</li><li>recon_increase: Adjustment - compensation</li><li>ripay_purchase: One-off RI Fee</li><li>postpay_deduct_s: Spot</li><li>ri_hour_pay: Hourly RI fee</li><li>prePurchase: New yearly/monthly subscription</li><li>preRenew: yearly/monthly subscription renewal</li><li>preUpgrade: Upgrade/Downgrade</li><li>preDowngrade: Upgrade/Downgrade</li><li>svp_hour_pay: Hourly Savings Plan fee</li><li>recon_guarantee: Minimum spend deduction</li><li>pre_purchase: New yearly/monthly subscription</li><li>pre_renew: yearly/monthly subscription renewal</li><li>pre_upgrade: Upgrade/Downgrade</li><li>pre_downgrade: Upgrade/Downgrade</li></ul>
|
|
922
895
|
* @type {string || null}
|
|
923
896
|
*/
|
|
924
897
|
this.ActionType = null;
|
|
925
898
|
|
|
926
899
|
/**
|
|
927
|
-
* Payment
|
|
928
|
-
0: not distinguished
|
|
929
|
-
1: paid
|
|
930
|
-
2: unpaid
|
|
900
|
+
* <p>Payment Status<br>0: case-insensitive<br>1: paid<br>2: unpaid</p>
|
|
931
901
|
* @type {string || null}
|
|
932
902
|
*/
|
|
933
903
|
this.IsConfirmed = null;
|
|
@@ -1896,61 +1866,31 @@ class DescribeCustomerBillSummaryRequest extends AbstractModel {
|
|
|
1896
1866
|
super();
|
|
1897
1867
|
|
|
1898
1868
|
/**
|
|
1899
|
-
*
|
|
1869
|
+
* <p>Sub-customer uin</p>
|
|
1900
1870
|
* @type {number || null}
|
|
1901
1871
|
*/
|
|
1902
1872
|
this.CustomerUin = null;
|
|
1903
1873
|
|
|
1904
1874
|
/**
|
|
1905
|
-
*
|
|
1875
|
+
* <p>Inquiry month, in the format of YYYY-MM, such as 2023-01</p>
|
|
1906
1876
|
* @type {string || null}
|
|
1907
1877
|
*/
|
|
1908
1878
|
this.Month = null;
|
|
1909
1879
|
|
|
1910
1880
|
/**
|
|
1911
|
-
* Billing mode
|
|
1912
|
-
`prePay` (Monthly subscription)
|
|
1913
|
-
`postPay` (Pay-as-you-go)
|
|
1881
|
+
* <p>Billing mode</p><p>Enumeration values:</p><ul><li>prePay: yearly/monthly subscription</li><li>postPay: Pay-As-You-Go resources</li></ul>
|
|
1914
1882
|
* @type {string || null}
|
|
1915
1883
|
*/
|
|
1916
1884
|
this.PayMode = null;
|
|
1917
1885
|
|
|
1918
1886
|
/**
|
|
1919
|
-
* Transaction type
|
|
1920
|
-
`prepay_purchase` (Purchase)
|
|
1921
|
-
`prepay_renew` (Renewal)
|
|
1922
|
-
`prepay_modify` (Upgrade/Downgrade)
|
|
1923
|
-
`prepay_return` (Monthly subscription refund)
|
|
1924
|
-
`postpay_deduct` (Pay-as-you-go)
|
|
1925
|
-
`postpay_deduct_h` (Hourly settlement)
|
|
1926
|
-
`postpay_deduct_d` (Daily settlement)
|
|
1927
|
-
`postpay_deduct_m` (Monthly settlement)
|
|
1928
|
-
`offline_deduct` (Offline project deduction)
|
|
1929
|
-
`online_deduct` (Offline product deduction)
|
|
1930
|
-
`recon_deduct` (Adjustment - deduction)
|
|
1931
|
-
`recon_increase` (Adjustment - compensation)
|
|
1932
|
-
`ripay_purchase` (One-off RI Fee)
|
|
1933
|
-
`postpay_deduct_s` (Spot)
|
|
1934
|
-
`ri_hour_pay` (Hourly RI fee)
|
|
1935
|
-
`prePurchase` (New monthly subscription)
|
|
1936
|
-
`preRenew` (Monthly subscription renewal)
|
|
1937
|
-
`preUpgrade` (Upgrade/Downgrade)
|
|
1938
|
-
`preDowngrade` (Upgrade/Downgrade)
|
|
1939
|
-
`svp_hour_pay` (Hourly Savings Plan fee)
|
|
1940
|
-
`recon_guarantee` (Minimum spend deduction)
|
|
1941
|
-
`pre_purchase` (New monthly subscription)
|
|
1942
|
-
`pre_renew` (Monthly subscription renewal)
|
|
1943
|
-
`pre_upgrade` (Upgrade/Downgrade)
|
|
1944
|
-
`pre_downgrade` (Upgrade/Downgrade)
|
|
1887
|
+
* <p>Transaction type</p><p>Enumeration values:</p><ul><li>prepay_purchase: Purchase</li><li>prepay_renew: Renewal</li><li>prepay_modify: Upgrade/Downgrade</li><li>prepay_return: yearly/monthly subscription refund</li><li>postpay_deduct: Pay-as-you-go</li><li>postpay_deduct_h: Hourly settlement</li><li>postpay_deduct_d: Daily settlement</li><li>postpay_deduct_m: Monthly settlement</li><li>offline_deduct: Offline project deduction</li><li>online_deduct: Offline product deduction</li><li>recon_deduct: Adjustment - deduction</li><li>ripay_purchase: One-off RI Fee</li><li>postpay_deduct_s: Spot</li><li>ri_hour_pay: Hourly RI fee</li><li>prePurchase: New yearly/monthly subscription</li><li>preRenew: yearly/monthly subscription renewal</li><li>preUpgrade: Upgrade/Downgrade</li></ul>
|
|
1945
1888
|
* @type {string || null}
|
|
1946
1889
|
*/
|
|
1947
1890
|
this.ActionType = null;
|
|
1948
1891
|
|
|
1949
1892
|
/**
|
|
1950
|
-
* Payment
|
|
1951
|
-
`0`: N/A
|
|
1952
|
-
`1`: Paid
|
|
1953
|
-
`2`: Unpaid
|
|
1893
|
+
* <p>Payment Status<br>0: case-insensitive<br>1: paid<br>2: unpaid</p>
|
|
1954
1894
|
* @type {string || null}
|
|
1955
1895
|
*/
|
|
1956
1896
|
this.IsConfirmed = null;
|
|
@@ -2743,7 +2683,7 @@ class DescribeCustomerBillSummaryResponse extends AbstractModel {
|
|
|
2743
2683
|
super();
|
|
2744
2684
|
|
|
2745
2685
|
/**
|
|
2746
|
-
* Total amount
|
|
2686
|
+
* <p>Total amount</p>
|
|
2747
2687
|
* @type {number || null}
|
|
2748
2688
|
*/
|
|
2749
2689
|
this.TotalCost = null;
|
|
@@ -3158,13 +3098,13 @@ class DescribeBillDetailResponse extends AbstractModel {
|
|
|
3158
3098
|
super();
|
|
3159
3099
|
|
|
3160
3100
|
/**
|
|
3161
|
-
* Data details
|
|
3101
|
+
* <p>Data details</p>
|
|
3162
3102
|
* @type {Array.<CustomerBillDetailData> || null}
|
|
3163
3103
|
*/
|
|
3164
3104
|
this.DetailSet = null;
|
|
3165
3105
|
|
|
3166
3106
|
/**
|
|
3167
|
-
* Total
|
|
3107
|
+
* <p>Total quantity.</p>
|
|
3168
3108
|
* @type {number || null}
|
|
3169
3109
|
*/
|
|
3170
3110
|
this.Total = null;
|
|
@@ -5359,13 +5299,13 @@ class DescribeCustomerBillDetailResponse extends AbstractModel {
|
|
|
5359
5299
|
super();
|
|
5360
5300
|
|
|
5361
5301
|
/**
|
|
5362
|
-
*
|
|
5302
|
+
* <p>total number of records</p>
|
|
5363
5303
|
* @type {number || null}
|
|
5364
5304
|
*/
|
|
5365
5305
|
this.Total = null;
|
|
5366
5306
|
|
|
5367
5307
|
/**
|
|
5368
|
-
* Data
|
|
5308
|
+
* <p>Data details</p>
|
|
5369
5309
|
* @type {Array.<BillDetailData> || null}
|
|
5370
5310
|
*/
|
|
5371
5311
|
this.DetailSet = null;
|
|
@@ -5537,31 +5477,31 @@ class DescribeBillDetailRequest extends AbstractModel {
|
|
|
5537
5477
|
super();
|
|
5538
5478
|
|
|
5539
5479
|
/**
|
|
5540
|
-
*
|
|
5480
|
+
* <p>Query month, in the format of YYYY-MM, such as 2023-01</p>
|
|
5541
5481
|
* @type {string || null}
|
|
5542
5482
|
*/
|
|
5543
5483
|
this.Month = null;
|
|
5544
5484
|
|
|
5545
5485
|
/**
|
|
5546
|
-
* Page parameter: number of entries per page. Value range: [1, 200]
|
|
5486
|
+
* <p>Page parameter: number of entries per page. Value range: [1, 200]</p>
|
|
5547
5487
|
* @type {number || null}
|
|
5548
5488
|
*/
|
|
5549
5489
|
this.PageSize = null;
|
|
5550
5490
|
|
|
5551
5491
|
/**
|
|
5552
|
-
* Page parameter: current page number. The minimum value is 1
|
|
5492
|
+
* <p>Page parameter: current page number. The minimum value is 1.</p>
|
|
5553
5493
|
* @type {number || null}
|
|
5554
5494
|
*/
|
|
5555
5495
|
this.Page = null;
|
|
5556
5496
|
|
|
5557
5497
|
/**
|
|
5558
|
-
* Billing mode
|
|
5498
|
+
* <p>Billing mode</p><p>Enumeration values:</p><ul><li>prePay: yearly/monthly subscription</li><li>postPay: Pay-As-You-Go resources</li></ul>
|
|
5559
5499
|
* @type {string || null}
|
|
5560
5500
|
*/
|
|
5561
5501
|
this.PayMode = null;
|
|
5562
5502
|
|
|
5563
5503
|
/**
|
|
5564
|
-
* Transaction type
|
|
5504
|
+
* <p>Transaction type</p><p>Enumeration values:</p><ul><li>prepay_purchase: Purchase</li><li>prepay_renew: Renewal</li><li>prepay_modify: Upgrade/Downgrade</li><li>prepay_return: yearly/monthly subscription refund</li><li>postpay_deduct: Pay-as-you-go</li><li>postpay_deduct_h: Hourly settlement</li><li>postpay_deduct_d: Daily settlement</li><li>postpay_deduct_m: Monthly settlement</li><li>offline_deduct: Offline project deduction</li><li>online_deduct: Offline product deduction</li><li>recon_deduct: Adjustment - deduction</li><li>recon_increase: Adjustment - compensation</li><li>ripay_purchase: One-off RI Fee</li><li>postpay_deduct_s: Spot</li><li>ri_hour_pay: Hourly RI fee</li><li>prePurchase: New yearly/monthly subscription</li><li>preRenew: yearly/monthly subscription renewal</li><li>preUpgrade: Upgrade/Downgrade</li><li>preDowngrade: Upgrade/Downgrade</li><li>svp_hour_pay: Hourly Savings Plan fee</li><li>recon_guarantee: Minimum spend deduction</li><li>pre_purchase: New yearly/monthly subscription</li><li>pre_renew: yearly/monthly subscription renewal</li><li>pre_upgrade: Upgrade/Downgrade</li><li>pre_downgrade: Upgrade/Downgrade</li></ul>
|
|
5565
5505
|
* @type {string || null}
|
|
5566
5506
|
*/
|
|
5567
5507
|
this.ActionType = null;
|
|
@@ -5717,7 +5657,7 @@ class CustomerBillDetailData extends AbstractModel {
|
|
|
5717
5657
|
/**
|
|
5718
5658
|
* Billing mode
|
|
5719
5659
|
.
|
|
5720
|
-
|
|
5660
|
+
yearly/monthly subscription.
|
|
5721
5661
|
Pay-As-You-Go resources.
|
|
5722
5662
|
Standard ri reserved instances.
|
|
5723
5663
|
* @type {string || null}
|
|
@@ -5874,6 +5814,30 @@ Original cost = component list price * component usage * usage duration.
|
|
|
5874
5814
|
*/
|
|
5875
5815
|
this.Tags = null;
|
|
5876
5816
|
|
|
5817
|
+
/**
|
|
5818
|
+
* Product code
|
|
5819
|
+
* @type {string || null}
|
|
5820
|
+
*/
|
|
5821
|
+
this.BusinessCode = null;
|
|
5822
|
+
|
|
5823
|
+
/**
|
|
5824
|
+
* Subproduct code
|
|
5825
|
+
* @type {string || null}
|
|
5826
|
+
*/
|
|
5827
|
+
this.ProductCode = null;
|
|
5828
|
+
|
|
5829
|
+
/**
|
|
5830
|
+
* Component type code
|
|
5831
|
+
* @type {string || null}
|
|
5832
|
+
*/
|
|
5833
|
+
this.ComponentCode = null;
|
|
5834
|
+
|
|
5835
|
+
/**
|
|
5836
|
+
* Component code
|
|
5837
|
+
* @type {string || null}
|
|
5838
|
+
*/
|
|
5839
|
+
this.ItemCode = null;
|
|
5840
|
+
|
|
5877
5841
|
}
|
|
5878
5842
|
|
|
5879
5843
|
/**
|
|
@@ -5920,6 +5884,10 @@ Original cost = component list price * component usage * usage duration.
|
|
|
5920
5884
|
this.Tags.push(obj);
|
|
5921
5885
|
}
|
|
5922
5886
|
}
|
|
5887
|
+
this.BusinessCode = 'BusinessCode' in params ? params.BusinessCode : null;
|
|
5888
|
+
this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
|
|
5889
|
+
this.ComponentCode = 'ComponentCode' in params ? params.ComponentCode : null;
|
|
5890
|
+
this.ItemCode = 'ItemCode' in params ? params.ItemCode : null;
|
|
5923
5891
|
|
|
5924
5892
|
}
|
|
5925
5893
|
}
|
|
@@ -6484,7 +6452,7 @@ Please note: Historical daily bill dated before "2025-06-01",cannot be queried.
|
|
|
6484
6452
|
}
|
|
6485
6453
|
|
|
6486
6454
|
/**
|
|
6487
|
-
* Customer
|
|
6455
|
+
* Customer Bill Details
|
|
6488
6456
|
* @class
|
|
6489
6457
|
*/
|
|
6490
6458
|
class BillDetailData extends AbstractModel {
|
|
@@ -6492,206 +6460,221 @@ class BillDetailData extends AbstractModel {
|
|
|
6492
6460
|
super();
|
|
6493
6461
|
|
|
6494
6462
|
/**
|
|
6495
|
-
*
|
|
6463
|
+
* <p> Distributor account</p>
|
|
6496
6464
|
* @type {number || null}
|
|
6497
6465
|
*/
|
|
6498
6466
|
this.PayerAccountId = null;
|
|
6499
6467
|
|
|
6500
6468
|
/**
|
|
6501
|
-
*
|
|
6469
|
+
* <p>Sub-Customer account</p>
|
|
6502
6470
|
* @type {number || null}
|
|
6503
6471
|
*/
|
|
6504
6472
|
this.OwnerAccountId = null;
|
|
6505
6473
|
|
|
6506
6474
|
/**
|
|
6507
|
-
* Operator account
|
|
6475
|
+
* <p>Operator account</p>
|
|
6508
6476
|
* @type {number || null}
|
|
6509
6477
|
*/
|
|
6510
6478
|
this.OperatorAccountId = null;
|
|
6511
6479
|
|
|
6512
6480
|
/**
|
|
6513
|
-
* Product name
|
|
6481
|
+
* <p>Product name.</p>
|
|
6514
6482
|
* @type {string || null}
|
|
6515
6483
|
*/
|
|
6516
6484
|
this.ProductName = null;
|
|
6517
6485
|
|
|
6518
6486
|
/**
|
|
6519
|
-
* Billing mode
|
|
6520
|
-
.
|
|
6521
|
-
Monthly subscription (annual and monthly).
|
|
6522
|
-
Pay-As-You-Go resources.
|
|
6523
|
-
Standard ri reserved instance.
|
|
6487
|
+
* <p>Billing mode</p><p>Enumeration values:</p><ul><li>yearly/monthly subscription</li><li>Pay-As-You-Go resources</li></ul>
|
|
6524
6488
|
* @type {string || null}
|
|
6525
6489
|
*/
|
|
6526
6490
|
this.BillingMode = null;
|
|
6527
6491
|
|
|
6528
6492
|
/**
|
|
6529
|
-
* Project name
|
|
6530
|
-
|
|
6493
|
+
* <p>Project name.</p>
|
|
6531
6494
|
* @type {string || null}
|
|
6532
6495
|
*/
|
|
6533
6496
|
this.ProjectName = null;
|
|
6534
6497
|
|
|
6535
6498
|
/**
|
|
6536
|
-
*
|
|
6499
|
+
* <p>Associated region of the resource</p>
|
|
6537
6500
|
* @type {string || null}
|
|
6538
6501
|
*/
|
|
6539
6502
|
this.Region = null;
|
|
6540
6503
|
|
|
6541
6504
|
/**
|
|
6542
|
-
*
|
|
6505
|
+
* <p>Availability zone of resource</p>
|
|
6543
6506
|
* @type {string || null}
|
|
6544
6507
|
*/
|
|
6545
6508
|
this.AvailabilityZone = null;
|
|
6546
6509
|
|
|
6547
6510
|
/**
|
|
6548
|
-
* Instance
|
|
6511
|
+
* <p>Instance ID.</p>
|
|
6549
6512
|
* @type {string || null}
|
|
6550
6513
|
*/
|
|
6551
6514
|
this.InstanceId = null;
|
|
6552
6515
|
|
|
6553
6516
|
/**
|
|
6554
|
-
* Instance name
|
|
6517
|
+
* <p>Instance name.</p>
|
|
6555
6518
|
* @type {string || null}
|
|
6556
6519
|
*/
|
|
6557
6520
|
this.InstanceName = null;
|
|
6558
6521
|
|
|
6559
6522
|
/**
|
|
6560
|
-
* Sub-
|
|
6561
|
-
.
|
|
6562
|
-
|
|
6523
|
+
* <p>Sub-product name</p>
|
|
6563
6524
|
* @type {string || null}
|
|
6564
6525
|
*/
|
|
6565
6526
|
this.SubProductName = null;
|
|
6566
6527
|
|
|
6567
6528
|
/**
|
|
6568
|
-
* Settlement type
|
|
6529
|
+
* <p>Settlement type</p>
|
|
6569
6530
|
* @type {string || null}
|
|
6570
6531
|
*/
|
|
6571
6532
|
this.TransactionType = null;
|
|
6572
6533
|
|
|
6573
6534
|
/**
|
|
6574
|
-
* <Transaction
|
|
6535
|
+
* <p>Transaction log ID</p>
|
|
6575
6536
|
* @type {string || null}
|
|
6576
6537
|
*/
|
|
6577
6538
|
this.TransactionId = null;
|
|
6578
6539
|
|
|
6579
6540
|
/**
|
|
6580
|
-
*
|
|
6581
|
-
|
|
6541
|
+
* <p>Time of settlement</p>
|
|
6582
6542
|
* @type {string || null}
|
|
6583
6543
|
*/
|
|
6584
6544
|
this.TransactionTime = null;
|
|
6585
6545
|
|
|
6586
6546
|
/**
|
|
6587
|
-
* <Resource start time
|
|
6547
|
+
* <p>Resource usage start time</p>
|
|
6588
6548
|
* @type {string || null}
|
|
6589
6549
|
*/
|
|
6590
6550
|
this.UsageStartTime = null;
|
|
6591
6551
|
|
|
6592
6552
|
/**
|
|
6593
|
-
* <Resource end
|
|
6553
|
+
* <p>Resource usage end time</p>
|
|
6594
6554
|
* @type {string || null}
|
|
6595
6555
|
*/
|
|
6596
6556
|
this.UsageEndTime = null;
|
|
6597
6557
|
|
|
6598
6558
|
/**
|
|
6599
|
-
* Component
|
|
6559
|
+
* <p>Component</p>
|
|
6600
6560
|
* @type {string || null}
|
|
6601
6561
|
*/
|
|
6602
6562
|
this.ComponentType = null;
|
|
6603
6563
|
|
|
6604
6564
|
/**
|
|
6605
|
-
* Component name
|
|
6565
|
+
* <p>Component name</p>
|
|
6606
6566
|
* @type {string || null}
|
|
6607
6567
|
*/
|
|
6608
6568
|
this.ComponentName = null;
|
|
6609
6569
|
|
|
6610
6570
|
/**
|
|
6611
|
-
* Component list price
|
|
6571
|
+
* <p>Component list price</p>
|
|
6612
6572
|
* @type {string || null}
|
|
6613
6573
|
*/
|
|
6614
6574
|
this.ComponentListPrice = null;
|
|
6615
6575
|
|
|
6616
6576
|
/**
|
|
6617
|
-
* Price unit
|
|
6577
|
+
* <p>Price unit</p>
|
|
6618
6578
|
* @type {string || null}
|
|
6619
6579
|
*/
|
|
6620
6580
|
this.ComponentPriceMeasurementUnit = null;
|
|
6621
6581
|
|
|
6622
6582
|
/**
|
|
6623
|
-
* Component usage
|
|
6583
|
+
* <p>Component usage</p>
|
|
6624
6584
|
* @type {string || null}
|
|
6625
6585
|
*/
|
|
6626
6586
|
this.ComponentUsage = null;
|
|
6627
6587
|
|
|
6628
6588
|
/**
|
|
6629
|
-
* Component usage unit
|
|
6589
|
+
* <p>Component usage unit</p>
|
|
6630
6590
|
* @type {string || null}
|
|
6631
6591
|
*/
|
|
6632
6592
|
this.ComponentUsageUnit = null;
|
|
6633
6593
|
|
|
6634
6594
|
/**
|
|
6635
|
-
* Resource usage duration
|
|
6595
|
+
* <p>Resource usage duration</p>
|
|
6636
6596
|
* @type {string || null}
|
|
6637
6597
|
*/
|
|
6638
6598
|
this.UsageDuration = null;
|
|
6639
6599
|
|
|
6640
6600
|
/**
|
|
6641
|
-
*
|
|
6601
|
+
* <p>Duration unit</p>
|
|
6642
6602
|
* @type {string || null}
|
|
6643
6603
|
*/
|
|
6644
6604
|
this.DurationUnit = null;
|
|
6645
6605
|
|
|
6646
6606
|
/**
|
|
6647
|
-
*
|
|
6648
|
-
Original cost = component list price * component usage * usage duration.
|
|
6607
|
+
* <p>Original total price<br>Original Cost = Component List Price * Component Usage * Usage Duration</p>
|
|
6649
6608
|
* @type {string || null}
|
|
6650
6609
|
*/
|
|
6651
6610
|
this.OriginalCost = null;
|
|
6652
6611
|
|
|
6653
6612
|
/**
|
|
6654
|
-
* Discount (default
|
|
6613
|
+
* <p>Discount (default: 1) - abandoned</p>
|
|
6655
6614
|
* @type {string || null}
|
|
6656
6615
|
*/
|
|
6657
6616
|
this.DiscountRate = null;
|
|
6658
6617
|
|
|
6659
6618
|
/**
|
|
6660
|
-
* Currency
|
|
6619
|
+
* <p>Currency.</p>
|
|
6661
6620
|
* @type {string || null}
|
|
6662
6621
|
*/
|
|
6663
6622
|
this.Currency = null;
|
|
6664
6623
|
|
|
6665
6624
|
/**
|
|
6666
|
-
* Total cost after discount
|
|
6625
|
+
* <p>Total cost after discount</p>
|
|
6667
6626
|
* @type {string || null}
|
|
6668
6627
|
*/
|
|
6669
6628
|
this.TotalAmountAfterDiscount = null;
|
|
6670
6629
|
|
|
6671
6630
|
/**
|
|
6672
|
-
* Voucher
|
|
6631
|
+
* <p>Voucher deducted amount</p>
|
|
6673
6632
|
* @type {string || null}
|
|
6674
6633
|
*/
|
|
6675
6634
|
this.VoucherDeduction = null;
|
|
6676
6635
|
|
|
6677
6636
|
/**
|
|
6678
|
-
*
|
|
6637
|
+
* <p>= Total Amount After Discount - Voucher Deduction</p>
|
|
6679
6638
|
* @type {string || null}
|
|
6680
6639
|
*/
|
|
6681
6640
|
this.TotalCost = null;
|
|
6682
6641
|
|
|
6683
6642
|
/**
|
|
6684
|
-
*
|
|
6643
|
+
* <p>id</p>
|
|
6685
6644
|
* @type {string || null}
|
|
6686
6645
|
*/
|
|
6687
6646
|
this.Id = null;
|
|
6688
6647
|
|
|
6689
6648
|
/**
|
|
6690
|
-
* customer discount rate. The discount rate
|
|
6649
|
+
* <p>customer discount rate. The discount rate for customers of resellers, set by the reseller. The default value is 1.</p>
|
|
6691
6650
|
* @type {string || null}
|
|
6692
6651
|
*/
|
|
6693
6652
|
this.CustomerDiscountRate = null;
|
|
6694
6653
|
|
|
6654
|
+
/**
|
|
6655
|
+
* <p>Product code</p>
|
|
6656
|
+
* @type {string || null}
|
|
6657
|
+
*/
|
|
6658
|
+
this.BusinessCode = null;
|
|
6659
|
+
|
|
6660
|
+
/**
|
|
6661
|
+
* <p>Sub-product code</p>
|
|
6662
|
+
* @type {string || null}
|
|
6663
|
+
*/
|
|
6664
|
+
this.ProductCode = null;
|
|
6665
|
+
|
|
6666
|
+
/**
|
|
6667
|
+
* <p>Component type code</p>
|
|
6668
|
+
* @type {string || null}
|
|
6669
|
+
*/
|
|
6670
|
+
this.ComponentCode = null;
|
|
6671
|
+
|
|
6672
|
+
/**
|
|
6673
|
+
* <p>Component code</p>
|
|
6674
|
+
* @type {string || null}
|
|
6675
|
+
*/
|
|
6676
|
+
this.ItemCode = null;
|
|
6677
|
+
|
|
6695
6678
|
}
|
|
6696
6679
|
|
|
6697
6680
|
/**
|
|
@@ -6733,6 +6716,10 @@ Original cost = component list price * component usage * usage duration.
|
|
|
6733
6716
|
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
6734
6717
|
this.Id = 'Id' in params ? params.Id : null;
|
|
6735
6718
|
this.CustomerDiscountRate = 'CustomerDiscountRate' in params ? params.CustomerDiscountRate : null;
|
|
6719
|
+
this.BusinessCode = 'BusinessCode' in params ? params.BusinessCode : null;
|
|
6720
|
+
this.ProductCode = 'ProductCode' in params ? params.ProductCode : null;
|
|
6721
|
+
this.ComponentCode = 'ComponentCode' in params ? params.ComponentCode : null;
|
|
6722
|
+
this.ItemCode = 'ItemCode' in params ? params.ItemCode : null;
|
|
6736
6723
|
|
|
6737
6724
|
}
|
|
6738
6725
|
}
|