tencentcloud-sdk-nodejs-intl-en 3.0.1182 → 3.0.1184
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 +41 -2
- package/tencentcloud/billing/v20180709/models.js +319 -75
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +369 -286
- package/tencentcloud/cynosdb/v20190107/models.js +9602 -8838
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +6 -5
- package/tencentcloud/lke/index.js +3 -0
- package/tencentcloud/lke/v20231130/index.js +4 -0
- package/tencentcloud/lke/v20231130/lke_client.js +799 -0
- package/tencentcloud/lke/v20231130/models.js +10248 -0
- package/tencentcloud/mdl/v20200326/models.js +5 -5
- package/tencentcloud/ses/v20201002/models.js +425 -93
- package/tencentcloud/ses/v20201002/ses_client.js +71 -18
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const models = require("./models");
|
|
18
18
|
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
+
const CreateAllocationUnitRequest = models.CreateAllocationUnitRequest;
|
|
19
20
|
const DeleteAllocationTagRequest = models.DeleteAllocationTagRequest;
|
|
20
21
|
const DescribeCostSummaryByProductRequest = models.DescribeCostSummaryByProductRequest;
|
|
21
22
|
const DescribeCostExplorerSummaryResponse = models.DescribeCostExplorerSummaryResponse;
|
|
@@ -48,6 +49,7 @@ const DescribeCostDetailResponse = models.DescribeCostDetailResponse;
|
|
|
48
49
|
const VoucherInfos = models.VoucherInfos;
|
|
49
50
|
const DescribeCostSummaryByProjectResponse = models.DescribeCostSummaryByProjectResponse;
|
|
50
51
|
const AnalyseProjectDetail = models.AnalyseProjectDetail;
|
|
52
|
+
const ProjectSummaryOverviewItem = models.ProjectSummaryOverviewItem;
|
|
51
53
|
const DescribeBillSummaryByTagResponse = models.DescribeBillSummaryByTagResponse;
|
|
52
54
|
const DescribeBillSummaryByPayModeResponse = models.DescribeBillSummaryByPayModeResponse;
|
|
53
55
|
const DescribeBillSummaryByTagRequest = models.DescribeBillSummaryByTagRequest;
|
|
@@ -106,6 +108,7 @@ const CostDetail = models.CostDetail;
|
|
|
106
108
|
const DescribeBillSummaryByProductResponse = models.DescribeBillSummaryByProductResponse;
|
|
107
109
|
const DescribeBillSummaryByRegionResponse = models.DescribeBillSummaryByRegionResponse;
|
|
108
110
|
const CreateAllocationTagResponse = models.CreateAllocationTagResponse;
|
|
111
|
+
const ModifyAllocationUnitRequest = models.ModifyAllocationUnitRequest;
|
|
109
112
|
const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
|
|
110
113
|
const ConsumptionResourceSummaryDataItem = models.ConsumptionResourceSummaryDataItem;
|
|
111
114
|
const DescribeAccountBalanceRequest = models.DescribeAccountBalanceRequest;
|
|
@@ -118,15 +121,18 @@ const BusinessSummaryOverviewItem = models.BusinessSummaryOverviewItem;
|
|
|
118
121
|
const UsageRecords = models.UsageRecords;
|
|
119
122
|
const DescribeVoucherInfoRequest = models.DescribeVoucherInfoRequest;
|
|
120
123
|
const DescribeDealsByCondRequest = models.DescribeDealsByCondRequest;
|
|
124
|
+
const CreateAllocationUnitResponse = models.CreateAllocationUnitResponse;
|
|
121
125
|
const DescribeDosageCosDetailByDateResponse = models.DescribeDosageCosDetailByDateResponse;
|
|
122
|
-
const
|
|
126
|
+
const AnalyseHeaderTimeDetail = models.AnalyseHeaderTimeDetail;
|
|
123
127
|
const DescribeBillSummaryForOrganizationResponse = models.DescribeBillSummaryForOrganizationResponse;
|
|
128
|
+
const DeleteAllocationUnitResponse = models.DeleteAllocationUnitResponse;
|
|
124
129
|
const ConditionProject = models.ConditionProject;
|
|
125
130
|
const DescribeTagListResponse = models.DescribeTagListResponse;
|
|
126
131
|
const CosDetailSets = models.CosDetailSets;
|
|
132
|
+
const ModifyAllocationUnitResponse = models.ModifyAllocationUnitResponse;
|
|
127
133
|
const AnalyseConditionDetail = models.AnalyseConditionDetail;
|
|
128
134
|
const BillResourceSummary = models.BillResourceSummary;
|
|
129
|
-
const
|
|
135
|
+
const DeleteAllocationUnitRequest = models.DeleteAllocationUnitRequest;
|
|
130
136
|
const DescribeCostSummaryByRegionResponse = models.DescribeCostSummaryByRegionResponse;
|
|
131
137
|
|
|
132
138
|
|
|
@@ -173,6 +179,28 @@ class BillingClient extends AbstractClient {
|
|
|
173
179
|
this.request("DescribeBillResourceSummary", req, resp, cb);
|
|
174
180
|
}
|
|
175
181
|
|
|
182
|
+
/**
|
|
183
|
+
* Delete a cost allocation unit.
|
|
184
|
+
* @param {DeleteAllocationUnitRequest} req
|
|
185
|
+
* @param {function(string, DeleteAllocationUnitResponse):void} cb
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
DeleteAllocationUnit(req, cb) {
|
|
189
|
+
let resp = new DeleteAllocationUnitResponse();
|
|
190
|
+
this.request("DeleteAllocationUnit", req, resp, cb);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* This API is used to create allocation units.
|
|
195
|
+
* @param {CreateAllocationUnitRequest} req
|
|
196
|
+
* @param {function(string, CreateAllocationUnitResponse):void} cb
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
CreateAllocationUnit(req, cb) {
|
|
200
|
+
let resp = new CreateAllocationUnitResponse();
|
|
201
|
+
this.request("CreateAllocationUnit", req, resp, cb);
|
|
202
|
+
}
|
|
203
|
+
|
|
176
204
|
/**
|
|
177
205
|
* This API is used to batch set cost allocation tags.
|
|
178
206
|
* @param {CreateAllocationTagRequest} req
|
|
@@ -397,6 +425,17 @@ Note: The API request may fail due to network instability or other exceptions. I
|
|
|
397
425
|
this.request("DescribeTagList", req, resp, cb);
|
|
398
426
|
}
|
|
399
427
|
|
|
428
|
+
/**
|
|
429
|
+
* This API is used to modify cost allocation unit information.
|
|
430
|
+
* @param {ModifyAllocationUnitRequest} req
|
|
431
|
+
* @param {function(string, ModifyAllocationUnitResponse):void} cb
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
434
|
+
ModifyAllocationUnit(req, cb) {
|
|
435
|
+
let resp = new ModifyAllocationUnitResponse();
|
|
436
|
+
this.request("ModifyAllocationUnit", req, resp, cb);
|
|
437
|
+
}
|
|
438
|
+
|
|
400
439
|
/**
|
|
401
440
|
* This API is used to get bill download URLs for L0, L1, L2, and L3 bills and bill packs.
|
|
402
441
|
* @param {DescribeBillDownloadUrlRequest} req
|
|
@@ -16,6 +16,48 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const AbstractModel = require("../../common/abstract_model");
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* CreateAllocationUnit request structure.
|
|
21
|
+
* @class
|
|
22
|
+
*/
|
|
23
|
+
class CreateAllocationUnitRequest extends AbstractModel {
|
|
24
|
+
constructor(){
|
|
25
|
+
super();
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* New cost allocation unit parent node ID.
|
|
29
|
+
* @type {number || null}
|
|
30
|
+
*/
|
|
31
|
+
this.ParentId = null;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Specifies the name of a newly-added cost allocation unit.
|
|
35
|
+
* @type {string || null}
|
|
36
|
+
*/
|
|
37
|
+
this.Name = null;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Month, which is the current month by default if not provided.
|
|
41
|
+
* @type {string || null}
|
|
42
|
+
*/
|
|
43
|
+
this.Month = null;
|
|
44
|
+
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @private
|
|
49
|
+
*/
|
|
50
|
+
deserialize(params) {
|
|
51
|
+
if (!params) {
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
this.ParentId = 'ParentId' in params ? params.ParentId : null;
|
|
55
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
56
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
57
|
+
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
19
61
|
/**
|
|
20
62
|
* DeleteAllocationTag request structure.
|
|
21
63
|
* @class
|
|
@@ -2341,6 +2383,97 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2341
2383
|
}
|
|
2342
2384
|
}
|
|
2343
2385
|
|
|
2386
|
+
/**
|
|
2387
|
+
* Detailed summary of purchases by project
|
|
2388
|
+
* @class
|
|
2389
|
+
*/
|
|
2390
|
+
class ProjectSummaryOverviewItem extends AbstractModel {
|
|
2391
|
+
constructor(){
|
|
2392
|
+
super();
|
|
2393
|
+
|
|
2394
|
+
/**
|
|
2395
|
+
* Project ID
|
|
2396
|
+
* @type {string || null}
|
|
2397
|
+
*/
|
|
2398
|
+
this.ProjectId = null;
|
|
2399
|
+
|
|
2400
|
+
/**
|
|
2401
|
+
* 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.
|
|
2402
|
+
* @type {string || null}
|
|
2403
|
+
*/
|
|
2404
|
+
this.ProjectName = null;
|
|
2405
|
+
|
|
2406
|
+
/**
|
|
2407
|
+
* Cost ratio, to two decimal points
|
|
2408
|
+
* @type {string || null}
|
|
2409
|
+
*/
|
|
2410
|
+
this.RealTotalCostRatio = null;
|
|
2411
|
+
|
|
2412
|
+
/**
|
|
2413
|
+
* Total amount after discount
|
|
2414
|
+
* @type {string || null}
|
|
2415
|
+
*/
|
|
2416
|
+
this.RealTotalCost = null;
|
|
2417
|
+
|
|
2418
|
+
/**
|
|
2419
|
+
* Cash credit: The amount paid from the user’s cash account
|
|
2420
|
+
* @type {string || null}
|
|
2421
|
+
*/
|
|
2422
|
+
this.CashPayAmount = null;
|
|
2423
|
+
|
|
2424
|
+
/**
|
|
2425
|
+
* Free credit: The amount paid with the user’s free credit
|
|
2426
|
+
* @type {string || null}
|
|
2427
|
+
*/
|
|
2428
|
+
this.IncentivePayAmount = null;
|
|
2429
|
+
|
|
2430
|
+
/**
|
|
2431
|
+
* Voucher payment: The voucher deduction amount
|
|
2432
|
+
* @type {string || null}
|
|
2433
|
+
*/
|
|
2434
|
+
this.VoucherPayAmount = null;
|
|
2435
|
+
|
|
2436
|
+
/**
|
|
2437
|
+
* Commission credit: The amount paid with the user’s commission credit.
|
|
2438
|
+
* @type {string || null}
|
|
2439
|
+
*/
|
|
2440
|
+
this.TransferPayAmount = null;
|
|
2441
|
+
|
|
2442
|
+
/**
|
|
2443
|
+
* Billing month, e.g. `2019-08`
|
|
2444
|
+
* @type {string || null}
|
|
2445
|
+
*/
|
|
2446
|
+
this.BillMonth = null;
|
|
2447
|
+
|
|
2448
|
+
/**
|
|
2449
|
+
* 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.
|
|
2450
|
+
* @type {string || null}
|
|
2451
|
+
*/
|
|
2452
|
+
this.TotalCost = null;
|
|
2453
|
+
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
/**
|
|
2457
|
+
* @private
|
|
2458
|
+
*/
|
|
2459
|
+
deserialize(params) {
|
|
2460
|
+
if (!params) {
|
|
2461
|
+
return;
|
|
2462
|
+
}
|
|
2463
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
2464
|
+
this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
|
|
2465
|
+
this.RealTotalCostRatio = 'RealTotalCostRatio' in params ? params.RealTotalCostRatio : null;
|
|
2466
|
+
this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
|
|
2467
|
+
this.CashPayAmount = 'CashPayAmount' in params ? params.CashPayAmount : null;
|
|
2468
|
+
this.IncentivePayAmount = 'IncentivePayAmount' in params ? params.IncentivePayAmount : null;
|
|
2469
|
+
this.VoucherPayAmount = 'VoucherPayAmount' in params ? params.VoucherPayAmount : null;
|
|
2470
|
+
this.TransferPayAmount = 'TransferPayAmount' in params ? params.TransferPayAmount : null;
|
|
2471
|
+
this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
|
|
2472
|
+
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
2473
|
+
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2344
2477
|
/**
|
|
2345
2478
|
* DescribeBillSummaryByTag response structure.
|
|
2346
2479
|
* @class
|
|
@@ -6597,6 +6730,69 @@ class CreateAllocationTagResponse extends AbstractModel {
|
|
|
6597
6730
|
}
|
|
6598
6731
|
}
|
|
6599
6732
|
|
|
6733
|
+
/**
|
|
6734
|
+
* ModifyAllocationUnit request structure.
|
|
6735
|
+
* @class
|
|
6736
|
+
*/
|
|
6737
|
+
class ModifyAllocationUnitRequest extends AbstractModel {
|
|
6738
|
+
constructor(){
|
|
6739
|
+
super();
|
|
6740
|
+
|
|
6741
|
+
/**
|
|
6742
|
+
* ID of the modified cost allocation unit.
|
|
6743
|
+
* @type {number || null}
|
|
6744
|
+
*/
|
|
6745
|
+
this.Id = null;
|
|
6746
|
+
|
|
6747
|
+
/**
|
|
6748
|
+
* Modified cost allocation unit name.
|
|
6749
|
+
* @type {string || null}
|
|
6750
|
+
*/
|
|
6751
|
+
this.Name = null;
|
|
6752
|
+
|
|
6753
|
+
/**
|
|
6754
|
+
* Modified cost allocation unit source organization name.
|
|
6755
|
+
* @type {string || null}
|
|
6756
|
+
*/
|
|
6757
|
+
this.SourceName = null;
|
|
6758
|
+
|
|
6759
|
+
/**
|
|
6760
|
+
* Modified allocation unit source organization ID.
|
|
6761
|
+
* @type {string || null}
|
|
6762
|
+
*/
|
|
6763
|
+
this.SourceId = null;
|
|
6764
|
+
|
|
6765
|
+
/**
|
|
6766
|
+
* Cost allocation unit remark description.
|
|
6767
|
+
* @type {string || null}
|
|
6768
|
+
*/
|
|
6769
|
+
this.Remark = null;
|
|
6770
|
+
|
|
6771
|
+
/**
|
|
6772
|
+
* Month, the current month by default if not provided.
|
|
6773
|
+
* @type {string || null}
|
|
6774
|
+
*/
|
|
6775
|
+
this.Month = null;
|
|
6776
|
+
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6779
|
+
/**
|
|
6780
|
+
* @private
|
|
6781
|
+
*/
|
|
6782
|
+
deserialize(params) {
|
|
6783
|
+
if (!params) {
|
|
6784
|
+
return;
|
|
6785
|
+
}
|
|
6786
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
6787
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
6788
|
+
this.SourceName = 'SourceName' in params ? params.SourceName : null;
|
|
6789
|
+
this.SourceId = 'SourceId' in params ? params.SourceId : null;
|
|
6790
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
6791
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
6792
|
+
|
|
6793
|
+
}
|
|
6794
|
+
}
|
|
6795
|
+
|
|
6600
6796
|
/**
|
|
6601
6797
|
* DescribeBillDownloadUrl response structure.
|
|
6602
6798
|
* @class
|
|
@@ -7776,6 +7972,48 @@ Example:ins-a2bb34
|
|
|
7776
7972
|
}
|
|
7777
7973
|
}
|
|
7778
7974
|
|
|
7975
|
+
/**
|
|
7976
|
+
* CreateAllocationUnit response structure.
|
|
7977
|
+
* @class
|
|
7978
|
+
*/
|
|
7979
|
+
class CreateAllocationUnitResponse extends AbstractModel {
|
|
7980
|
+
constructor(){
|
|
7981
|
+
super();
|
|
7982
|
+
|
|
7983
|
+
/**
|
|
7984
|
+
* Specifies the ID of a newly-added cost allocation unit.
|
|
7985
|
+
* @type {number || null}
|
|
7986
|
+
*/
|
|
7987
|
+
this.Id = null;
|
|
7988
|
+
|
|
7989
|
+
/**
|
|
7990
|
+
* Unique identifier of a cost allocation unit
|
|
7991
|
+
* @type {string || null}
|
|
7992
|
+
*/
|
|
7993
|
+
this.TreeNodeUniqKey = null;
|
|
7994
|
+
|
|
7995
|
+
/**
|
|
7996
|
+
* 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.
|
|
7997
|
+
* @type {string || null}
|
|
7998
|
+
*/
|
|
7999
|
+
this.RequestId = null;
|
|
8000
|
+
|
|
8001
|
+
}
|
|
8002
|
+
|
|
8003
|
+
/**
|
|
8004
|
+
* @private
|
|
8005
|
+
*/
|
|
8006
|
+
deserialize(params) {
|
|
8007
|
+
if (!params) {
|
|
8008
|
+
return;
|
|
8009
|
+
}
|
|
8010
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
8011
|
+
this.TreeNodeUniqKey = 'TreeNodeUniqKey' in params ? params.TreeNodeUniqKey : null;
|
|
8012
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8013
|
+
|
|
8014
|
+
}
|
|
8015
|
+
}
|
|
8016
|
+
|
|
7779
8017
|
/**
|
|
7780
8018
|
* DescribeDosageCosDetailByDate response structure.
|
|
7781
8019
|
* @class
|
|
@@ -7820,72 +8058,18 @@ class DescribeDosageCosDetailByDateResponse extends AbstractModel {
|
|
|
7820
8058
|
}
|
|
7821
8059
|
|
|
7822
8060
|
/**
|
|
7823
|
-
*
|
|
8061
|
+
* Cost analysis header data
|
|
7824
8062
|
* @class
|
|
7825
8063
|
*/
|
|
7826
|
-
class
|
|
8064
|
+
class AnalyseHeaderTimeDetail extends AbstractModel {
|
|
7827
8065
|
constructor(){
|
|
7828
8066
|
super();
|
|
7829
8067
|
|
|
7830
8068
|
/**
|
|
7831
|
-
*
|
|
7832
|
-
* @type {string || null}
|
|
7833
|
-
*/
|
|
7834
|
-
this.ProjectId = null;
|
|
7835
|
-
|
|
7836
|
-
/**
|
|
7837
|
-
* 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.
|
|
7838
|
-
* @type {string || null}
|
|
7839
|
-
*/
|
|
7840
|
-
this.ProjectName = null;
|
|
7841
|
-
|
|
7842
|
-
/**
|
|
7843
|
-
* Cost ratio, to two decimal points
|
|
7844
|
-
* @type {string || null}
|
|
7845
|
-
*/
|
|
7846
|
-
this.RealTotalCostRatio = null;
|
|
7847
|
-
|
|
7848
|
-
/**
|
|
7849
|
-
* Total amount after discount
|
|
7850
|
-
* @type {string || null}
|
|
7851
|
-
*/
|
|
7852
|
-
this.RealTotalCost = null;
|
|
7853
|
-
|
|
7854
|
-
/**
|
|
7855
|
-
* Cash credit: The amount paid from the user’s cash account
|
|
7856
|
-
* @type {string || null}
|
|
7857
|
-
*/
|
|
7858
|
-
this.CashPayAmount = null;
|
|
7859
|
-
|
|
7860
|
-
/**
|
|
7861
|
-
* Free credit: The amount paid with the user’s free credit
|
|
7862
|
-
* @type {string || null}
|
|
7863
|
-
*/
|
|
7864
|
-
this.IncentivePayAmount = null;
|
|
7865
|
-
|
|
7866
|
-
/**
|
|
7867
|
-
* Voucher payment: The voucher deduction amount
|
|
7868
|
-
* @type {string || null}
|
|
7869
|
-
*/
|
|
7870
|
-
this.VoucherPayAmount = null;
|
|
7871
|
-
|
|
7872
|
-
/**
|
|
7873
|
-
* Commission credit: The amount paid with the user’s commission credit.
|
|
7874
|
-
* @type {string || null}
|
|
7875
|
-
*/
|
|
7876
|
-
this.TransferPayAmount = null;
|
|
7877
|
-
|
|
7878
|
-
/**
|
|
7879
|
-
* Billing month, e.g. `2019-08`
|
|
7880
|
-
* @type {string || null}
|
|
7881
|
-
*/
|
|
7882
|
-
this.BillMonth = null;
|
|
7883
|
-
|
|
7884
|
-
/**
|
|
7885
|
-
* 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.
|
|
8069
|
+
* DateNote: This field may return null, indicating that no valid values can be obtained.
|
|
7886
8070
|
* @type {string || null}
|
|
7887
8071
|
*/
|
|
7888
|
-
this.
|
|
8072
|
+
this.Name = null;
|
|
7889
8073
|
|
|
7890
8074
|
}
|
|
7891
8075
|
|
|
@@ -7896,16 +8080,7 @@ class ProjectSummaryOverviewItem extends AbstractModel {
|
|
|
7896
8080
|
if (!params) {
|
|
7897
8081
|
return;
|
|
7898
8082
|
}
|
|
7899
|
-
this.
|
|
7900
|
-
this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
|
|
7901
|
-
this.RealTotalCostRatio = 'RealTotalCostRatio' in params ? params.RealTotalCostRatio : null;
|
|
7902
|
-
this.RealTotalCost = 'RealTotalCost' in params ? params.RealTotalCost : null;
|
|
7903
|
-
this.CashPayAmount = 'CashPayAmount' in params ? params.CashPayAmount : null;
|
|
7904
|
-
this.IncentivePayAmount = 'IncentivePayAmount' in params ? params.IncentivePayAmount : null;
|
|
7905
|
-
this.VoucherPayAmount = 'VoucherPayAmount' in params ? params.VoucherPayAmount : null;
|
|
7906
|
-
this.TransferPayAmount = 'TransferPayAmount' in params ? params.TransferPayAmount : null;
|
|
7907
|
-
this.BillMonth = 'BillMonth' in params ? params.BillMonth : null;
|
|
7908
|
-
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
8083
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
7909
8084
|
|
|
7910
8085
|
}
|
|
7911
8086
|
}
|
|
@@ -7960,6 +8135,34 @@ class DescribeBillSummaryForOrganizationResponse extends AbstractModel {
|
|
|
7960
8135
|
}
|
|
7961
8136
|
}
|
|
7962
8137
|
|
|
8138
|
+
/**
|
|
8139
|
+
* DeleteAllocationUnit response structure.
|
|
8140
|
+
* @class
|
|
8141
|
+
*/
|
|
8142
|
+
class DeleteAllocationUnitResponse extends AbstractModel {
|
|
8143
|
+
constructor(){
|
|
8144
|
+
super();
|
|
8145
|
+
|
|
8146
|
+
/**
|
|
8147
|
+
* 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.
|
|
8148
|
+
* @type {string || null}
|
|
8149
|
+
*/
|
|
8150
|
+
this.RequestId = null;
|
|
8151
|
+
|
|
8152
|
+
}
|
|
8153
|
+
|
|
8154
|
+
/**
|
|
8155
|
+
* @private
|
|
8156
|
+
*/
|
|
8157
|
+
deserialize(params) {
|
|
8158
|
+
if (!params) {
|
|
8159
|
+
return;
|
|
8160
|
+
}
|
|
8161
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8162
|
+
|
|
8163
|
+
}
|
|
8164
|
+
}
|
|
8165
|
+
|
|
7963
8166
|
/**
|
|
7964
8167
|
* Project filter criteria
|
|
7965
8168
|
* @class
|
|
@@ -8115,6 +8318,34 @@ class CosDetailSets extends AbstractModel {
|
|
|
8115
8318
|
}
|
|
8116
8319
|
}
|
|
8117
8320
|
|
|
8321
|
+
/**
|
|
8322
|
+
* ModifyAllocationUnit response structure.
|
|
8323
|
+
* @class
|
|
8324
|
+
*/
|
|
8325
|
+
class ModifyAllocationUnitResponse extends AbstractModel {
|
|
8326
|
+
constructor(){
|
|
8327
|
+
super();
|
|
8328
|
+
|
|
8329
|
+
/**
|
|
8330
|
+
* 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.
|
|
8331
|
+
* @type {string || null}
|
|
8332
|
+
*/
|
|
8333
|
+
this.RequestId = null;
|
|
8334
|
+
|
|
8335
|
+
}
|
|
8336
|
+
|
|
8337
|
+
/**
|
|
8338
|
+
* @private
|
|
8339
|
+
*/
|
|
8340
|
+
deserialize(params) {
|
|
8341
|
+
if (!params) {
|
|
8342
|
+
return;
|
|
8343
|
+
}
|
|
8344
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8345
|
+
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
|
|
8118
8349
|
/**
|
|
8119
8350
|
* Cost analysis filter box complex type
|
|
8120
8351
|
* @class
|
|
@@ -8561,18 +8792,24 @@ class BillResourceSummary extends AbstractModel {
|
|
|
8561
8792
|
}
|
|
8562
8793
|
|
|
8563
8794
|
/**
|
|
8564
|
-
*
|
|
8795
|
+
* DeleteAllocationUnit request structure.
|
|
8565
8796
|
* @class
|
|
8566
8797
|
*/
|
|
8567
|
-
class
|
|
8798
|
+
class DeleteAllocationUnitRequest extends AbstractModel {
|
|
8568
8799
|
constructor(){
|
|
8569
8800
|
super();
|
|
8570
8801
|
|
|
8571
8802
|
/**
|
|
8572
|
-
*
|
|
8803
|
+
* Specifies the deleted cost allocation unit ID.
|
|
8804
|
+
* @type {number || null}
|
|
8805
|
+
*/
|
|
8806
|
+
this.Id = null;
|
|
8807
|
+
|
|
8808
|
+
/**
|
|
8809
|
+
* Month, which is the current month by default if not provided.
|
|
8573
8810
|
* @type {string || null}
|
|
8574
8811
|
*/
|
|
8575
|
-
this.
|
|
8812
|
+
this.Month = null;
|
|
8576
8813
|
|
|
8577
8814
|
}
|
|
8578
8815
|
|
|
@@ -8583,7 +8820,8 @@ class AnalyseHeaderTimeDetail extends AbstractModel {
|
|
|
8583
8820
|
if (!params) {
|
|
8584
8821
|
return;
|
|
8585
8822
|
}
|
|
8586
|
-
this.
|
|
8823
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
8824
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
8587
8825
|
|
|
8588
8826
|
}
|
|
8589
8827
|
}
|
|
@@ -8658,6 +8896,7 @@ class DescribeCostSummaryByRegionResponse extends AbstractModel {
|
|
|
8658
8896
|
}
|
|
8659
8897
|
|
|
8660
8898
|
module.exports = {
|
|
8899
|
+
CreateAllocationUnitRequest: CreateAllocationUnitRequest,
|
|
8661
8900
|
DeleteAllocationTagRequest: DeleteAllocationTagRequest,
|
|
8662
8901
|
DescribeCostSummaryByProductRequest: DescribeCostSummaryByProductRequest,
|
|
8663
8902
|
DescribeCostExplorerSummaryResponse: DescribeCostExplorerSummaryResponse,
|
|
@@ -8690,6 +8929,7 @@ module.exports = {
|
|
|
8690
8929
|
VoucherInfos: VoucherInfos,
|
|
8691
8930
|
DescribeCostSummaryByProjectResponse: DescribeCostSummaryByProjectResponse,
|
|
8692
8931
|
AnalyseProjectDetail: AnalyseProjectDetail,
|
|
8932
|
+
ProjectSummaryOverviewItem: ProjectSummaryOverviewItem,
|
|
8693
8933
|
DescribeBillSummaryByTagResponse: DescribeBillSummaryByTagResponse,
|
|
8694
8934
|
DescribeBillSummaryByPayModeResponse: DescribeBillSummaryByPayModeResponse,
|
|
8695
8935
|
DescribeBillSummaryByTagRequest: DescribeBillSummaryByTagRequest,
|
|
@@ -8748,6 +8988,7 @@ module.exports = {
|
|
|
8748
8988
|
DescribeBillSummaryByProductResponse: DescribeBillSummaryByProductResponse,
|
|
8749
8989
|
DescribeBillSummaryByRegionResponse: DescribeBillSummaryByRegionResponse,
|
|
8750
8990
|
CreateAllocationTagResponse: CreateAllocationTagResponse,
|
|
8991
|
+
ModifyAllocationUnitRequest: ModifyAllocationUnitRequest,
|
|
8751
8992
|
DescribeBillDownloadUrlResponse: DescribeBillDownloadUrlResponse,
|
|
8752
8993
|
ConsumptionResourceSummaryDataItem: ConsumptionResourceSummaryDataItem,
|
|
8753
8994
|
DescribeAccountBalanceRequest: DescribeAccountBalanceRequest,
|
|
@@ -8760,15 +9001,18 @@ module.exports = {
|
|
|
8760
9001
|
UsageRecords: UsageRecords,
|
|
8761
9002
|
DescribeVoucherInfoRequest: DescribeVoucherInfoRequest,
|
|
8762
9003
|
DescribeDealsByCondRequest: DescribeDealsByCondRequest,
|
|
9004
|
+
CreateAllocationUnitResponse: CreateAllocationUnitResponse,
|
|
8763
9005
|
DescribeDosageCosDetailByDateResponse: DescribeDosageCosDetailByDateResponse,
|
|
8764
|
-
|
|
9006
|
+
AnalyseHeaderTimeDetail: AnalyseHeaderTimeDetail,
|
|
8765
9007
|
DescribeBillSummaryForOrganizationResponse: DescribeBillSummaryForOrganizationResponse,
|
|
9008
|
+
DeleteAllocationUnitResponse: DeleteAllocationUnitResponse,
|
|
8766
9009
|
ConditionProject: ConditionProject,
|
|
8767
9010
|
DescribeTagListResponse: DescribeTagListResponse,
|
|
8768
9011
|
CosDetailSets: CosDetailSets,
|
|
9012
|
+
ModifyAllocationUnitResponse: ModifyAllocationUnitResponse,
|
|
8769
9013
|
AnalyseConditionDetail: AnalyseConditionDetail,
|
|
8770
9014
|
BillResourceSummary: BillResourceSummary,
|
|
8771
|
-
|
|
9015
|
+
DeleteAllocationUnitRequest: DeleteAllocationUnitRequest,
|
|
8772
9016
|
DescribeCostSummaryByRegionResponse: DescribeCostSummaryByRegionResponse,
|
|
8773
9017
|
|
|
8774
9018
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1184";
|
|
2
2
|
module.exports = sdkVersion
|