tencentcloud-sdk-nodejs 4.1.35 → 4.1.36
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/es/common/sdk_version.js +1 -1
- package/es/services/billing/v20180709/billing_client.js +46 -4
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +10 -2
- package/tencentcloud/services/as/v20180419/as_models.d.ts +20 -9
- package/tencentcloud/services/billing/v20180709/billing_client.d.ts +61 -5
- package/tencentcloud/services/billing/v20180709/billing_client.js +90 -6
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +860 -224
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +76 -12
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +1 -1
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +54 -1
- package/tencentcloud/services/tag/v20180813/tag_models.d.ts +4 -4
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +8 -0
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +0 -10
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +3 -4
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +1 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +105 -37
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +5 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +4 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.36";
|
|
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
|
|
|
6
6
|
async DescribeBillDetailForOrganization(req, cb) {
|
|
7
7
|
return this.request("DescribeBillDetailForOrganization", req, cb);
|
|
8
8
|
}
|
|
9
|
+
async DeleteGatherRule(req, cb) {
|
|
10
|
+
return this.request("DeleteGatherRule", req, cb);
|
|
11
|
+
}
|
|
9
12
|
async DescribeCostSummaryByResource(req, cb) {
|
|
10
13
|
return this.request("DescribeCostSummaryByResource", req, cb);
|
|
11
14
|
}
|
|
@@ -15,11 +18,14 @@ export class Client extends AbstractClient {
|
|
|
15
18
|
async DescribeAllocationSummaryByResource(req, cb) {
|
|
16
19
|
return this.request("DescribeAllocationSummaryByResource", req, cb);
|
|
17
20
|
}
|
|
21
|
+
async DescribeAllocationRuleSummary(req, cb) {
|
|
22
|
+
return this.request("DescribeAllocationRuleSummary", req, cb);
|
|
23
|
+
}
|
|
18
24
|
async DescribeBillResourceSummary(req, cb) {
|
|
19
25
|
return this.request("DescribeBillResourceSummary", req, cb);
|
|
20
26
|
}
|
|
21
|
-
async
|
|
22
|
-
return this.request("
|
|
27
|
+
async DeleteAllocationUnit(req, cb) {
|
|
28
|
+
return this.request("DeleteAllocationUnit", req, cb);
|
|
23
29
|
}
|
|
24
30
|
async DescribeAllocateConditions(req, cb) {
|
|
25
31
|
return this.request("DescribeAllocateConditions", req, cb);
|
|
@@ -30,6 +36,9 @@ export class Client extends AbstractClient {
|
|
|
30
36
|
async DescribeDosageDetailList(req, cb) {
|
|
31
37
|
return this.request("DescribeDosageDetailList", req, cb);
|
|
32
38
|
}
|
|
39
|
+
async CreateAllocationUnit(req, cb) {
|
|
40
|
+
return this.request("CreateAllocationUnit", req, cb);
|
|
41
|
+
}
|
|
33
42
|
async CreateAllocationTag(req, cb) {
|
|
34
43
|
return this.request("CreateAllocationTag", req, cb);
|
|
35
44
|
}
|
|
@@ -51,12 +60,24 @@ export class Client extends AbstractClient {
|
|
|
51
60
|
async DescribeBillSummary(req, cb) {
|
|
52
61
|
return this.request("DescribeBillSummary", req, cb);
|
|
53
62
|
}
|
|
63
|
+
async DeleteAllocationRule(req, cb) {
|
|
64
|
+
return this.request("DeleteAllocationRule", req, cb);
|
|
65
|
+
}
|
|
54
66
|
async DescribeBillSummaryByPayMode(req, cb) {
|
|
55
67
|
return this.request("DescribeBillSummaryByPayMode", req, cb);
|
|
56
68
|
}
|
|
69
|
+
async DescribeAllocationRuleDetail(req, cb) {
|
|
70
|
+
return this.request("DescribeAllocationRuleDetail", req, cb);
|
|
71
|
+
}
|
|
57
72
|
async DescribeCostSummaryByRegion(req, cb) {
|
|
58
73
|
return this.request("DescribeCostSummaryByRegion", req, cb);
|
|
59
74
|
}
|
|
75
|
+
async DescribeVoucherUsageDetails(req, cb) {
|
|
76
|
+
return this.request("DescribeVoucherUsageDetails", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async ModifyGatherRule(req, cb) {
|
|
79
|
+
return this.request("ModifyGatherRule", req, cb);
|
|
80
|
+
}
|
|
60
81
|
async DescribeAllocationTrendByMonth(req, cb) {
|
|
61
82
|
return this.request("DescribeAllocationTrendByMonth", req, cb);
|
|
62
83
|
}
|
|
@@ -66,15 +87,27 @@ export class Client extends AbstractClient {
|
|
|
66
87
|
async DescribeDosageCosDetailByDate(req, cb) {
|
|
67
88
|
return this.request("DescribeDosageCosDetailByDate", req, cb);
|
|
68
89
|
}
|
|
90
|
+
async CreateGatherRule(req, cb) {
|
|
91
|
+
return this.request("CreateGatherRule", req, cb);
|
|
92
|
+
}
|
|
69
93
|
async DescribeAllocationBillConditions(req, cb) {
|
|
70
94
|
return this.request("DescribeAllocationBillConditions", req, cb);
|
|
71
95
|
}
|
|
72
96
|
async DescribeAccountBalance(req, cb) {
|
|
73
97
|
return this.request("DescribeAccountBalance", req, cb);
|
|
74
98
|
}
|
|
99
|
+
async DescribeGatherRuleDetail(req, cb) {
|
|
100
|
+
return this.request("DescribeGatherRuleDetail", req, cb);
|
|
101
|
+
}
|
|
75
102
|
async DescribeDosageDetailByDate(req, cb) {
|
|
76
103
|
return this.request("DescribeDosageDetailByDate", req, cb);
|
|
77
104
|
}
|
|
105
|
+
async DescribeAllocationTree(req, cb) {
|
|
106
|
+
return this.request("DescribeAllocationTree", req, cb);
|
|
107
|
+
}
|
|
108
|
+
async DescribeAllocationUnitDetail(req, cb) {
|
|
109
|
+
return this.request("DescribeAllocationUnitDetail", req, cb);
|
|
110
|
+
}
|
|
78
111
|
async DescribeBillAdjustInfo(req, cb) {
|
|
79
112
|
return this.request("DescribeBillAdjustInfo", req, cb);
|
|
80
113
|
}
|
|
@@ -90,6 +123,9 @@ export class Client extends AbstractClient {
|
|
|
90
123
|
async DescribeAllocationMonthOverview(req, cb) {
|
|
91
124
|
return this.request("DescribeAllocationMonthOverview", req, cb);
|
|
92
125
|
}
|
|
126
|
+
async CreateAllocationRule(req, cb) {
|
|
127
|
+
return this.request("CreateAllocationRule", req, cb);
|
|
128
|
+
}
|
|
93
129
|
async DescribeBillSummaryByTag(req, cb) {
|
|
94
130
|
return this.request("DescribeBillSummaryByTag", req, cb);
|
|
95
131
|
}
|
|
@@ -105,8 +141,11 @@ export class Client extends AbstractClient {
|
|
|
105
141
|
async DescribeTagList(req, cb) {
|
|
106
142
|
return this.request("DescribeTagList", req, cb);
|
|
107
143
|
}
|
|
108
|
-
async
|
|
109
|
-
return this.request("
|
|
144
|
+
async ModifyAllocationUnit(req, cb) {
|
|
145
|
+
return this.request("ModifyAllocationUnit", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async DescribeAllocationSummaryByBusiness(req, cb) {
|
|
148
|
+
return this.request("DescribeAllocationSummaryByBusiness", req, cb);
|
|
110
149
|
}
|
|
111
150
|
async PayDeals(req, cb) {
|
|
112
151
|
return this.request("PayDeals", req, cb);
|
|
@@ -126,6 +165,9 @@ export class Client extends AbstractClient {
|
|
|
126
165
|
async DescribeBillSummaryByProduct(req, cb) {
|
|
127
166
|
return this.request("DescribeBillSummaryByProduct", req, cb);
|
|
128
167
|
}
|
|
168
|
+
async ModifyAllocationRule(req, cb) {
|
|
169
|
+
return this.request("ModifyAllocationRule", req, cb);
|
|
170
|
+
}
|
|
129
171
|
async DescribeCostDetail(req, cb) {
|
|
130
172
|
return this.request("DescribeCostDetail", req, cb);
|
|
131
173
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.36";
|
|
@@ -122,11 +122,11 @@ export interface ModifyApmInstanceRequest {
|
|
|
122
122
|
*/
|
|
123
123
|
IsMemoryHijackingAnalysis?: number;
|
|
124
124
|
/**
|
|
125
|
-
* 0=全文索引,1=键值索引
|
|
125
|
+
* CLS索引类型(0=全文索引,1=键值索引)
|
|
126
126
|
*/
|
|
127
127
|
LogIndexType?: number;
|
|
128
128
|
/**
|
|
129
|
-
* traceId的索引key
|
|
129
|
+
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
130
130
|
*/
|
|
131
131
|
LogTraceIdKey?: string;
|
|
132
132
|
}
|
|
@@ -296,6 +296,14 @@ export interface ApmInstanceDetail {
|
|
|
296
296
|
* 是否开内存马执行检测(0=关, 1=开)
|
|
297
297
|
*/
|
|
298
298
|
IsMemoryHijackingAnalysis?: number;
|
|
299
|
+
/**
|
|
300
|
+
* CLS索引类型(0=全文索引,1=键值索引)
|
|
301
|
+
*/
|
|
302
|
+
LogIndexType?: number;
|
|
303
|
+
/**
|
|
304
|
+
* traceId的索引key: 当CLS索引类型为键值索引时生效
|
|
305
|
+
*/
|
|
306
|
+
LogTraceIdKey?: string;
|
|
299
307
|
}
|
|
300
308
|
/**
|
|
301
309
|
* CreateApmInstance请求参数结构体
|
|
@@ -1573,7 +1573,7 @@ export interface ScaleInInstancesResponse {
|
|
|
1573
1573
|
/**
|
|
1574
1574
|
* 伸缩活动ID。
|
|
1575
1575
|
*/
|
|
1576
|
-
ActivityId
|
|
1576
|
+
ActivityId?: string;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1579
1579
|
*/
|
|
@@ -1683,6 +1683,10 @@ export interface DescribeAutoScalingGroupLastActivitiesRequest {
|
|
|
1683
1683
|
* 伸缩组ID列表
|
|
1684
1684
|
*/
|
|
1685
1685
|
AutoScalingGroupIds: Array<string>;
|
|
1686
|
+
/**
|
|
1687
|
+
* 查询时排除取消类型活动。默认值为 false,表示不排除取消类型活动。
|
|
1688
|
+
*/
|
|
1689
|
+
ExcludeCancelledActivity?: boolean;
|
|
1686
1690
|
}
|
|
1687
1691
|
/**
|
|
1688
1692
|
* 云服务器主机名(HostName)的相关设置
|
|
@@ -1821,7 +1825,7 @@ export interface ModifyNotificationConfigurationRequest {
|
|
|
1821
1825
|
*/
|
|
1822
1826
|
export interface DeleteLifecycleHookRequest {
|
|
1823
1827
|
/**
|
|
1824
|
-
* 生命周期挂钩ID
|
|
1828
|
+
* 生命周期挂钩ID。可以通过调用接口 [DescribeLifecycleHooks](https://cloud.tencent.com/document/api/377/34452) ,取返回信息中的 LifecycleHookId 获取生命周期挂钩ID。
|
|
1825
1829
|
*/
|
|
1826
1830
|
LifecycleHookId: string;
|
|
1827
1831
|
}
|
|
@@ -3522,11 +3526,13 @@ export interface DescribeNotificationConfigurationsRequest {
|
|
|
3522
3526
|
*/
|
|
3523
3527
|
export interface ScaleInInstancesRequest {
|
|
3524
3528
|
/**
|
|
3525
|
-
* 伸缩组ID
|
|
3529
|
+
* 伸缩组ID。可以通过如下方式获取可用的伸缩组ID:
|
|
3530
|
+
<li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>
|
|
3531
|
+
<li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>
|
|
3526
3532
|
*/
|
|
3527
3533
|
AutoScalingGroupId: string;
|
|
3528
3534
|
/**
|
|
3529
|
-
*
|
|
3535
|
+
* 希望缩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最小值的差值。例如伸缩组期望数为 100,最小值为 20,此时可取值范围为 [1,80]。
|
|
3530
3536
|
*/
|
|
3531
3537
|
ScaleInNumber: number;
|
|
3532
3538
|
}
|
|
@@ -3547,15 +3553,19 @@ export interface LifecycleHook {
|
|
|
3547
3553
|
*/
|
|
3548
3554
|
AutoScalingGroupId?: string;
|
|
3549
3555
|
/**
|
|
3550
|
-
*
|
|
3556
|
+
* 定义伸缩组在生命周期挂钩超时或 LifecycleCommand 执行失败时应采取的操作,取值范围如下:
|
|
3557
|
+
- CONTINUE: 默认值,表示继续执行扩缩容活动
|
|
3558
|
+
- ABANDON: 针对扩容挂钩,挂钩超时或 LifecycleCommand 执行失败的 CVM 实例会直接释放或移出;而针对缩容挂钩,会继续执行缩容活动
|
|
3551
3559
|
*/
|
|
3552
3560
|
DefaultResult?: string;
|
|
3553
3561
|
/**
|
|
3554
|
-
*
|
|
3562
|
+
* 生命周期挂钩超时等待时间(以秒为单位),范围从 30 到 7200 秒。
|
|
3555
3563
|
*/
|
|
3556
3564
|
HeartbeatTimeout?: number;
|
|
3557
3565
|
/**
|
|
3558
|
-
*
|
|
3566
|
+
* 生命周期挂钩场景,取值范围如下:
|
|
3567
|
+
- INSTANCE_LAUNCHING: 扩容生命周期挂钩
|
|
3568
|
+
- INSTANCE_TERMINATING: 缩容生命周期挂钩
|
|
3559
3569
|
*/
|
|
3560
3570
|
LifecycleTransition?: string;
|
|
3561
3571
|
/**
|
|
@@ -3563,7 +3573,7 @@ export interface LifecycleHook {
|
|
|
3563
3573
|
*/
|
|
3564
3574
|
NotificationMetadata?: string;
|
|
3565
3575
|
/**
|
|
3566
|
-
*
|
|
3576
|
+
* 创建时间,采用 UTC 标准计时
|
|
3567
3577
|
*/
|
|
3568
3578
|
CreatedTime?: string;
|
|
3569
3579
|
/**
|
|
@@ -3571,7 +3581,8 @@ export interface LifecycleHook {
|
|
|
3571
3581
|
*/
|
|
3572
3582
|
NotificationTarget?: NotificationTarget;
|
|
3573
3583
|
/**
|
|
3574
|
-
*
|
|
3584
|
+
* 进行生命周期挂钩的场景类型,取值范围包括 NORMAL 和 EXTENSION,默认值为 NORMAL。
|
|
3585
|
+
说明:设置为EXTENSION值,在AttachInstances、DetachInstances、RemoveInstances 接口时会触发生命周期挂钩操作,值为NORMAL则不会在这些接口中触发生命周期挂钩。
|
|
3575
3586
|
*/
|
|
3576
3587
|
LifecycleTransitionType?: string;
|
|
3577
3588
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse,
|
|
3
|
+
import { CreateAllocationUnitRequest, DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, ModifyAllocationRuleRequest, DeleteAllocationRuleRequest, CreateAllocationRuleResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse, DescribeAllocationTreeResponse, DescribeBillDetailForOrganizationResponse, DescribeCostSummaryByResourceResponse, DescribeBillSummaryByRegionRequest, DescribeBillListResponse, DescribeAllocateConditionsRequest, CreateAllocationRuleRequest, DescribeAllocationUnitDetailResponse, DescribeBillSummaryRequest, DescribeBillResourceSummaryResponse, DescribeGatherRuleDetailRequest, DescribeAllocationOverviewResponse, DescribeDosageCosDetailByDateRequest, DeleteAllocationTagRequest, DescribeBillSummaryByProductRequest, DescribeDosageDetailListResponse, DescribeAllocationBillDetailRequest, DescribeBillListRequest, DescribeAllocationTrendByMonthRequest, DescribeVoucherUsageDetailsResponse, DescribeAllocationOverviewRequest, DescribeGatherResourceResponse, DescribeCostDetailResponse, DescribeAllocationMonthOverviewResponse, DescribeAllocationSummaryByItemResponse, DescribeDosageDetailByDateResponse, DescribeDosageDetailByDateRequest, DescribeGatherResourceRequest, DescribeCostSummaryByProjectResponse, DescribeBillSummaryByTagResponse, ModifyGatherRuleRequest, DescribeBillSummaryByPayModeResponse, DescribeAllocationSummaryByBusinessResponse, DescribeAllocationSummaryByItemRequest, DescribeBillSummaryByTagRequest, DescribeAllocationRuleSummaryResponse, DescribeBillSummaryByProjectRequest, CreateGatherRuleRequest, DescribeBillResourceSummaryForOrganizationRequest, DescribeCostSummaryByRegionRequest, DescribeBillDownloadUrlRequest, DescribeAllocationSummaryByBusinessRequest, DescribeBillSummaryByPayModeRequest, DeleteGatherRuleResponse, DescribeAllocationBillConditionsRequest, DescribeAllocationRuleDetailRequest, PayDealsResponse, DescribeCostSummaryByProjectRequest, DescribeBillDetailResponse, DescribeDealsByCondResponse, DescribeBillSummaryByProjectResponse, DescribeBillAdjustInfoRequest, DeleteAllocationRuleResponse, PayDealsRequest, DescribeAllocationBillConditionsResponse, DescribeAllocationMonthOverviewRequest, DescribeBillSummaryResponse, DeleteAllocationTagResponse, DescribeAllocationUnitDetailRequest, DescribeBillSummaryForOrganizationRequest, ModifyGatherRuleResponse, DescribeBillDetailForOrganizationRequest, DescribeVoucherUsageDetailsRequest, DescribeBillResourceSummaryRequest, DescribeCostSummaryByRegionResponse, DescribeCostDetailRequest, DescribeAllocationSummaryByResourceRequest, DescribeBillSummaryForOrganizationResponse, DescribeTagListRequest, DescribeBillResourceSummaryForOrganizationResponse, DescribeAllocationTreeRequest, DescribeCostSummaryByResourceRequest, CreateAllocationTagRequest, DescribeAllocationRuleDetailResponse, DescribeBillSummaryByProductResponse, DescribeBillSummaryByRegionResponse, CreateAllocationTagResponse, ModifyAllocationUnitRequest, DescribeBillDownloadUrlResponse, DescribeAccountBalanceRequest, DescribeBillDetailRequest, DescribeSavingPlanResourceInfoRequest, DescribeVoucherInfoResponse, DeleteGatherRuleRequest, DescribeAccountBalanceResponse, DescribeAllocationBillDetailResponse, CreateGatherRuleResponse, DescribeAllocateConditionsResponse, DescribeDosageDetailListRequest, ModifyAllocationRuleResponse, DescribeVoucherInfoRequest, DescribeSavingPlanResourceInfoResponse, DescribeDealsByCondRequest, DescribeAllocationSummaryByResourceResponse, CreateAllocationUnitResponse, DescribeDosageCosDetailByDateResponse, DeleteAllocationUnitRequest, DeleteAllocationUnitResponse, DescribeTagListResponse, DescribeAllocationRuleSummaryRequest, DescribeAllocationTrendByMonthResponse, ModifyAllocationUnitResponse, DescribeGatherRuleDetailResponse } from "./billing_models";
|
|
4
4
|
/**
|
|
5
5
|
* billing client
|
|
6
6
|
* @class
|
|
@@ -12,6 +12,10 @@ export declare class Client extends AbstractClient {
|
|
|
12
12
|
注意事项:在请求接口时,由于网络不稳定或其它异常,可能会导致请求失败。如果您遇到这种情况,我们建议您在接口请求失败时,手动发起重试操作,这样可以更好地确保您的接口请求能够成功执行。
|
|
13
13
|
*/
|
|
14
14
|
DescribeBillDetailForOrganization(req: DescribeBillDetailForOrganizationRequest, cb?: (error: string, rep: DescribeBillDetailForOrganizationResponse) => void): Promise<DescribeBillDetailForOrganizationResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* 删除归集规则
|
|
17
|
+
*/
|
|
18
|
+
DeleteGatherRule(req: DeleteGatherRuleRequest, cb?: (error: string, rep: DeleteGatherRuleResponse) => void): Promise<DeleteGatherRuleResponse>;
|
|
15
19
|
/**
|
|
16
20
|
* 获取按资源汇总消耗详情
|
|
17
21
|
*/
|
|
@@ -24,14 +28,18 @@ export declare class Client extends AbstractClient {
|
|
|
24
28
|
* 查询分账账单按资源汇总
|
|
25
29
|
*/
|
|
26
30
|
DescribeAllocationSummaryByResource(req: DescribeAllocationSummaryByResourceRequest, cb?: (error: string, rep: DescribeAllocationSummaryByResourceResponse) => void): Promise<DescribeAllocationSummaryByResourceResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* 查询所有公摊规则概览
|
|
33
|
+
*/
|
|
34
|
+
DescribeAllocationRuleSummary(req: DescribeAllocationRuleSummaryRequest, cb?: (error: string, rep: DescribeAllocationRuleSummaryResponse) => void): Promise<DescribeAllocationRuleSummaryResponse>;
|
|
27
35
|
/**
|
|
28
36
|
* 获取账单资源汇总数据
|
|
29
37
|
*/
|
|
30
38
|
DescribeBillResourceSummary(req: DescribeBillResourceSummaryRequest, cb?: (error: string, rep: DescribeBillResourceSummaryResponse) => void): Promise<DescribeBillResourceSummaryResponse>;
|
|
31
39
|
/**
|
|
32
|
-
*
|
|
40
|
+
* 删除分账单元
|
|
33
41
|
*/
|
|
34
|
-
|
|
42
|
+
DeleteAllocationUnit(req: DeleteAllocationUnitRequest, cb?: (error: string, rep: DeleteAllocationUnitResponse) => void): Promise<DeleteAllocationUnitResponse>;
|
|
35
43
|
/**
|
|
36
44
|
* 查询资源目录筛选条件
|
|
37
45
|
*/
|
|
@@ -44,6 +52,10 @@ export declare class Client extends AbstractClient {
|
|
|
44
52
|
* 获取已接入标准用量明细模板产品的用量明细数据,目前已接入并支持查询的产品包括:云联络中心、实时音视频、实时音视频、智能媒资托管、CODING DevOps、全球IP应用加速
|
|
45
53
|
*/
|
|
46
54
|
DescribeDosageDetailList(req: DescribeDosageDetailListRequest, cb?: (error: string, rep: DescribeDosageDetailListResponse) => void): Promise<DescribeDosageDetailListResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* 创建分账单元
|
|
57
|
+
*/
|
|
58
|
+
CreateAllocationUnit(req: CreateAllocationUnitRequest, cb?: (error: string, rep: CreateAllocationUnitResponse) => void): Promise<CreateAllocationUnitResponse>;
|
|
47
59
|
/**
|
|
48
60
|
* 批量设置分账标签
|
|
49
61
|
*/
|
|
@@ -75,14 +87,30 @@ export declare class Client extends AbstractClient {
|
|
|
75
87
|
* 该接口支持通过传参,按照产品、项目、地域、计费模式和标签五个维度获取账单费用明细。
|
|
76
88
|
*/
|
|
77
89
|
DescribeBillSummary(req: DescribeBillSummaryRequest, cb?: (error: string, rep: DescribeBillSummaryResponse) => void): Promise<DescribeBillSummaryResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* 公摊规则删除接口
|
|
92
|
+
*/
|
|
93
|
+
DeleteAllocationRule(req: DeleteAllocationRuleRequest, cb?: (error: string, rep: DeleteAllocationRuleResponse) => void): Promise<DeleteAllocationRuleResponse>;
|
|
78
94
|
/**
|
|
79
95
|
* 获取按计费模式汇总费用分布
|
|
80
96
|
*/
|
|
81
97
|
DescribeBillSummaryByPayMode(req: DescribeBillSummaryByPayModeRequest, cb?: (error: string, rep: DescribeBillSummaryByPayModeResponse) => void): Promise<DescribeBillSummaryByPayModeResponse>;
|
|
98
|
+
/**
|
|
99
|
+
* 查询公摊规则详情
|
|
100
|
+
*/
|
|
101
|
+
DescribeAllocationRuleDetail(req: DescribeAllocationRuleDetailRequest, cb?: (error: string, rep: DescribeAllocationRuleDetailResponse) => void): Promise<DescribeAllocationRuleDetailResponse>;
|
|
82
102
|
/**
|
|
83
103
|
* 获取按地域汇总消耗详情
|
|
84
104
|
*/
|
|
85
105
|
DescribeCostSummaryByRegion(req: DescribeCostSummaryByRegionRequest, cb?: (error: string, rep: DescribeCostSummaryByRegionResponse) => void): Promise<DescribeCostSummaryByRegionResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* 获取代金券使用记录
|
|
108
|
+
*/
|
|
109
|
+
DescribeVoucherUsageDetails(req: DescribeVoucherUsageDetailsRequest, cb?: (error: string, rep: DescribeVoucherUsageDetailsResponse) => void): Promise<DescribeVoucherUsageDetailsResponse>;
|
|
110
|
+
/**
|
|
111
|
+
* 编辑归集规则
|
|
112
|
+
*/
|
|
113
|
+
ModifyGatherRule(req: ModifyGatherRuleRequest, cb?: (error: string, rep: ModifyGatherRuleResponse) => void): Promise<ModifyGatherRuleResponse>;
|
|
86
114
|
/**
|
|
87
115
|
* 查询分账账单费用趋势
|
|
88
116
|
*/
|
|
@@ -95,6 +123,10 @@ export declare class Client extends AbstractClient {
|
|
|
95
123
|
* 获取COS产品用量明细
|
|
96
124
|
*/
|
|
97
125
|
DescribeDosageCosDetailByDate(req: DescribeDosageCosDetailByDateRequest, cb?: (error: string, rep: DescribeDosageCosDetailByDateResponse) => void): Promise<DescribeDosageCosDetailByDateResponse>;
|
|
126
|
+
/**
|
|
127
|
+
* 创建归集规则
|
|
128
|
+
*/
|
|
129
|
+
CreateGatherRule(req: CreateGatherRuleRequest, cb?: (error: string, rep: CreateGatherRuleResponse) => void): Promise<CreateGatherRuleResponse>;
|
|
98
130
|
/**
|
|
99
131
|
* 查询分账账单筛选条件
|
|
100
132
|
*/
|
|
@@ -103,10 +135,22 @@ export declare class Client extends AbstractClient {
|
|
|
103
135
|
* 获取云账户余额信息。
|
|
104
136
|
*/
|
|
105
137
|
DescribeAccountBalance(req?: DescribeAccountBalanceRequest, cb?: (error: string, rep: DescribeAccountBalanceResponse) => void): Promise<DescribeAccountBalanceResponse>;
|
|
138
|
+
/**
|
|
139
|
+
* 查询归集规则详情
|
|
140
|
+
*/
|
|
141
|
+
DescribeGatherRuleDetail(req: DescribeGatherRuleDetailRequest, cb?: (error: string, rep: DescribeGatherRuleDetailResponse) => void): Promise<DescribeGatherRuleDetailResponse>;
|
|
106
142
|
/**
|
|
107
143
|
* 按日期获取产品用量明细
|
|
108
144
|
*/
|
|
109
145
|
DescribeDosageDetailByDate(req: DescribeDosageDetailByDateRequest, cb?: (error: string, rep: DescribeDosageDetailByDateResponse) => void): Promise<DescribeDosageDetailByDateResponse>;
|
|
146
|
+
/**
|
|
147
|
+
* 查询分账目录树
|
|
148
|
+
*/
|
|
149
|
+
DescribeAllocationTree(req: DescribeAllocationTreeRequest, cb?: (error: string, rep: DescribeAllocationTreeResponse) => void): Promise<DescribeAllocationTreeResponse>;
|
|
150
|
+
/**
|
|
151
|
+
* 查询分账单元详情
|
|
152
|
+
*/
|
|
153
|
+
DescribeAllocationUnitDetail(req: DescribeAllocationUnitDetailRequest, cb?: (error: string, rep: DescribeAllocationUnitDetailResponse) => void): Promise<DescribeAllocationUnitDetailResponse>;
|
|
110
154
|
/**
|
|
111
155
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
112
156
|
*/
|
|
@@ -127,6 +171,10 @@ export declare class Client extends AbstractClient {
|
|
|
127
171
|
* 查询分账账单月概览
|
|
128
172
|
*/
|
|
129
173
|
DescribeAllocationMonthOverview(req: DescribeAllocationMonthOverviewRequest, cb?: (error: string, rep: DescribeAllocationMonthOverviewResponse) => void): Promise<DescribeAllocationMonthOverviewResponse>;
|
|
174
|
+
/**
|
|
175
|
+
* 创建公摊规则
|
|
176
|
+
*/
|
|
177
|
+
CreateAllocationRule(req: CreateAllocationRuleRequest, cb?: (error: string, rep: CreateAllocationRuleResponse) => void): Promise<CreateAllocationRuleResponse>;
|
|
130
178
|
/**
|
|
131
179
|
* 获取按标签汇总费用分布
|
|
132
180
|
*/
|
|
@@ -148,9 +196,13 @@ export declare class Client extends AbstractClient {
|
|
|
148
196
|
*/
|
|
149
197
|
DescribeTagList(req: DescribeTagListRequest, cb?: (error: string, rep: DescribeTagListResponse) => void): Promise<DescribeTagListResponse>;
|
|
150
198
|
/**
|
|
151
|
-
*
|
|
199
|
+
* 修改分账单元信息
|
|
152
200
|
*/
|
|
153
|
-
|
|
201
|
+
ModifyAllocationUnit(req: ModifyAllocationUnitRequest, cb?: (error: string, rep: ModifyAllocationUnitResponse) => void): Promise<ModifyAllocationUnitResponse>;
|
|
202
|
+
/**
|
|
203
|
+
* 查询分账账单按产品汇总
|
|
204
|
+
*/
|
|
205
|
+
DescribeAllocationSummaryByBusiness(req: DescribeAllocationSummaryByBusinessRequest, cb?: (error: string, rep: DescribeAllocationSummaryByBusinessResponse) => void): Promise<DescribeAllocationSummaryByBusinessResponse>;
|
|
154
206
|
/**
|
|
155
207
|
* 支付订单
|
|
156
208
|
*/
|
|
@@ -175,6 +227,10 @@ export declare class Client extends AbstractClient {
|
|
|
175
227
|
* 获取产品汇总费用分布
|
|
176
228
|
*/
|
|
177
229
|
DescribeBillSummaryByProduct(req: DescribeBillSummaryByProductRequest, cb?: (error: string, rep: DescribeBillSummaryByProductResponse) => void): Promise<DescribeBillSummaryByProductResponse>;
|
|
230
|
+
/**
|
|
231
|
+
* 编辑公摊规则
|
|
232
|
+
*/
|
|
233
|
+
ModifyAllocationRule(req: ModifyAllocationRuleRequest, cb?: (error: string, rep: ModifyAllocationRuleResponse) => void): Promise<ModifyAllocationRuleResponse>;
|
|
178
234
|
/**
|
|
179
235
|
* 查询消耗明细
|
|
180
236
|
|
|
@@ -34,6 +34,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
34
34
|
async DescribeBillDetailForOrganization(req, cb) {
|
|
35
35
|
return this.request("DescribeBillDetailForOrganization", req, cb);
|
|
36
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* 删除归集规则
|
|
39
|
+
*/
|
|
40
|
+
async DeleteGatherRule(req, cb) {
|
|
41
|
+
return this.request("DeleteGatherRule", req, cb);
|
|
42
|
+
}
|
|
37
43
|
/**
|
|
38
44
|
* 获取按资源汇总消耗详情
|
|
39
45
|
*/
|
|
@@ -52,6 +58,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
52
58
|
async DescribeAllocationSummaryByResource(req, cb) {
|
|
53
59
|
return this.request("DescribeAllocationSummaryByResource", req, cb);
|
|
54
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* 查询所有公摊规则概览
|
|
63
|
+
*/
|
|
64
|
+
async DescribeAllocationRuleSummary(req, cb) {
|
|
65
|
+
return this.request("DescribeAllocationRuleSummary", req, cb);
|
|
66
|
+
}
|
|
55
67
|
/**
|
|
56
68
|
* 获取账单资源汇总数据
|
|
57
69
|
*/
|
|
@@ -59,10 +71,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
59
71
|
return this.request("DescribeBillResourceSummary", req, cb);
|
|
60
72
|
}
|
|
61
73
|
/**
|
|
62
|
-
*
|
|
74
|
+
* 删除分账单元
|
|
63
75
|
*/
|
|
64
|
-
async
|
|
65
|
-
return this.request("
|
|
76
|
+
async DeleteAllocationUnit(req, cb) {
|
|
77
|
+
return this.request("DeleteAllocationUnit", req, cb);
|
|
66
78
|
}
|
|
67
79
|
/**
|
|
68
80
|
* 查询资源目录筛选条件
|
|
@@ -82,6 +94,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
82
94
|
async DescribeDosageDetailList(req, cb) {
|
|
83
95
|
return this.request("DescribeDosageDetailList", req, cb);
|
|
84
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* 创建分账单元
|
|
99
|
+
*/
|
|
100
|
+
async CreateAllocationUnit(req, cb) {
|
|
101
|
+
return this.request("CreateAllocationUnit", req, cb);
|
|
102
|
+
}
|
|
85
103
|
/**
|
|
86
104
|
* 批量设置分账标签
|
|
87
105
|
*/
|
|
@@ -127,18 +145,42 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
127
145
|
async DescribeBillSummary(req, cb) {
|
|
128
146
|
return this.request("DescribeBillSummary", req, cb);
|
|
129
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* 公摊规则删除接口
|
|
150
|
+
*/
|
|
151
|
+
async DeleteAllocationRule(req, cb) {
|
|
152
|
+
return this.request("DeleteAllocationRule", req, cb);
|
|
153
|
+
}
|
|
130
154
|
/**
|
|
131
155
|
* 获取按计费模式汇总费用分布
|
|
132
156
|
*/
|
|
133
157
|
async DescribeBillSummaryByPayMode(req, cb) {
|
|
134
158
|
return this.request("DescribeBillSummaryByPayMode", req, cb);
|
|
135
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* 查询公摊规则详情
|
|
162
|
+
*/
|
|
163
|
+
async DescribeAllocationRuleDetail(req, cb) {
|
|
164
|
+
return this.request("DescribeAllocationRuleDetail", req, cb);
|
|
165
|
+
}
|
|
136
166
|
/**
|
|
137
167
|
* 获取按地域汇总消耗详情
|
|
138
168
|
*/
|
|
139
169
|
async DescribeCostSummaryByRegion(req, cb) {
|
|
140
170
|
return this.request("DescribeCostSummaryByRegion", req, cb);
|
|
141
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* 获取代金券使用记录
|
|
174
|
+
*/
|
|
175
|
+
async DescribeVoucherUsageDetails(req, cb) {
|
|
176
|
+
return this.request("DescribeVoucherUsageDetails", req, cb);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* 编辑归集规则
|
|
180
|
+
*/
|
|
181
|
+
async ModifyGatherRule(req, cb) {
|
|
182
|
+
return this.request("ModifyGatherRule", req, cb);
|
|
183
|
+
}
|
|
142
184
|
/**
|
|
143
185
|
* 查询分账账单费用趋势
|
|
144
186
|
*/
|
|
@@ -157,6 +199,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
157
199
|
async DescribeDosageCosDetailByDate(req, cb) {
|
|
158
200
|
return this.request("DescribeDosageCosDetailByDate", req, cb);
|
|
159
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* 创建归集规则
|
|
204
|
+
*/
|
|
205
|
+
async CreateGatherRule(req, cb) {
|
|
206
|
+
return this.request("CreateGatherRule", req, cb);
|
|
207
|
+
}
|
|
160
208
|
/**
|
|
161
209
|
* 查询分账账单筛选条件
|
|
162
210
|
*/
|
|
@@ -169,12 +217,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
169
217
|
async DescribeAccountBalance(req, cb) {
|
|
170
218
|
return this.request("DescribeAccountBalance", req, cb);
|
|
171
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* 查询归集规则详情
|
|
222
|
+
*/
|
|
223
|
+
async DescribeGatherRuleDetail(req, cb) {
|
|
224
|
+
return this.request("DescribeGatherRuleDetail", req, cb);
|
|
225
|
+
}
|
|
172
226
|
/**
|
|
173
227
|
* 按日期获取产品用量明细
|
|
174
228
|
*/
|
|
175
229
|
async DescribeDosageDetailByDate(req, cb) {
|
|
176
230
|
return this.request("DescribeDosageDetailByDate", req, cb);
|
|
177
231
|
}
|
|
232
|
+
/**
|
|
233
|
+
* 查询分账目录树
|
|
234
|
+
*/
|
|
235
|
+
async DescribeAllocationTree(req, cb) {
|
|
236
|
+
return this.request("DescribeAllocationTree", req, cb);
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* 查询分账单元详情
|
|
240
|
+
*/
|
|
241
|
+
async DescribeAllocationUnitDetail(req, cb) {
|
|
242
|
+
return this.request("DescribeAllocationUnitDetail", req, cb);
|
|
243
|
+
}
|
|
178
244
|
/**
|
|
179
245
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
180
246
|
*/
|
|
@@ -205,6 +271,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
205
271
|
async DescribeAllocationMonthOverview(req, cb) {
|
|
206
272
|
return this.request("DescribeAllocationMonthOverview", req, cb);
|
|
207
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* 创建公摊规则
|
|
276
|
+
*/
|
|
277
|
+
async CreateAllocationRule(req, cb) {
|
|
278
|
+
return this.request("CreateAllocationRule", req, cb);
|
|
279
|
+
}
|
|
208
280
|
/**
|
|
209
281
|
* 获取按标签汇总费用分布
|
|
210
282
|
*/
|
|
@@ -236,10 +308,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
236
308
|
return this.request("DescribeTagList", req, cb);
|
|
237
309
|
}
|
|
238
310
|
/**
|
|
239
|
-
*
|
|
311
|
+
* 修改分账单元信息
|
|
240
312
|
*/
|
|
241
|
-
async
|
|
242
|
-
return this.request("
|
|
313
|
+
async ModifyAllocationUnit(req, cb) {
|
|
314
|
+
return this.request("ModifyAllocationUnit", req, cb);
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* 查询分账账单按产品汇总
|
|
318
|
+
*/
|
|
319
|
+
async DescribeAllocationSummaryByBusiness(req, cb) {
|
|
320
|
+
return this.request("DescribeAllocationSummaryByBusiness", req, cb);
|
|
243
321
|
}
|
|
244
322
|
/**
|
|
245
323
|
* 支付订单
|
|
@@ -277,6 +355,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
277
355
|
async DescribeBillSummaryByProduct(req, cb) {
|
|
278
356
|
return this.request("DescribeBillSummaryByProduct", req, cb);
|
|
279
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* 编辑公摊规则
|
|
360
|
+
*/
|
|
361
|
+
async ModifyAllocationRule(req, cb) {
|
|
362
|
+
return this.request("ModifyAllocationRule", req, cb);
|
|
363
|
+
}
|
|
280
364
|
/**
|
|
281
365
|
* 查询消耗明细
|
|
282
366
|
|