tencentcloud-sdk-nodejs-billing 4.0.1009 → 4.0.1034
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/README.md +55 -28
- package/package.json +1 -1
- package/src/services/billing/v20180709/billing_client.ts +7 -51
- package/src/services/billing/v20180709/billing_models.ts +0 -229
- package/tencentcloud/services/billing/v20180709/billing_client.d.ts +4 -22
- package/tencentcloud/services/billing/v20180709/billing_client.js +4 -28
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +0 -221
- package/products.md +0 -263
package/README.md
CHANGED
|
@@ -1,36 +1,66 @@
|
|
|
1
1
|
# 简介
|
|
2
2
|
|
|
3
|
-
欢迎使用腾讯云开发者工具套件(SDK),
|
|
4
|
-
为方便
|
|
3
|
+
欢迎使用腾讯云开发者工具套件(SDK),Node.js SDK 4.0 是云 API 3.0 平台的配套工具。
|
|
4
|
+
为方便 Node.js 开发者调试和接入腾讯云产品 API,这里向您介绍适用于 Node.js 的腾讯云开发工具包,并提供首次使用开发工具包的简单示例。让您快速获取腾讯云 Node.js SDK 并开始调用。
|
|
5
5
|
|
|
6
6
|
# 依赖环境
|
|
7
7
|
|
|
8
|
-
1.
|
|
9
|
-
2.
|
|
10
|
-
3. 获取 SecretID、SecretKey 以及调用地址(endpoint),endpoint 一般形式为\*.tencentcloudapi.com,如 CVM 的调用地址为 cvm.tencentcloudapi.com,具体参考各产品说明。
|
|
8
|
+
1. Node.js 10.0.0 版本及以上。
|
|
9
|
+
2. 注意:部分产品需在 [腾讯云控制台](https://console.cloud.tencent.com/) 开通服务后才能使用。
|
|
11
10
|
|
|
12
11
|
# 获取安装
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
使用 SDK 需要 API 密钥,可前往 [腾讯云控制台 - 访问密钥](https://console.cloud.tencent.com/cam/capi) 页面申请,API 密钥包括 SecretID 和 SecretKey,密钥须严格保管,避免泄露。
|
|
15
14
|
|
|
16
|
-
## 通过
|
|
15
|
+
## 通过 npm 安装
|
|
17
16
|
|
|
18
|
-
通过 npm 获取安装是使用
|
|
17
|
+
通过 npm 获取安装是使用 Node.js SDK 的推荐方法,关于 npm 详细可参考 [NPM 官网](https://www.npmjs.com/) 。
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
### 安装指定产品 SDK(推荐)
|
|
20
|
+
|
|
21
|
+
安装 CVM SDK:
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
npm install tencentcloud-sdk-nodejs-cvm --save
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
安装 VPC SDK:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
npm install tencentcloud-sdk-nodejs-vpc --save
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
具体产品的缩写表请参考 [products.md](./products.md) 中的包名字段。
|
|
34
|
+
|
|
35
|
+
安装指定产品 SDK 后,注意修改引入的包名:
|
|
36
|
+
|
|
37
|
+
```diff
|
|
38
|
+
- const tencentcloud = require("tencentcloud-sdk-nodejs")
|
|
39
|
+
+ const { cvm } = require("tencentcloud-sdk-nodejs-cvm")
|
|
40
|
+
|
|
41
|
+
- const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
42
|
+
+ const CvmClient = cvm.v20170312.Client
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### 安装全产品 SDK
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
npm install tencentcloud-sdk-nodejs --save
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
全产品 SDK 包含了所有云产品的调用代码,体积偏大,对体积敏感的场景,推荐安装指定产品 SDK。
|
|
24
52
|
|
|
25
53
|
## 通过源码包安装
|
|
26
54
|
|
|
27
|
-
1. 前往 [
|
|
55
|
+
1. 前往 [GitHub 仓库](https://github.com/tencentcloud/tencentcloud-sdk-nodejs) 或者 [Gitee 仓库](https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs) 下载源码压缩包。
|
|
28
56
|
2. 解压源码包到您项目合适的位置,例如 `sdk/tencentcloud-sdk-nodejs`。
|
|
29
57
|
3. 执行 `npm install ./sdk/tencentcloud-sdk-nodejs`。
|
|
30
|
-
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入
|
|
58
|
+
4. 使用 `require("tencentcloud-sdk-nodejs")` 的方式引入 SDK,具体可参考示例。
|
|
31
59
|
|
|
32
60
|
# 示例
|
|
33
61
|
|
|
62
|
+
以云服务器产品查询可用区列表接口为例。
|
|
63
|
+
|
|
34
64
|
```js
|
|
35
65
|
const tencentcloud = require("tencentcloud-sdk-nodejs")
|
|
36
66
|
|
|
@@ -73,7 +103,7 @@ client.DescribeZones().then(
|
|
|
73
103
|
)
|
|
74
104
|
```
|
|
75
105
|
|
|
76
|
-
在支持
|
|
106
|
+
在支持 TypeScript 项目中,采用如下方式调用
|
|
77
107
|
|
|
78
108
|
```js
|
|
79
109
|
import * as tencentcloud from "tencentcloud-sdk-nodejs"
|
|
@@ -83,10 +113,11 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
83
113
|
// ...
|
|
84
114
|
```
|
|
85
115
|
|
|
86
|
-
|
|
116
|
+
实例化 `Client` 的入参支持 `clientConfig`,数据结构和说明详见 [ClientConfig](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts)。
|
|
87
117
|
|
|
88
118
|
## Common Client
|
|
89
|
-
|
|
119
|
+
|
|
120
|
+
从 4.0.714 版本开始,腾讯云 Node.js SDK 支持使用泛用性的 API 调用方式(Common Client)进行请求。您只需要安装 tencentcloud-sdk-nodejs-common 包,即可向任何产品发起调用。
|
|
90
121
|
|
|
91
122
|
**注意,您必须明确知道您调用的接口所需参数,否则可能会调用失败。**
|
|
92
123
|
|
|
@@ -94,19 +125,19 @@ const CvmClient = tencentcloud.cvm.v20170312.Client
|
|
|
94
125
|
|
|
95
126
|
## 更多示例
|
|
96
127
|
|
|
97
|
-
|
|
128
|
+
请参考 [examples](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/tree/master/examples) 目录。
|
|
98
129
|
|
|
99
130
|
# 相关配置
|
|
100
131
|
|
|
101
132
|
## 代理
|
|
102
133
|
|
|
103
|
-
如果是有代理的环境下,需要配置代理,请在创建Client时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
|
134
|
+
如果是有代理的环境下,需要配置代理,请在创建 Client 时传入 [profile.httpProfile.proxy](https://github.com/TencentCloud/tencentcloud-sdk-nodejs/blob/master/src/common/interface.ts#L78) 参数,或设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
|
104
135
|
|
|
105
136
|
# 凭证管理
|
|
106
137
|
|
|
107
138
|
除显式传入凭证外,从 `v4.0.506` 起支持 [腾讯云实例角色](https://cloud.tencent.com/document/product/213/47668)
|
|
108
139
|
|
|
109
|
-
在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js示例代码](./examples/cvm_role.js) 或 [ts示例代码](./examples/cvm_role.ts)
|
|
140
|
+
在您为实例绑定角色后,您可以在实例中访问相关元数据接口获取临时凭证。用法可参考 [js 示例代码](./examples/cvm_role.js) 或 [ts 示例代码](./examples/cvm_role.ts)
|
|
110
141
|
```javascript
|
|
111
142
|
// ...
|
|
112
143
|
const CvmRoleCredential = require("tencentcloud-sdk-nodejs/tencentcloud/common/cvm_role_credential").default
|
|
@@ -118,20 +149,16 @@ new XxxClient({
|
|
|
118
149
|
})
|
|
119
150
|
```
|
|
120
151
|
|
|
121
|
-
# 旧版 SDK
|
|
122
|
-
|
|
123
|
-
我们推荐使用新版 NODEJS SDK,如果一定要用旧版 SDK,请前往[github 仓库](https://github.com/CFETeam/qcloudapi-sdk)下载。
|
|
124
|
-
|
|
125
152
|
# 常见问题
|
|
126
|
-
- webpack打包出错/浏览器报错
|
|
153
|
+
- webpack 打包出错/浏览器报错
|
|
127
154
|
|
|
128
|
-
请**务必不要**将此
|
|
155
|
+
请**务必不要**将此 SDK 直接用于 Web 前端(包括小程序等),暴露密钥在这些环境非常不安全。
|
|
129
156
|
|
|
130
|
-
正确的做法是在自己的服务端引用此
|
|
157
|
+
正确的做法是在自己的服务端引用此 SDK,并保存好密钥,做好请求鉴权,前端再调用服务端执行业务流程。
|
|
131
158
|
|
|
132
159
|
- `The "original" argument must be of type Function.`
|
|
133
160
|
|
|
134
|
-
通常是因为
|
|
161
|
+
通常是因为 Node.js 版本低于 `v10` ,或处于非 Node.js 环境,请再次确认执行环境。
|
|
135
162
|
|
|
136
163
|
- 请求不通
|
|
137
164
|
|
package/package.json
CHANGED
|
@@ -48,7 +48,6 @@ import {
|
|
|
48
48
|
DescribeDosageCosDetailByDateRequest,
|
|
49
49
|
DeleteAllocationTagRequest,
|
|
50
50
|
DescribeBillSummaryByProductRequest,
|
|
51
|
-
DescribeSavingPlanOverviewResponse,
|
|
52
51
|
BillDistributionResourceSummary,
|
|
53
52
|
BusinessSummaryInfo,
|
|
54
53
|
DescribeDosageDetailListResponse,
|
|
@@ -86,8 +85,6 @@ import {
|
|
|
86
85
|
ConsumptionSummaryTrend,
|
|
87
86
|
DescribeBillDownloadUrlRequest,
|
|
88
87
|
DescribeAllocationSummaryByBusinessRequest,
|
|
89
|
-
CreateSavingPlanOrderResponse,
|
|
90
|
-
SavingPlanOverviewDetail,
|
|
91
88
|
DescribeBillSummaryByPayModeRequest,
|
|
92
89
|
DescribeAllocationBillConditionsRequest,
|
|
93
90
|
ApplicableProducts,
|
|
@@ -99,7 +96,6 @@ import {
|
|
|
99
96
|
DescribeSavingPlanCoverageRequest,
|
|
100
97
|
PayDealsResponse,
|
|
101
98
|
BillDetail,
|
|
102
|
-
CreateSavingPlanOrderRequest,
|
|
103
99
|
DescribeBillDetailResponse,
|
|
104
100
|
Deal,
|
|
105
101
|
DescribeDealsByCondResponse,
|
|
@@ -133,7 +129,6 @@ import {
|
|
|
133
129
|
VoucherInfos,
|
|
134
130
|
DescribeBillSummaryForOrganizationRequest,
|
|
135
131
|
AllocationSummaryByBusiness,
|
|
136
|
-
DescribeSavingPlanOverviewRequest,
|
|
137
132
|
AllocationStat,
|
|
138
133
|
BillProject,
|
|
139
134
|
ActionSummaryOverviewItem,
|
|
@@ -163,7 +158,6 @@ import {
|
|
|
163
158
|
AnalyseConditions,
|
|
164
159
|
CostDetail,
|
|
165
160
|
DescribeBillSummaryByProductResponse,
|
|
166
|
-
SavingPlanUsageDetail,
|
|
167
161
|
DescribeBillSummaryByRegionResponse,
|
|
168
162
|
CreateAllocationTagResponse,
|
|
169
163
|
DescribeBillDownloadUrlResponse,
|
|
@@ -178,14 +172,12 @@ import {
|
|
|
178
172
|
DescribeAccountBalanceResponse,
|
|
179
173
|
DescribeAllocationBillDetailResponse,
|
|
180
174
|
BusinessSummaryOverviewItem,
|
|
181
|
-
DescribeSavingPlanUsageResponse,
|
|
182
175
|
BillTag,
|
|
183
176
|
DescribeAllocateConditionsResponse,
|
|
184
177
|
DescribeDosageDetailListRequest,
|
|
185
178
|
BillComponent,
|
|
186
179
|
DescribeVoucherInfoRequest,
|
|
187
180
|
BillActionType,
|
|
188
|
-
DescribeSavingPlanUsageRequest,
|
|
189
181
|
GatherResourceSummary,
|
|
190
182
|
DescribeSavingPlanResourceInfoResponse,
|
|
191
183
|
DescribeDealsByCondRequest,
|
|
@@ -296,18 +288,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
296
288
|
return this.request("DescribeAllocateConditions", req, cb)
|
|
297
289
|
}
|
|
298
290
|
|
|
299
|
-
/**
|
|
300
|
-
* 接口迁移到其他业务
|
|
301
|
-
|
|
302
|
-
查用当前用户明细节省计划总览查询时段内的使用情况
|
|
303
|
-
*/
|
|
304
|
-
async DescribeSavingPlanOverview(
|
|
305
|
-
req: DescribeSavingPlanOverviewRequest,
|
|
306
|
-
cb?: (error: string, rep: DescribeSavingPlanOverviewResponse) => void
|
|
307
|
-
): Promise<DescribeSavingPlanOverviewResponse> {
|
|
308
|
-
return this.request("DescribeSavingPlanOverview", req, cb)
|
|
309
|
-
}
|
|
310
|
-
|
|
311
291
|
/**
|
|
312
292
|
* 查询分账账单日概览
|
|
313
293
|
*/
|
|
@@ -481,18 +461,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
481
461
|
return this.request("DescribeDosageDetailByDate", req, cb)
|
|
482
462
|
}
|
|
483
463
|
|
|
484
|
-
/**
|
|
485
|
-
* 接口迁移到其他业务
|
|
486
|
-
|
|
487
|
-
查用当前用户明细节省计划查询时段内的使用情况
|
|
488
|
-
*/
|
|
489
|
-
async DescribeSavingPlanUsage(
|
|
490
|
-
req: DescribeSavingPlanUsageRequest,
|
|
491
|
-
cb?: (error: string, rep: DescribeSavingPlanUsageResponse) => void
|
|
492
|
-
): Promise<DescribeSavingPlanUsageResponse> {
|
|
493
|
-
return this.request("DescribeSavingPlanUsage", req, cb)
|
|
494
|
-
}
|
|
495
|
-
|
|
496
464
|
/**
|
|
497
465
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
498
466
|
*/
|
|
@@ -614,15 +582,13 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
614
582
|
}
|
|
615
583
|
|
|
616
584
|
/**
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
): Promise<CreateSavingPlanOrderResponse> {
|
|
625
|
-
return this.request("CreateSavingPlanOrder", req, cb)
|
|
585
|
+
* 获取按产品汇总消耗详情
|
|
586
|
+
*/
|
|
587
|
+
async DescribeCostSummaryByProduct(
|
|
588
|
+
req: DescribeCostSummaryByProductRequest,
|
|
589
|
+
cb?: (error: string, rep: DescribeCostSummaryByProductResponse) => void
|
|
590
|
+
): Promise<DescribeCostSummaryByProductResponse> {
|
|
591
|
+
return this.request("DescribeCostSummaryByProduct", req, cb)
|
|
626
592
|
}
|
|
627
593
|
|
|
628
594
|
/**
|
|
@@ -645,16 +611,6 @@ export class Client extends TencentCloudCommon.AbstractClient {
|
|
|
645
611
|
return this.request("DescribeDealsByCond", req, cb)
|
|
646
612
|
}
|
|
647
613
|
|
|
648
|
-
/**
|
|
649
|
-
* 获取按产品汇总消耗详情
|
|
650
|
-
*/
|
|
651
|
-
async DescribeCostSummaryByProduct(
|
|
652
|
-
req: DescribeCostSummaryByProductRequest,
|
|
653
|
-
cb?: (error: string, rep: DescribeCostSummaryByProductResponse) => void
|
|
654
|
-
): Promise<DescribeCostSummaryByProductResponse> {
|
|
655
|
-
return this.request("DescribeCostSummaryByProduct", req, cb)
|
|
656
|
-
}
|
|
657
|
-
|
|
658
614
|
/**
|
|
659
615
|
* 查询分账账单按组件汇总
|
|
660
616
|
*/
|
|
@@ -1251,24 +1251,6 @@ adjustment-调账
|
|
|
1251
1251
|
PayType?: string
|
|
1252
1252
|
}
|
|
1253
1253
|
|
|
1254
|
-
/**
|
|
1255
|
-
* DescribeSavingPlanOverview返回参数结构体
|
|
1256
|
-
*/
|
|
1257
|
-
export interface DescribeSavingPlanOverviewResponse {
|
|
1258
|
-
/**
|
|
1259
|
-
* 节省计划总览明细数据
|
|
1260
|
-
*/
|
|
1261
|
-
Overviews?: Array<SavingPlanOverviewDetail>
|
|
1262
|
-
/**
|
|
1263
|
-
* 查询命中的节省计划总览明细数据总条数
|
|
1264
|
-
*/
|
|
1265
|
-
Total?: number
|
|
1266
|
-
/**
|
|
1267
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1268
|
-
*/
|
|
1269
|
-
RequestId?: string
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
1254
|
/**
|
|
1273
1255
|
* 经销账单资源汇总数据对象
|
|
1274
1256
|
*/
|
|
@@ -2728,62 +2710,6 @@ Trend - 环比(折后总额)
|
|
|
2728
2710
|
SearchKey?: string
|
|
2729
2711
|
}
|
|
2730
2712
|
|
|
2731
|
-
/**
|
|
2732
|
-
* CreateSavingPlanOrder返回参数结构体
|
|
2733
|
-
*/
|
|
2734
|
-
export interface CreateSavingPlanOrderResponse {
|
|
2735
|
-
/**
|
|
2736
|
-
* 订单号
|
|
2737
|
-
*/
|
|
2738
|
-
BigDealId?: string
|
|
2739
|
-
/**
|
|
2740
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2741
|
-
*/
|
|
2742
|
-
RequestId?: string
|
|
2743
|
-
}
|
|
2744
|
-
|
|
2745
|
-
/**
|
|
2746
|
-
* 节省计划总览明细数据
|
|
2747
|
-
*/
|
|
2748
|
-
export interface SavingPlanOverviewDetail {
|
|
2749
|
-
/**
|
|
2750
|
-
* 节省计划类型
|
|
2751
|
-
*/
|
|
2752
|
-
SpType?: string
|
|
2753
|
-
/**
|
|
2754
|
-
* 支付类型
|
|
2755
|
-
*/
|
|
2756
|
-
PayType?: number
|
|
2757
|
-
/**
|
|
2758
|
-
* 支付金额(单位:元)
|
|
2759
|
-
*/
|
|
2760
|
-
PayAmount?: string
|
|
2761
|
-
/**
|
|
2762
|
-
* 开始时间 yyyy-mm-dd HH:mm:ss格式
|
|
2763
|
-
*/
|
|
2764
|
-
StartTime?: string
|
|
2765
|
-
/**
|
|
2766
|
-
* 结束时间 yyyy-mm-dd HH:mm:ss格式
|
|
2767
|
-
*/
|
|
2768
|
-
EndTime?: string
|
|
2769
|
-
/**
|
|
2770
|
-
* 购买时间 yyyy-mm-dd HH:mm:ss格式
|
|
2771
|
-
*/
|
|
2772
|
-
BuyTime?: string
|
|
2773
|
-
/**
|
|
2774
|
-
* 状态
|
|
2775
|
-
*/
|
|
2776
|
-
Status?: number
|
|
2777
|
-
/**
|
|
2778
|
-
* 累计节省金额(单位:元)
|
|
2779
|
-
*/
|
|
2780
|
-
SavingAmount?: string
|
|
2781
|
-
/**
|
|
2782
|
-
* 地域
|
|
2783
|
-
*/
|
|
2784
|
-
Region?: Array<string>
|
|
2785
|
-
}
|
|
2786
|
-
|
|
2787
2713
|
/**
|
|
2788
2714
|
* DescribeBillSummaryByPayMode请求参数结构体
|
|
2789
2715
|
*/
|
|
@@ -3433,48 +3359,6 @@ export interface BillDetail {
|
|
|
3433
3359
|
DiscountContent?: string
|
|
3434
3360
|
}
|
|
3435
3361
|
|
|
3436
|
-
/**
|
|
3437
|
-
* CreateSavingPlanOrder请求参数结构体
|
|
3438
|
-
*/
|
|
3439
|
-
export interface CreateSavingPlanOrderRequest {
|
|
3440
|
-
/**
|
|
3441
|
-
* 地域编码
|
|
3442
|
-
*/
|
|
3443
|
-
RegionId: number
|
|
3444
|
-
/**
|
|
3445
|
-
* 区域编码
|
|
3446
|
-
*/
|
|
3447
|
-
ZoneId: number
|
|
3448
|
-
/**
|
|
3449
|
-
* 预付费类型
|
|
3450
|
-
*/
|
|
3451
|
-
PrePayType: string
|
|
3452
|
-
/**
|
|
3453
|
-
* 时长
|
|
3454
|
-
*/
|
|
3455
|
-
TimeSpan: number
|
|
3456
|
-
/**
|
|
3457
|
-
* 时长单位
|
|
3458
|
-
*/
|
|
3459
|
-
TimeUnit: string
|
|
3460
|
-
/**
|
|
3461
|
-
* 商品唯一标识
|
|
3462
|
-
*/
|
|
3463
|
-
CommodityCode: string
|
|
3464
|
-
/**
|
|
3465
|
-
* 承诺时长内的小额金额(单位:元)
|
|
3466
|
-
*/
|
|
3467
|
-
PromiseUseAmount: number
|
|
3468
|
-
/**
|
|
3469
|
-
* 节省计划的指定生效时间,若不传则为当前下单时间。传参数格式:"2023-10-01 00:00:00",仅支持指定日期的0点时刻
|
|
3470
|
-
*/
|
|
3471
|
-
SpecifyEffectTime?: string
|
|
3472
|
-
/**
|
|
3473
|
-
* 可重入ID
|
|
3474
|
-
*/
|
|
3475
|
-
ClientToken?: string
|
|
3476
|
-
}
|
|
3477
|
-
|
|
3478
3362
|
/**
|
|
3479
3363
|
* DescribeBillDetail返回参数结构体
|
|
3480
3364
|
*/
|
|
@@ -5050,28 +4934,6 @@ none - 平稳
|
|
|
5050
4934
|
AllocationRealTotalCost?: string
|
|
5051
4935
|
}
|
|
5052
4936
|
|
|
5053
|
-
/**
|
|
5054
|
-
* DescribeSavingPlanOverview请求参数结构体
|
|
5055
|
-
*/
|
|
5056
|
-
export interface DescribeSavingPlanOverviewRequest {
|
|
5057
|
-
/**
|
|
5058
|
-
* 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
|
|
5059
|
-
*/
|
|
5060
|
-
StartDate: string
|
|
5061
|
-
/**
|
|
5062
|
-
* 结束时间,格式yyyy-MM-dd
|
|
5063
|
-
*/
|
|
5064
|
-
EndDate: string
|
|
5065
|
-
/**
|
|
5066
|
-
* 分页偏移量
|
|
5067
|
-
*/
|
|
5068
|
-
Offset: number
|
|
5069
|
-
/**
|
|
5070
|
-
* 每页数量,最大值为200
|
|
5071
|
-
*/
|
|
5072
|
-
Limit: number
|
|
5073
|
-
}
|
|
5074
|
-
|
|
5075
4937
|
/**
|
|
5076
4938
|
* 分账账单趋势图
|
|
5077
4939
|
*/
|
|
@@ -6164,53 +6026,6 @@ export interface DescribeBillSummaryByProductResponse {
|
|
|
6164
6026
|
RequestId?: string
|
|
6165
6027
|
}
|
|
6166
6028
|
|
|
6167
|
-
/**
|
|
6168
|
-
* 节省计划使用率数据
|
|
6169
|
-
*/
|
|
6170
|
-
export interface SavingPlanUsageDetail {
|
|
6171
|
-
/**
|
|
6172
|
-
* 节省计划类型
|
|
6173
|
-
*/
|
|
6174
|
-
SpType?: string
|
|
6175
|
-
/**
|
|
6176
|
-
* 节省计划状态
|
|
6177
|
-
*/
|
|
6178
|
-
Status?: number
|
|
6179
|
-
/**
|
|
6180
|
-
* 累计抵扣的金额(单位:元)
|
|
6181
|
-
*/
|
|
6182
|
-
DeductAmount?: string
|
|
6183
|
-
/**
|
|
6184
|
-
* 累计承诺消费金额(单位:元)
|
|
6185
|
-
*/
|
|
6186
|
-
PromiseAmount?: string
|
|
6187
|
-
/**
|
|
6188
|
-
* 累计净节省金额(单位:元)
|
|
6189
|
-
*/
|
|
6190
|
-
NetSavings?: string
|
|
6191
|
-
/**
|
|
6192
|
-
* 使用率
|
|
6193
|
-
*/
|
|
6194
|
-
UtilizationRate?: number
|
|
6195
|
-
/**
|
|
6196
|
-
* 累计流失金额(单位:元)
|
|
6197
|
-
*/
|
|
6198
|
-
LossAmount?: string
|
|
6199
|
-
/**
|
|
6200
|
-
* 累计按量计费预期金额(单位:元)
|
|
6201
|
-
*/
|
|
6202
|
-
DosageAmount?: string
|
|
6203
|
-
/**
|
|
6204
|
-
* 累计成本金额(单位:元)
|
|
6205
|
-
*/
|
|
6206
|
-
CostAmount?: string
|
|
6207
|
-
/**
|
|
6208
|
-
* 地域
|
|
6209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6210
|
-
*/
|
|
6211
|
-
Region?: Array<string>
|
|
6212
|
-
}
|
|
6213
|
-
|
|
6214
6029
|
/**
|
|
6215
6030
|
* DescribeBillSummaryByRegion返回参数结构体
|
|
6216
6031
|
*/
|
|
@@ -6841,24 +6656,6 @@ export interface BusinessSummaryOverviewItem {
|
|
|
6841
6656
|
TotalCost?: string
|
|
6842
6657
|
}
|
|
6843
6658
|
|
|
6844
|
-
/**
|
|
6845
|
-
* DescribeSavingPlanUsage返回参数结构体
|
|
6846
|
-
*/
|
|
6847
|
-
export interface DescribeSavingPlanUsageResponse {
|
|
6848
|
-
/**
|
|
6849
|
-
* 节省计划使用率数据
|
|
6850
|
-
*/
|
|
6851
|
-
Usages?: Array<SavingPlanUsageDetail>
|
|
6852
|
-
/**
|
|
6853
|
-
* 查询命中的节省计划总览明细数据总条数
|
|
6854
|
-
*/
|
|
6855
|
-
Total?: number
|
|
6856
|
-
/**
|
|
6857
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6858
|
-
*/
|
|
6859
|
-
RequestId?: string
|
|
6860
|
-
}
|
|
6861
|
-
|
|
6862
6659
|
/**
|
|
6863
6660
|
* 标签筛选列表
|
|
6864
6661
|
*/
|
|
@@ -7110,32 +6907,6 @@ export interface BillActionType {
|
|
|
7110
6907
|
ActionTypeName: string
|
|
7111
6908
|
}
|
|
7112
6909
|
|
|
7113
|
-
/**
|
|
7114
|
-
* DescribeSavingPlanUsage请求参数结构体
|
|
7115
|
-
*/
|
|
7116
|
-
export interface DescribeSavingPlanUsageRequest {
|
|
7117
|
-
/**
|
|
7118
|
-
* 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
|
|
7119
|
-
*/
|
|
7120
|
-
StartDate: string
|
|
7121
|
-
/**
|
|
7122
|
-
* 结束时间,格式yyyy-MM-dd
|
|
7123
|
-
*/
|
|
7124
|
-
EndDate: string
|
|
7125
|
-
/**
|
|
7126
|
-
* 分页偏移量
|
|
7127
|
-
*/
|
|
7128
|
-
Offset: number
|
|
7129
|
-
/**
|
|
7130
|
-
* 每页数量,最大值为200
|
|
7131
|
-
*/
|
|
7132
|
-
Limit: number
|
|
7133
|
-
/**
|
|
7134
|
-
* 查询结果数据的时间间隔
|
|
7135
|
-
*/
|
|
7136
|
-
TimeInterval: string
|
|
7137
|
-
}
|
|
7138
|
-
|
|
7139
6910
|
/**
|
|
7140
6911
|
* 资源归集汇总
|
|
7141
6912
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse, DeleteAllocationTagResponse, DescribeBillDetailForOrganizationResponse, DescribeCostSummaryByResourceResponse, DescribeBillSummaryByRegionRequest, DescribeAllocateConditionsRequest, DescribeBillSummaryRequest, DescribeBillResourceSummaryResponse, DescribeAllocationOverviewResponse, DescribeDosageCosDetailByDateRequest, DeleteAllocationTagRequest, DescribeBillSummaryByProductRequest,
|
|
2
|
+
import { DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse, DeleteAllocationTagResponse, DescribeBillDetailForOrganizationResponse, DescribeCostSummaryByResourceResponse, DescribeBillSummaryByRegionRequest, DescribeAllocateConditionsRequest, DescribeBillSummaryRequest, DescribeBillResourceSummaryResponse, DescribeAllocationOverviewResponse, DescribeDosageCosDetailByDateRequest, DeleteAllocationTagRequest, DescribeBillSummaryByProductRequest, DescribeDosageDetailListResponse, DescribeAllocationBillDetailRequest, DescribeBillListRequest, DescribeAllocationTrendByMonthRequest, DescribeVoucherUsageDetailsResponse, DescribeAllocationOverviewRequest, DescribeGatherResourceResponse, DescribeCostDetailResponse, DescribeAllocationMonthOverviewResponse, DescribeAllocationSummaryByItemResponse, DescribeDosageDetailByDateResponse, DescribeDosageDetailByDateRequest, DescribeGatherResourceRequest, DescribeCostSummaryByProjectResponse, DescribeBillSummaryByTagResponse, DescribeBillSummaryByPayModeResponse, DescribeAllocationSummaryByBusinessResponse, DescribeAllocationSummaryByItemRequest, DescribeBillSummaryByTagRequest, DescribeSavingPlanCoverageResponse, DescribeBillSummaryByProjectRequest, DescribeBillResourceSummaryForOrganizationRequest, DescribeCostSummaryByRegionRequest, DescribeBillDownloadUrlRequest, DescribeAllocationSummaryByBusinessRequest, DescribeBillSummaryByPayModeRequest, DescribeAllocationBillConditionsRequest, DescribeSavingPlanCoverageRequest, PayDealsResponse, DescribeBillDetailResponse, DescribeDealsByCondResponse, DescribeBillSummaryByProjectResponse, DescribeBillAdjustInfoRequest, PayDealsRequest, DescribeAllocationBillConditionsResponse, DescribeAllocationMonthOverviewRequest, DescribeBillSummaryResponse, DescribeBillSummaryForOrganizationRequest, DescribeBillDetailForOrganizationRequest, DescribeVoucherUsageDetailsRequest, DescribeBillResourceSummaryRequest, DescribeCostDetailRequest, DescribeAllocationSummaryByResourceRequest, DescribeBillSummaryForOrganizationResponse, DescribeTagListRequest, DescribeBillResourceSummaryForOrganizationResponse, DescribeCostSummaryByProjectRequest, DescribeCostSummaryByResourceRequest, CreateAllocationTagRequest, DescribeBillSummaryByProductResponse, DescribeBillSummaryByRegionResponse, CreateAllocationTagResponse, DescribeBillDownloadUrlResponse, DescribeAccountBalanceRequest, DescribeBillDetailRequest, DescribeSavingPlanResourceInfoRequest, DescribeVoucherInfoResponse, DescribeBillListResponse, DescribeAccountBalanceResponse, DescribeAllocationBillDetailResponse, DescribeAllocateConditionsResponse, DescribeDosageDetailListRequest, DescribeVoucherInfoRequest, DescribeSavingPlanResourceInfoResponse, DescribeDealsByCondRequest, DescribeAllocationSummaryByResourceResponse, DescribeDosageCosDetailByDateResponse, DescribeTagListResponse, DescribeAllocationTrendByMonthResponse, DescribeCostSummaryByRegionResponse } from "./billing_models";
|
|
3
3
|
/**
|
|
4
4
|
* billing client
|
|
5
5
|
* @class
|
|
@@ -39,12 +39,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
39
39
|
* 查询资源目录筛选条件
|
|
40
40
|
*/
|
|
41
41
|
DescribeAllocateConditions(req: DescribeAllocateConditionsRequest, cb?: (error: string, rep: DescribeAllocateConditionsResponse) => void): Promise<DescribeAllocateConditionsResponse>;
|
|
42
|
-
/**
|
|
43
|
-
* 接口迁移到其他业务
|
|
44
|
-
|
|
45
|
-
查用当前用户明细节省计划总览查询时段内的使用情况
|
|
46
|
-
*/
|
|
47
|
-
DescribeSavingPlanOverview(req: DescribeSavingPlanOverviewRequest, cb?: (error: string, rep: DescribeSavingPlanOverviewResponse) => void): Promise<DescribeSavingPlanOverviewResponse>;
|
|
48
42
|
/**
|
|
49
43
|
* 查询分账账单日概览
|
|
50
44
|
*/
|
|
@@ -116,12 +110,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
116
110
|
* 按日期获取产品用量明细
|
|
117
111
|
*/
|
|
118
112
|
DescribeDosageDetailByDate(req: DescribeDosageDetailByDateRequest, cb?: (error: string, rep: DescribeDosageDetailByDateResponse) => void): Promise<DescribeDosageDetailByDateResponse>;
|
|
119
|
-
/**
|
|
120
|
-
* 接口迁移到其他业务
|
|
121
|
-
|
|
122
|
-
查用当前用户明细节省计划查询时段内的使用情况
|
|
123
|
-
*/
|
|
124
|
-
DescribeSavingPlanUsage(req: DescribeSavingPlanUsageRequest, cb?: (error: string, rep: DescribeSavingPlanUsageResponse) => void): Promise<DescribeSavingPlanUsageResponse>;
|
|
125
113
|
/**
|
|
126
114
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
127
115
|
*/
|
|
@@ -171,11 +159,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
171
159
|
*/
|
|
172
160
|
PayDeals(req: PayDealsRequest, cb?: (error: string, rep: PayDealsResponse) => void): Promise<PayDealsResponse>;
|
|
173
161
|
/**
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
*/
|
|
178
|
-
CreateSavingPlanOrder(req: CreateSavingPlanOrderRequest, cb?: (error: string, rep: CreateSavingPlanOrderResponse) => void): Promise<CreateSavingPlanOrderResponse>;
|
|
162
|
+
* 获取按产品汇总消耗详情
|
|
163
|
+
*/
|
|
164
|
+
DescribeCostSummaryByProduct(req: DescribeCostSummaryByProductRequest, cb?: (error: string, rep: DescribeCostSummaryByProductResponse) => void): Promise<DescribeCostSummaryByProductResponse>;
|
|
179
165
|
/**
|
|
180
166
|
* 批量取消设置分账标签
|
|
181
167
|
*/
|
|
@@ -184,10 +170,6 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
184
170
|
* 查询订单
|
|
185
171
|
*/
|
|
186
172
|
DescribeDealsByCond(req: DescribeDealsByCondRequest, cb?: (error: string, rep: DescribeDealsByCondResponse) => void): Promise<DescribeDealsByCondResponse>;
|
|
187
|
-
/**
|
|
188
|
-
* 获取按产品汇总消耗详情
|
|
189
|
-
*/
|
|
190
|
-
DescribeCostSummaryByProduct(req: DescribeCostSummaryByProductRequest, cb?: (error: string, rep: DescribeCostSummaryByProductResponse) => void): Promise<DescribeCostSummaryByProductResponse>;
|
|
191
173
|
/**
|
|
192
174
|
* 查询分账账单按组件汇总
|
|
193
175
|
*/
|
|
@@ -76,14 +76,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
76
76
|
async DescribeAllocateConditions(req, cb) {
|
|
77
77
|
return this.request("DescribeAllocateConditions", req, cb);
|
|
78
78
|
}
|
|
79
|
-
/**
|
|
80
|
-
* 接口迁移到其他业务
|
|
81
|
-
|
|
82
|
-
查用当前用户明细节省计划总览查询时段内的使用情况
|
|
83
|
-
*/
|
|
84
|
-
async DescribeSavingPlanOverview(req, cb) {
|
|
85
|
-
return this.request("DescribeSavingPlanOverview", req, cb);
|
|
86
|
-
}
|
|
87
79
|
/**
|
|
88
80
|
* 查询分账账单日概览
|
|
89
81
|
*/
|
|
@@ -189,14 +181,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
189
181
|
async DescribeDosageDetailByDate(req, cb) {
|
|
190
182
|
return this.request("DescribeDosageDetailByDate", req, cb);
|
|
191
183
|
}
|
|
192
|
-
/**
|
|
193
|
-
* 接口迁移到其他业务
|
|
194
|
-
|
|
195
|
-
查用当前用户明细节省计划查询时段内的使用情况
|
|
196
|
-
*/
|
|
197
|
-
async DescribeSavingPlanUsage(req, cb) {
|
|
198
|
-
return this.request("DescribeSavingPlanUsage", req, cb);
|
|
199
|
-
}
|
|
200
184
|
/**
|
|
201
185
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
202
186
|
*/
|
|
@@ -270,12 +254,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
270
254
|
return this.request("PayDeals", req, cb);
|
|
271
255
|
}
|
|
272
256
|
/**
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
async CreateSavingPlanOrder(req, cb) {
|
|
278
|
-
return this.request("CreateSavingPlanOrder", req, cb);
|
|
257
|
+
* 获取按产品汇总消耗详情
|
|
258
|
+
*/
|
|
259
|
+
async DescribeCostSummaryByProduct(req, cb) {
|
|
260
|
+
return this.request("DescribeCostSummaryByProduct", req, cb);
|
|
279
261
|
}
|
|
280
262
|
/**
|
|
281
263
|
* 批量取消设置分账标签
|
|
@@ -289,12 +271,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
289
271
|
async DescribeDealsByCond(req, cb) {
|
|
290
272
|
return this.request("DescribeDealsByCond", req, cb);
|
|
291
273
|
}
|
|
292
|
-
/**
|
|
293
|
-
* 获取按产品汇总消耗详情
|
|
294
|
-
*/
|
|
295
|
-
async DescribeCostSummaryByProduct(req, cb) {
|
|
296
|
-
return this.request("DescribeCostSummaryByProduct", req, cb);
|
|
297
|
-
}
|
|
298
274
|
/**
|
|
299
275
|
* 查询分账账单按组件汇总
|
|
300
276
|
*/
|
|
@@ -1203,23 +1203,6 @@ export interface DescribeBillSummaryByProductRequest {
|
|
|
1203
1203
|
*/
|
|
1204
1204
|
PayType?: string;
|
|
1205
1205
|
}
|
|
1206
|
-
/**
|
|
1207
|
-
* DescribeSavingPlanOverview返回参数结构体
|
|
1208
|
-
*/
|
|
1209
|
-
export interface DescribeSavingPlanOverviewResponse {
|
|
1210
|
-
/**
|
|
1211
|
-
* 节省计划总览明细数据
|
|
1212
|
-
*/
|
|
1213
|
-
Overviews?: Array<SavingPlanOverviewDetail>;
|
|
1214
|
-
/**
|
|
1215
|
-
* 查询命中的节省计划总览明细数据总条数
|
|
1216
|
-
*/
|
|
1217
|
-
Total?: number;
|
|
1218
|
-
/**
|
|
1219
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1220
|
-
*/
|
|
1221
|
-
RequestId?: string;
|
|
1222
|
-
}
|
|
1223
1206
|
/**
|
|
1224
1207
|
* 经销账单资源汇总数据对象
|
|
1225
1208
|
*/
|
|
@@ -2642,60 +2625,6 @@ export interface DescribeAllocationSummaryByBusinessRequest {
|
|
|
2642
2625
|
*/
|
|
2643
2626
|
SearchKey?: string;
|
|
2644
2627
|
}
|
|
2645
|
-
/**
|
|
2646
|
-
* CreateSavingPlanOrder返回参数结构体
|
|
2647
|
-
*/
|
|
2648
|
-
export interface CreateSavingPlanOrderResponse {
|
|
2649
|
-
/**
|
|
2650
|
-
* 订单号
|
|
2651
|
-
*/
|
|
2652
|
-
BigDealId?: string;
|
|
2653
|
-
/**
|
|
2654
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2655
|
-
*/
|
|
2656
|
-
RequestId?: string;
|
|
2657
|
-
}
|
|
2658
|
-
/**
|
|
2659
|
-
* 节省计划总览明细数据
|
|
2660
|
-
*/
|
|
2661
|
-
export interface SavingPlanOverviewDetail {
|
|
2662
|
-
/**
|
|
2663
|
-
* 节省计划类型
|
|
2664
|
-
*/
|
|
2665
|
-
SpType?: string;
|
|
2666
|
-
/**
|
|
2667
|
-
* 支付类型
|
|
2668
|
-
*/
|
|
2669
|
-
PayType?: number;
|
|
2670
|
-
/**
|
|
2671
|
-
* 支付金额(单位:元)
|
|
2672
|
-
*/
|
|
2673
|
-
PayAmount?: string;
|
|
2674
|
-
/**
|
|
2675
|
-
* 开始时间 yyyy-mm-dd HH:mm:ss格式
|
|
2676
|
-
*/
|
|
2677
|
-
StartTime?: string;
|
|
2678
|
-
/**
|
|
2679
|
-
* 结束时间 yyyy-mm-dd HH:mm:ss格式
|
|
2680
|
-
*/
|
|
2681
|
-
EndTime?: string;
|
|
2682
|
-
/**
|
|
2683
|
-
* 购买时间 yyyy-mm-dd HH:mm:ss格式
|
|
2684
|
-
*/
|
|
2685
|
-
BuyTime?: string;
|
|
2686
|
-
/**
|
|
2687
|
-
* 状态
|
|
2688
|
-
*/
|
|
2689
|
-
Status?: number;
|
|
2690
|
-
/**
|
|
2691
|
-
* 累计节省金额(单位:元)
|
|
2692
|
-
*/
|
|
2693
|
-
SavingAmount?: string;
|
|
2694
|
-
/**
|
|
2695
|
-
* 地域
|
|
2696
|
-
*/
|
|
2697
|
-
Region?: Array<string>;
|
|
2698
|
-
}
|
|
2699
2628
|
/**
|
|
2700
2629
|
* DescribeBillSummaryByPayMode请求参数结构体
|
|
2701
2630
|
*/
|
|
@@ -3334,47 +3263,6 @@ export interface BillDetail {
|
|
|
3334
3263
|
*/
|
|
3335
3264
|
DiscountContent?: string;
|
|
3336
3265
|
}
|
|
3337
|
-
/**
|
|
3338
|
-
* CreateSavingPlanOrder请求参数结构体
|
|
3339
|
-
*/
|
|
3340
|
-
export interface CreateSavingPlanOrderRequest {
|
|
3341
|
-
/**
|
|
3342
|
-
* 地域编码
|
|
3343
|
-
*/
|
|
3344
|
-
RegionId: number;
|
|
3345
|
-
/**
|
|
3346
|
-
* 区域编码
|
|
3347
|
-
*/
|
|
3348
|
-
ZoneId: number;
|
|
3349
|
-
/**
|
|
3350
|
-
* 预付费类型
|
|
3351
|
-
*/
|
|
3352
|
-
PrePayType: string;
|
|
3353
|
-
/**
|
|
3354
|
-
* 时长
|
|
3355
|
-
*/
|
|
3356
|
-
TimeSpan: number;
|
|
3357
|
-
/**
|
|
3358
|
-
* 时长单位
|
|
3359
|
-
*/
|
|
3360
|
-
TimeUnit: string;
|
|
3361
|
-
/**
|
|
3362
|
-
* 商品唯一标识
|
|
3363
|
-
*/
|
|
3364
|
-
CommodityCode: string;
|
|
3365
|
-
/**
|
|
3366
|
-
* 承诺时长内的小额金额(单位:元)
|
|
3367
|
-
*/
|
|
3368
|
-
PromiseUseAmount: number;
|
|
3369
|
-
/**
|
|
3370
|
-
* 节省计划的指定生效时间,若不传则为当前下单时间。传参数格式:"2023-10-01 00:00:00",仅支持指定日期的0点时刻
|
|
3371
|
-
*/
|
|
3372
|
-
SpecifyEffectTime?: string;
|
|
3373
|
-
/**
|
|
3374
|
-
* 可重入ID
|
|
3375
|
-
*/
|
|
3376
|
-
ClientToken?: string;
|
|
3377
|
-
}
|
|
3378
3266
|
/**
|
|
3379
3267
|
* DescribeBillDetail返回参数结构体
|
|
3380
3268
|
*/
|
|
@@ -4917,27 +4805,6 @@ export interface AllocationSummaryByBusiness {
|
|
|
4917
4805
|
*/
|
|
4918
4806
|
AllocationRealTotalCost?: string;
|
|
4919
4807
|
}
|
|
4920
|
-
/**
|
|
4921
|
-
* DescribeSavingPlanOverview请求参数结构体
|
|
4922
|
-
*/
|
|
4923
|
-
export interface DescribeSavingPlanOverviewRequest {
|
|
4924
|
-
/**
|
|
4925
|
-
* 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
|
|
4926
|
-
*/
|
|
4927
|
-
StartDate: string;
|
|
4928
|
-
/**
|
|
4929
|
-
* 结束时间,格式yyyy-MM-dd
|
|
4930
|
-
*/
|
|
4931
|
-
EndDate: string;
|
|
4932
|
-
/**
|
|
4933
|
-
* 分页偏移量
|
|
4934
|
-
*/
|
|
4935
|
-
Offset: number;
|
|
4936
|
-
/**
|
|
4937
|
-
* 每页数量,最大值为200
|
|
4938
|
-
*/
|
|
4939
|
-
Limit: number;
|
|
4940
|
-
}
|
|
4941
4808
|
/**
|
|
4942
4809
|
* 分账账单趋势图
|
|
4943
4810
|
*/
|
|
@@ -6001,52 +5868,6 @@ export interface DescribeBillSummaryByProductResponse {
|
|
|
6001
5868
|
*/
|
|
6002
5869
|
RequestId?: string;
|
|
6003
5870
|
}
|
|
6004
|
-
/**
|
|
6005
|
-
* 节省计划使用率数据
|
|
6006
|
-
*/
|
|
6007
|
-
export interface SavingPlanUsageDetail {
|
|
6008
|
-
/**
|
|
6009
|
-
* 节省计划类型
|
|
6010
|
-
*/
|
|
6011
|
-
SpType?: string;
|
|
6012
|
-
/**
|
|
6013
|
-
* 节省计划状态
|
|
6014
|
-
*/
|
|
6015
|
-
Status?: number;
|
|
6016
|
-
/**
|
|
6017
|
-
* 累计抵扣的金额(单位:元)
|
|
6018
|
-
*/
|
|
6019
|
-
DeductAmount?: string;
|
|
6020
|
-
/**
|
|
6021
|
-
* 累计承诺消费金额(单位:元)
|
|
6022
|
-
*/
|
|
6023
|
-
PromiseAmount?: string;
|
|
6024
|
-
/**
|
|
6025
|
-
* 累计净节省金额(单位:元)
|
|
6026
|
-
*/
|
|
6027
|
-
NetSavings?: string;
|
|
6028
|
-
/**
|
|
6029
|
-
* 使用率
|
|
6030
|
-
*/
|
|
6031
|
-
UtilizationRate?: number;
|
|
6032
|
-
/**
|
|
6033
|
-
* 累计流失金额(单位:元)
|
|
6034
|
-
*/
|
|
6035
|
-
LossAmount?: string;
|
|
6036
|
-
/**
|
|
6037
|
-
* 累计按量计费预期金额(单位:元)
|
|
6038
|
-
*/
|
|
6039
|
-
DosageAmount?: string;
|
|
6040
|
-
/**
|
|
6041
|
-
* 累计成本金额(单位:元)
|
|
6042
|
-
*/
|
|
6043
|
-
CostAmount?: string;
|
|
6044
|
-
/**
|
|
6045
|
-
* 地域
|
|
6046
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6047
|
-
*/
|
|
6048
|
-
Region?: Array<string>;
|
|
6049
|
-
}
|
|
6050
5871
|
/**
|
|
6051
5872
|
* DescribeBillSummaryByRegion返回参数结构体
|
|
6052
5873
|
*/
|
|
@@ -6663,23 +6484,6 @@ export interface BusinessSummaryOverviewItem {
|
|
|
6663
6484
|
*/
|
|
6664
6485
|
TotalCost?: string;
|
|
6665
6486
|
}
|
|
6666
|
-
/**
|
|
6667
|
-
* DescribeSavingPlanUsage返回参数结构体
|
|
6668
|
-
*/
|
|
6669
|
-
export interface DescribeSavingPlanUsageResponse {
|
|
6670
|
-
/**
|
|
6671
|
-
* 节省计划使用率数据
|
|
6672
|
-
*/
|
|
6673
|
-
Usages?: Array<SavingPlanUsageDetail>;
|
|
6674
|
-
/**
|
|
6675
|
-
* 查询命中的节省计划总览明细数据总条数
|
|
6676
|
-
*/
|
|
6677
|
-
Total?: number;
|
|
6678
|
-
/**
|
|
6679
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6680
|
-
*/
|
|
6681
|
-
RequestId?: string;
|
|
6682
|
-
}
|
|
6683
6487
|
/**
|
|
6684
6488
|
* 标签筛选列表
|
|
6685
6489
|
*/
|
|
@@ -6925,31 +6729,6 @@ export interface BillActionType {
|
|
|
6925
6729
|
*/
|
|
6926
6730
|
ActionTypeName: string;
|
|
6927
6731
|
}
|
|
6928
|
-
/**
|
|
6929
|
-
* DescribeSavingPlanUsage请求参数结构体
|
|
6930
|
-
*/
|
|
6931
|
-
export interface DescribeSavingPlanUsageRequest {
|
|
6932
|
-
/**
|
|
6933
|
-
* 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
|
|
6934
|
-
*/
|
|
6935
|
-
StartDate: string;
|
|
6936
|
-
/**
|
|
6937
|
-
* 结束时间,格式yyyy-MM-dd
|
|
6938
|
-
*/
|
|
6939
|
-
EndDate: string;
|
|
6940
|
-
/**
|
|
6941
|
-
* 分页偏移量
|
|
6942
|
-
*/
|
|
6943
|
-
Offset: number;
|
|
6944
|
-
/**
|
|
6945
|
-
* 每页数量,最大值为200
|
|
6946
|
-
*/
|
|
6947
|
-
Limit: number;
|
|
6948
|
-
/**
|
|
6949
|
-
* 查询结果数据的时间间隔
|
|
6950
|
-
*/
|
|
6951
|
-
TimeInterval: string;
|
|
6952
|
-
}
|
|
6953
6732
|
/**
|
|
6954
6733
|
* 资源归集汇总
|
|
6955
6734
|
*/
|
package/products.md
DELETED
|
@@ -1,263 +0,0 @@
|
|
|
1
|
-
| 包名 | 产品中文名 | 更新时间 |
|
|
2
|
-
|-|-|-|
|
|
3
|
-
| aa | [活动防刷](https://cloud.tencent.com/document/product/1189) | 2023-05-18 01:01:13 |
|
|
4
|
-
| aai | [](https://cloud.tencent.com/document/product) | 2019-08-08 23:15:13 |
|
|
5
|
-
| aca | [AI 临床助手](https://cloud.tencent.com/document/product/1388) | 2025-01-09 01:08:36 |
|
|
6
|
-
| acp | [应用合规平台](https://cloud.tencent.com/document/product/1553) | 2024-11-01 01:03:06 |
|
|
7
|
-
| advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2024-10-15 01:02:26 |
|
|
8
|
-
| af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2024-11-22 11:20:38 |
|
|
9
|
-
| afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2024-05-31 01:07:25 |
|
|
10
|
-
| aiart | [大模型图像创作引擎](https://cloud.tencent.com/document/product/1668) | 2025-01-09 01:08:40 |
|
|
11
|
-
| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-08-17 01:06:14 |
|
|
12
|
-
| ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2025-01-08 01:09:45 |
|
|
13
|
-
| anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2023-05-18 01:01:53 |
|
|
14
|
-
| antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/297) | 2024-08-22 01:03:05 |
|
|
15
|
-
| apcas | [汽车精准获客服务](https://cloud.tencent.com/document/product/1244) | 2022-04-04 06:05:36 |
|
|
16
|
-
| ape | [正版图库直通车](https://cloud.tencent.com/document/product/1181) | 2022-04-04 06:05:40 |
|
|
17
|
-
| api | [云 API](https://cloud.tencent.com/document/product/1278) | 2023-01-05 01:02:52 |
|
|
18
|
-
| apigateway | [API 网关](https://cloud.tencent.com/document/product/628) | 2024-11-28 22:52:11 |
|
|
19
|
-
| apm | [应用性能监控](https://cloud.tencent.com/document/product/1463) | 2025-01-01 01:09:07 |
|
|
20
|
-
| as | [弹性伸缩](https://cloud.tencent.com/document/product/377) | 2025-01-09 01:09:15 |
|
|
21
|
-
| asr | [语音识别](https://cloud.tencent.com/document/product/1093) | 2024-11-21 01:05:01 |
|
|
22
|
-
| asw | [应用与服务编排工作流](https://cloud.tencent.com/document/product/1272) | 2023-05-18 01:04:02 |
|
|
23
|
-
| ba | [ICP备案](https://cloud.tencent.com/document/product/243) | 2024-12-19 01:10:53 |
|
|
24
|
-
| batch | [批量计算](https://cloud.tencent.com/document/product/599) | 2024-12-27 10:51:28 |
|
|
25
|
-
| bda | [人体分析](https://cloud.tencent.com/document/product/1208) | 2024-11-14 01:10:31 |
|
|
26
|
-
| bh | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2025-01-09 01:09:37 |
|
|
27
|
-
| bi | [商业智能分析 BI](https://cloud.tencent.com/document/product/590) | 2024-12-20 01:07:23 |
|
|
28
|
-
| billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2025-01-08 01:10:54 |
|
|
29
|
-
| bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 |
|
|
30
|
-
| bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2024-03-20 01:08:40 |
|
|
31
|
-
| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2024-10-18 01:04:14 |
|
|
32
|
-
| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2024-03-20 01:08:53 |
|
|
33
|
-
| bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2024-03-20 01:08:56 |
|
|
34
|
-
| bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2024-03-20 01:09:02 |
|
|
35
|
-
| bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2024-11-29 01:10:03 |
|
|
36
|
-
| bri | [业务风险情报](https://cloud.tencent.com/document/product/1064) | 2024-06-19 01:13:52 |
|
|
37
|
-
| bsca | [软件成分分析](https://cloud.tencent.com/document/product/1483) | 2024-11-27 01:09:19 |
|
|
38
|
-
| btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2024-11-06 15:27:32 |
|
|
39
|
-
| ca | [腾讯云CA](https://cloud.tencent.com/document/product/1691) | 2024-11-05 01:13:21 |
|
|
40
|
-
| cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2025-01-08 01:11:16 |
|
|
41
|
-
| captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2024-10-23 01:09:56 |
|
|
42
|
-
| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2024-12-27 10:53:11 |
|
|
43
|
-
| cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2024-11-15 01:13:36 |
|
|
44
|
-
| cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2025-01-03 01:10:33 |
|
|
45
|
-
| ccc | [云联络中心](https://cloud.tencent.com/document/product/679) | 2025-01-08 01:11:38 |
|
|
46
|
-
| cdb | [云数据库 MySQL](https://cloud.tencent.com/document/product/236) | 2025-01-07 01:10:39 |
|
|
47
|
-
| cdc | [本地专用集群](https://cloud.tencent.com/document/product/1346) | 2024-11-15 01:15:46 |
|
|
48
|
-
| cdn | [内容分发网络 CDN](https://cloud.tencent.com/document/product/228) | 2024-12-09 11:17:22 |
|
|
49
|
-
| cds | [T-Sec-数据安全审计(DSA)](https://cloud.tencent.com/document/product/856) | 2024-11-08 01:17:02 |
|
|
50
|
-
| cdwch | [腾讯云数据仓库TCHouse-C](https://cloud.tencent.com/document/product/1299) | 2024-12-24 01:16:40 |
|
|
51
|
-
| cdwdoris | [腾讯云数据仓库 TCHouse-D](https://cloud.tencent.com/document/product/1387) | 2025-01-03 01:11:39 |
|
|
52
|
-
| cdwpg | [云数据仓库 PostgreSQL](https://cloud.tencent.com/document/product/878) | 2024-03-28 01:10:53 |
|
|
53
|
-
| cdz | [专属可用区](https://cloud.tencent.com/document/product/1629) | 2024-11-14 01:17:55 |
|
|
54
|
-
| cfg | [混沌演练平台](https://cloud.tencent.com/document/product/1500) | 2024-12-27 10:54:56 |
|
|
55
|
-
| cfs | [文件存储](https://cloud.tencent.com/document/product/582) | 2025-01-09 01:11:42 |
|
|
56
|
-
| cfw | [云防火墙](https://cloud.tencent.com/document/product/1132) | 2024-12-09 11:19:12 |
|
|
57
|
-
| chdfs | [云 HDFS](https://cloud.tencent.com/document/product/1105) | 2024-12-27 10:55:07 |
|
|
58
|
-
| ciam | [账号风控平台](https://cloud.tencent.com/document/product/1441) | 2024-10-28 01:19:38 |
|
|
59
|
-
| cii | [智能保险助手](https://cloud.tencent.com/document/product/1368) | 2023-05-18 01:12:07 |
|
|
60
|
-
| cim | [](https://cloud.tencent.com/document/product) | 2019-05-16 17:21:18 |
|
|
61
|
-
| cis | [](https://cloud.tencent.com/document/product) | 2018-06-07 15:01:42 |
|
|
62
|
-
| ckafka | [消息队列 CKafka 版](https://cloud.tencent.com/document/product/597) | 2025-01-01 01:12:29 |
|
|
63
|
-
| clb | [负载均衡](https://cloud.tencent.com/document/product/214) | 2025-01-09 01:12:23 |
|
|
64
|
-
| cloudapp | [云应用](https://cloud.tencent.com/document/product/1689) | 2025-01-09 01:12:37 |
|
|
65
|
-
| cloudaudit | [操作审计](https://cloud.tencent.com/document/product/629) | 2024-12-25 01:20:38 |
|
|
66
|
-
| cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2024-11-28 10:52:49 |
|
|
67
|
-
| cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2024-12-27 10:55:16 |
|
|
68
|
-
| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2025-01-09 01:12:45 |
|
|
69
|
-
| cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2024-09-25 01:13:30 |
|
|
70
|
-
| cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2024-12-30 01:21:08 |
|
|
71
|
-
| cms | [内容安全](https://cloud.tencent.com/document/product/669) | 2024-06-20 01:24:47 |
|
|
72
|
-
| config | [配置审计](https://cloud.tencent.com/document/product/1579) | 2024-12-25 01:22:32 |
|
|
73
|
-
| controlcenter | [控制中心](https://cloud.tencent.com/document/product/1708) | 2024-10-24 01:13:25 |
|
|
74
|
-
| cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-09-21 02:09:54 |
|
|
75
|
-
| csip | [云安全一体化平台](https://cloud.tencent.com/document/product/664) | 2024-12-26 18:44:26 |
|
|
76
|
-
| csxg | [5G入云服务](https://cloud.tencent.com/document/product/1687) | 2024-03-20 01:12:25 |
|
|
77
|
-
| cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2025-01-03 01:13:42 |
|
|
78
|
-
| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2025-01-01 01:14:11 |
|
|
79
|
-
| cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 |
|
|
80
|
-
| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2025-01-09 01:14:38 |
|
|
81
|
-
| dasb | [运维安全中心(堡垒机)](https://cloud.tencent.com/document/product/1025) | 2024-11-19 01:26:13 |
|
|
82
|
-
| dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 |
|
|
83
|
-
| dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-05-18 01:20:11 |
|
|
84
|
-
| dbbrain | [数据库智能管家 DBbrain](https://cloud.tencent.com/document/product/1130) | 2025-01-08 01:15:59 |
|
|
85
|
-
| dbdc | [云数据库独享集群](https://cloud.tencent.com/document/product/1322) | 2025-01-07 01:15:00 |
|
|
86
|
-
| dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2025-01-09 01:15:16 |
|
|
87
|
-
| dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2025-01-07 01:15:05 |
|
|
88
|
-
| dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2024-12-25 01:28:37 |
|
|
89
|
-
| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2024-12-31 01:16:41 |
|
|
90
|
-
| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2024-12-25 01:30:08 |
|
|
91
|
-
| drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2025-01-09 01:16:10 |
|
|
92
|
-
| ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2024-03-20 01:15:13 |
|
|
93
|
-
| dsgc | [数据安全治理中心](https://cloud.tencent.com/document/product/1087) | 2024-12-20 16:58:37 |
|
|
94
|
-
| dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 |
|
|
95
|
-
| dts | [数据传输服务](https://cloud.tencent.com/document/product/571) | 2025-01-09 01:16:34 |
|
|
96
|
-
| eb | [事件总线](https://cloud.tencent.com/document/product/1359) | 2024-12-26 01:31:46 |
|
|
97
|
-
| ecc | [英文作文批改](https://cloud.tencent.com/document/product/1076) | 2024-09-05 01:32:54 |
|
|
98
|
-
| ecdn | [全站加速网络](https://cloud.tencent.com/document/product/570) | 2024-10-22 01:18:29 |
|
|
99
|
-
| ecm | [边缘计算机器](https://cloud.tencent.com/document/product/1108) | 2025-01-08 01:17:46 |
|
|
100
|
-
| eiam | [数字身份管控平台(员工版)](https://cloud.tencent.com/document/product/1442) | 2024-06-25 01:14:34 |
|
|
101
|
-
| eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2023-08-10 01:17:44 |
|
|
102
|
-
| emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2025-01-09 01:17:15 |
|
|
103
|
-
| es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2024-12-11 01:33:45 |
|
|
104
|
-
| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2025-01-09 01:17:49 |
|
|
105
|
-
| essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2025-01-09 01:18:08 |
|
|
106
|
-
| facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2024-12-26 01:36:01 |
|
|
107
|
-
| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2024-12-27 11:12:08 |
|
|
108
|
-
| fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2024-12-25 01:36:47 |
|
|
109
|
-
| ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2024-11-21 01:34:23 |
|
|
110
|
-
| gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2025-01-09 01:18:35 |
|
|
111
|
-
| gme | [游戏多媒体引擎](https://cloud.tencent.com/document/product/607) | 2025-01-09 01:18:49 |
|
|
112
|
-
| goosefs | [数据加速器 GooseFS](https://cloud.tencent.com/document/product/1424) | 2024-12-31 01:19:53 |
|
|
113
|
-
| gpm | [游戏玩家匹配](https://cloud.tencent.com/document/product/1294) | 2022-07-11 06:12:36 |
|
|
114
|
-
| gs | [云游戏](https://cloud.tencent.com/document/product/1162) | 2024-12-27 11:13:19 |
|
|
115
|
-
| gse | [游戏服务器伸缩](https://cloud.tencent.com/document/product/1165) | 2022-07-11 06:12:44 |
|
|
116
|
-
| gwlb | [网关负载均衡](https://cloud.tencent.com/document/product/1782) | 2025-01-09 01:18:59 |
|
|
117
|
-
| habo | [](https://cloud.tencent.com/document/product) | 2019-05-09 19:37:22 |
|
|
118
|
-
| hai | [高性能应用服务](https://cloud.tencent.com/document/product/1721) | 2025-01-09 01:19:02 |
|
|
119
|
-
| hasim | [高可用物联网卡](https://cloud.tencent.com/document/product/1482) | 2023-05-18 01:29:47 |
|
|
120
|
-
| hcm | [数学作业批改](https://cloud.tencent.com/document/product/1004) | 2024-05-09 01:16:27 |
|
|
121
|
-
| hunyuan | [腾讯混元大模型](https://cloud.tencent.com/document/product/1729) | 2025-01-08 01:19:41 |
|
|
122
|
-
| iai | [人脸识别](https://cloud.tencent.com/document/product/867) | 2024-12-27 11:13:24 |
|
|
123
|
-
| iap | [身份识别平台](https://cloud.tencent.com/document/product/1787) | 2024-11-21 18:27:30 |
|
|
124
|
-
| ic | [图片瘦身](https://cloud.tencent.com/document/product/636) | 2023-03-02 01:23:21 |
|
|
125
|
-
| icr | [对话机器人](https://cloud.tencent.com/document/product/1268) | 2024-04-22 01:17:48 |
|
|
126
|
-
| ie | [智能编辑](https://cloud.tencent.com/document/product/1186) | 2023-08-17 03:20:18 |
|
|
127
|
-
| iecp | [物联网边缘计算平台](https://cloud.tencent.com/document/product/1118) | 2024-09-25 01:22:07 |
|
|
128
|
-
| ig | [智能导诊](https://cloud.tencent.com/document/product/1273) | 2024-11-21 01:36:39 |
|
|
129
|
-
| iir | [智能识图](https://cloud.tencent.com/document/product/1217) | 2022-04-04 06:48:05 |
|
|
130
|
-
| ims | [图片内容安全](https://cloud.tencent.com/document/product/1125) | 2024-12-03 10:53:29 |
|
|
131
|
-
| ioa | [iOA 零信任安全管理系统](https://cloud.tencent.com/document/product/1092) | 2024-11-11 01:39:45 |
|
|
132
|
-
| iot | [加速物联网套件](https://cloud.tencent.com/document/product/568) | 2023-07-17 01:22:28 |
|
|
133
|
-
| iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2024-06-05 01:47:50 |
|
|
134
|
-
| iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2025-01-07 01:18:58 |
|
|
135
|
-
| iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2023-05-18 01:33:02 |
|
|
136
|
-
| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2024-12-17 01:35:29 |
|
|
137
|
-
| iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2025-01-01 01:21:21 |
|
|
138
|
-
| irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2024-10-17 01:22:29 |
|
|
139
|
-
| iss | [智能视图计算平台](https://cloud.tencent.com/document/product/1344) | 2024-12-24 01:40:55 |
|
|
140
|
-
| ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2024-12-16 01:41:44 |
|
|
141
|
-
| keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2025-01-09 01:20:47 |
|
|
142
|
-
| kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2024-11-07 01:44:48 |
|
|
143
|
-
| lcic | [实时互动-教育版](https://cloud.tencent.com/document/product/1639) | 2025-01-09 01:20:58 |
|
|
144
|
-
| lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2025-01-06 01:20:05 |
|
|
145
|
-
| live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2024-12-31 01:22:41 |
|
|
146
|
-
| lke | [大模型知识引擎](https://cloud.tencent.com/document/product/1759) | 2025-01-07 01:21:13 |
|
|
147
|
-
| lkeap | [知识引擎原子能力](https://cloud.tencent.com/document/product/1772) | 2025-01-08 01:22:43 |
|
|
148
|
-
| lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 |
|
|
149
|
-
| lp | [登录保护](https://cloud.tencent.com/document/product/1190) | 2022-04-04 06:56:52 |
|
|
150
|
-
| mall | [商场客留大数据](https://cloud.tencent.com/document/product/1707) | 2024-03-20 01:20:11 |
|
|
151
|
-
| mariadb | [云数据库 MariaDB](https://cloud.tencent.com/document/product/237) | 2024-12-25 01:46:54 |
|
|
152
|
-
| market | [云市场](https://cloud.tencent.com/document/product/306) | 2024-11-25 01:21:47 |
|
|
153
|
-
| memcached | [云数据库Memcached](https://cloud.tencent.com/document/product/241) | 2024-12-16 01:45:51 |
|
|
154
|
-
| mgobe | [游戏联机对战引擎](https://cloud.tencent.com/document/product/1038) | 2022-07-08 06:11:32 |
|
|
155
|
-
| mmps | [小程序安全](https://cloud.tencent.com/document/product/1223) | 2024-11-11 01:49:22 |
|
|
156
|
-
| mna | [多网聚合加速](https://cloud.tencent.com/document/product/1385) | 2025-01-07 01:22:17 |
|
|
157
|
-
| mongodb | [云数据库 MongoDB](https://cloud.tencent.com/document/product/240) | 2025-01-09 01:22:22 |
|
|
158
|
-
| monitor | [腾讯云可观测平台](https://cloud.tencent.com/document/product/248) | 2025-01-07 01:22:34 |
|
|
159
|
-
| mps | [媒体处理](https://cloud.tencent.com/document/product/862) | 2024-12-31 01:24:25 |
|
|
160
|
-
| mqtt | [消息队列 MQTT 版](https://cloud.tencent.com/document/product/1778) | 2024-12-19 01:49:38 |
|
|
161
|
-
| mrs | [医疗报告结构化](https://cloud.tencent.com/document/product/1314) | 2024-12-12 01:48:36 |
|
|
162
|
-
| ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2024-11-14 01:54:52 |
|
|
163
|
-
| msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2024-12-25 01:51:10 |
|
|
164
|
-
| mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 |
|
|
165
|
-
| nlp | [NLP 服务](https://cloud.tencent.com/document/product/271) | 2024-09-27 01:23:18 |
|
|
166
|
-
| npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 |
|
|
167
|
-
| oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2025-01-09 01:23:28 |
|
|
168
|
-
| ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2025-01-09 01:23:35 |
|
|
169
|
-
| omics | [腾讯健康组学平台](https://cloud.tencent.com/document/product/1643) | 2024-12-25 01:52:29 |
|
|
170
|
-
| organization | [集团账号管理](https://cloud.tencent.com/document/product/850) | 2024-12-20 01:46:38 |
|
|
171
|
-
| partners | [渠道合作伙伴](https://cloud.tencent.com/document/product/563) | 2024-11-22 12:03:22 |
|
|
172
|
-
| pds | [私域安全](https://cloud.tencent.com/document/product/1473) | 2023-05-18 01:44:14 |
|
|
173
|
-
| postgres | [云数据库 PostgreSQL](https://cloud.tencent.com/document/product/409) | 2025-01-09 01:24:20 |
|
|
174
|
-
| privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2024-12-24 01:52:16 |
|
|
175
|
-
| pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2025-01-01 01:26:11 |
|
|
176
|
-
| rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2024-12-04 01:27:22 |
|
|
177
|
-
| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2025-01-09 01:24:46 |
|
|
178
|
-
| region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2024-12-20 01:49:24 |
|
|
179
|
-
| rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2023-12-25 00:16:39 |
|
|
180
|
-
| rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 |
|
|
181
|
-
| rum | [前端性能监控](https://cloud.tencent.com/document/product/1464) | 2024-12-10 01:53:31 |
|
|
182
|
-
| scf | [云函数](https://cloud.tencent.com/document/product/583) | 2025-01-09 01:25:12 |
|
|
183
|
-
| ses | [邮件推送](https://cloud.tencent.com/document/product/1288) | 2024-10-22 01:28:58 |
|
|
184
|
-
| smh | [智能媒资托管](https://cloud.tencent.com/document/product/1339) | 2024-12-17 01:50:10 |
|
|
185
|
-
| smop | [腾讯安心用户运营平台](https://cloud.tencent.com/document/product/1310) | 2024-10-31 02:02:47 |
|
|
186
|
-
| smpn | [营销号码安全](https://cloud.tencent.com/document/product/1127) | 2024-07-09 01:21:06 |
|
|
187
|
-
| sms | [短信](https://cloud.tencent.com/document/product/382) | 2024-12-26 16:48:49 |
|
|
188
|
-
| soe | [智聆口语评测](https://cloud.tencent.com/document/product/884) | 2024-11-13 02:01:41 |
|
|
189
|
-
| solar | [智汇零售](https://cloud.tencent.com/document/product) | 2020-03-19 08:01:59 |
|
|
190
|
-
| sqlserver | [云数据库 SQL Server](https://cloud.tencent.com/document/product/238) | 2025-01-07 01:25:35 |
|
|
191
|
-
| ssa | [安全运营中心](https://cloud.tencent.com/document/product/664) | 2023-11-15 02:18:28 |
|
|
192
|
-
| ssl | [SSL 证书](https://cloud.tencent.com/document/product/400) | 2025-01-08 19:43:37 |
|
|
193
|
-
| sslpod | [证书监控 SSLPod](https://cloud.tencent.com/document/product/1084) | 2024-03-20 01:24:03 |
|
|
194
|
-
| ssm | [凭据管理系统](https://cloud.tencent.com/document/product/1140) | 2024-11-08 02:01:05 |
|
|
195
|
-
| sts | [安全凭证服务](https://cloud.tencent.com/document/product/1312) | 2024-12-11 01:57:49 |
|
|
196
|
-
| svp | [节省计划](https://cloud.tencent.com/document/product/1761) | 2024-11-27 01:26:33 |
|
|
197
|
-
| taf | [流量反欺诈](https://cloud.tencent.com/document/product/1031) | 2024-11-04 02:00:37 |
|
|
198
|
-
| tag | [标签](https://cloud.tencent.com/document/product/651) | 2024-12-25 01:59:10 |
|
|
199
|
-
| tan | [碳引擎](https://cloud.tencent.com/document/product/1498) | 2024-03-20 01:24:15 |
|
|
200
|
-
| tat | [自动化助手](https://cloud.tencent.com/document/product/1340) | 2024-12-31 01:28:18 |
|
|
201
|
-
| tav | [文件检测](https://cloud.tencent.com/document/product) | 2019-11-28 22:10:04 |
|
|
202
|
-
| tbaas | [腾讯云区块链服务平台 TBaaS](https://cloud.tencent.com/document/product/663) | 2024-12-31 01:28:33 |
|
|
203
|
-
| tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 |
|
|
204
|
-
| tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2024-03-20 01:24:24 |
|
|
205
|
-
| tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2024-08-05 02:05:20 |
|
|
206
|
-
| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2025-01-09 01:26:32 |
|
|
207
|
-
| tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2025-01-08 01:27:40 |
|
|
208
|
-
| tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 |
|
|
209
|
-
| tchd | [腾讯云健康看板](https://cloud.tencent.com/document/product/1688) | 2024-11-21 02:00:04 |
|
|
210
|
-
| tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 |
|
|
211
|
-
| tcm | [服务网格](https://cloud.tencent.com/document/product/1261) | 2025-01-06 01:25:44 |
|
|
212
|
-
| tcr | [容器镜像服务](https://cloud.tencent.com/document/product/1141) | 2025-01-09 01:26:55 |
|
|
213
|
-
| tcss | [容器安全服务](https://cloud.tencent.com/document/product/1285) | 2024-11-04 02:03:35 |
|
|
214
|
-
| tdcpg | [TDSQL-C PostgreSQL 版](https://cloud.tencent.com/document/product/1556) | 2024-07-10 01:25:35 |
|
|
215
|
-
| tdid | [分布式身份](https://cloud.tencent.com/document/product/1439) | 2024-12-19 02:00:31 |
|
|
216
|
-
| tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2025-01-08 01:28:13 |
|
|
217
|
-
| tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2024-11-14 02:08:25 |
|
|
218
|
-
| tem | [弹性微服务](https://cloud.tencent.com/document/product/1371) | 2024-12-31 01:29:59 |
|
|
219
|
-
| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2025-01-06 01:26:41 |
|
|
220
|
-
| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2025-01-01 01:30:04 |
|
|
221
|
-
| tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 |
|
|
222
|
-
| tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2023-08-17 05:26:08 |
|
|
223
|
-
| ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 |
|
|
224
|
-
| tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2024-03-20 01:27:08 |
|
|
225
|
-
| tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 |
|
|
226
|
-
| tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2024-12-23 11:03:45 |
|
|
227
|
-
| tione | [TI-ONE 训练平台](https://cloud.tencent.com/document/product/851) | 2025-01-09 01:28:15 |
|
|
228
|
-
| tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2024-03-20 01:27:28 |
|
|
229
|
-
| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2025-01-06 01:28:11 |
|
|
230
|
-
| tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 |
|
|
231
|
-
| tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2024-10-30 02:12:39 |
|
|
232
|
-
| tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2024-12-05 01:26:59 |
|
|
233
|
-
| tourism | [文旅客情大数据](https://cloud.tencent.com/document/product/1684) | 2024-03-20 01:28:59 |
|
|
234
|
-
| trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2023-05-18 02:01:19 |
|
|
235
|
-
| trocket | [消息队列 RocketMQ 版](https://cloud.tencent.com/document/product/1493) | 2025-01-06 01:28:18 |
|
|
236
|
-
| trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2024-11-08 02:10:59 |
|
|
237
|
-
| trro | [远程实时操控](https://cloud.tencent.com/document/product/1584) | 2024-12-27 11:23:20 |
|
|
238
|
-
| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2025-01-09 01:29:22 |
|
|
239
|
-
| tse | [微服务引擎](https://cloud.tencent.com/document/product/1364) | 2024-12-31 01:32:20 |
|
|
240
|
-
| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2024-12-30 02:06:44 |
|
|
241
|
-
| tsi | [腾讯同传系统](https://cloud.tencent.com/document/product/1399) | 2024-10-23 01:36:51 |
|
|
242
|
-
| tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2024-03-20 01:30:06 |
|
|
243
|
-
| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2024-12-27 11:25:13 |
|
|
244
|
-
| ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2024-03-20 01:30:08 |
|
|
245
|
-
| vcg | [视频生成](https://cloud.tencent.com/document/product/1770) | 2024-11-22 12:20:45 |
|
|
246
|
-
| vclm | [大模型视频创作引擎](https://cloud.tencent.com/document/product/1616) | 2025-01-06 01:29:32 |
|
|
247
|
-
| vcube | [音视频终端引擎](https://cloud.tencent.com/document/product/1449) | 2024-12-05 01:28:35 |
|
|
248
|
-
| vdb | [向量数据库](https://cloud.tencent.com/document/product/1709) | 2025-01-08 01:31:23 |
|
|
249
|
-
| vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2024-07-26 02:26:34 |
|
|
250
|
-
| vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2024-03-20 01:30:13 |
|
|
251
|
-
| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2024-11-18 02:09:13 |
|
|
252
|
-
| vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2025-01-09 01:31:10 |
|
|
253
|
-
| vrs | [声音复刻](https://cloud.tencent.com/document/product/1283) | 2024-12-19 02:13:39 |
|
|
254
|
-
| vtc | [视频转译](https://cloud.tencent.com/document/product/1769) | 2024-10-16 01:32:39 |
|
|
255
|
-
| waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2025-01-06 01:30:59 |
|
|
256
|
-
| wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2024-11-20 02:21:21 |
|
|
257
|
-
| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2025-01-07 01:32:10 |
|
|
258
|
-
| weilingwith | [微瓴同业开放平台](https://cloud.tencent.com/document/product/1693) | 2024-11-07 02:23:06 |
|
|
259
|
-
| wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 |
|
|
260
|
-
| yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2024-06-05 02:38:46 |
|
|
261
|
-
| youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 |
|
|
262
|
-
| yunjing | [主机安全](https://cloud.tencent.com/document/product) | 2020-09-15 08:08:47 |
|
|
263
|
-
| yunsou | [腾讯云搜TCS](https://cloud.tencent.com/document/product/270) | 2024-03-20 01:33:14 |
|