tencentcloud-sdk-nodejs-billing 4.1.144 → 4.1.157
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -149,7 +149,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
149
149
|
/**
|
|
150
150
|
* 获取云账户余额信息。
|
|
151
151
|
*/
|
|
152
|
-
DescribeAccountBalance(req
|
|
152
|
+
DescribeAccountBalance(req: DescribeAccountBalanceRequest, cb?: (error: string, rep: DescribeAccountBalanceResponse) => void): Promise<DescribeAccountBalanceResponse>;
|
|
153
153
|
/**
|
|
154
154
|
* 查询归集规则详情
|
|
155
155
|
*/
|
|
@@ -2244,6 +2244,14 @@ export interface DescribeAccountBalanceResponse {
|
|
|
2244
2244
|
* 真实可用信用额度,单位 分
|
|
2245
2245
|
*/
|
|
2246
2246
|
RealCreditBalance?: number;
|
|
2247
|
+
/**
|
|
2248
|
+
* 临时额度,单位 分
|
|
2249
|
+
*/
|
|
2250
|
+
TempCredit?: number;
|
|
2251
|
+
/**
|
|
2252
|
+
* 临时额度详情
|
|
2253
|
+
*/
|
|
2254
|
+
TempAmountInfoList?: Array<UinTempAmountModel>;
|
|
2247
2255
|
/**
|
|
2248
2256
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2249
2257
|
*/
|
|
@@ -4225,6 +4233,10 @@ export interface Deal {
|
|
|
4225
4233
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4226
4234
|
*/
|
|
4227
4235
|
ResourceId?: Array<string>;
|
|
4236
|
+
/**
|
|
4237
|
+
* 订单对应的可用区Id
|
|
4238
|
+
*/
|
|
4239
|
+
ZoneCode?: string;
|
|
4228
4240
|
}
|
|
4229
4241
|
/**
|
|
4230
4242
|
* DescribeDealsByCond返回参数结构体
|
|
@@ -6078,11 +6090,11 @@ export interface DescribeCostDetailRequest {
|
|
|
6078
6090
|
*/
|
|
6079
6091
|
Offset: number;
|
|
6080
6092
|
/**
|
|
6081
|
-
*
|
|
6093
|
+
* 周期开始时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
6082
6094
|
*/
|
|
6083
6095
|
BeginTime?: string;
|
|
6084
6096
|
/**
|
|
6085
|
-
*
|
|
6097
|
+
* 周期结束时间,查询粒度为天级别,需传入时分秒参数,格式为yyyy-mm-dd hh:ii:ss,Month和BeginTime&EndTime必传一个,如果有该字段则Month字段无效。BeginTime和EndTime必须一起传,且为同一月份,暂不支持跨月拉取。可拉取的数据是开通消耗账单后,且距今 18 个月内的数据。
|
|
6086
6098
|
*/
|
|
6087
6099
|
EndTime?: string;
|
|
6088
6100
|
/**
|
|
@@ -6091,7 +6103,7 @@ export interface DescribeCostDetailRequest {
|
|
|
6091
6103
|
*/
|
|
6092
6104
|
NeedRecordNum?: number;
|
|
6093
6105
|
/**
|
|
6094
|
-
* 月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month
|
|
6106
|
+
* 月份,格式为yyyy-mm,Month和BeginTime&EndTime必传一个,如果有传BeginTime&EndTime则Month字段无效。不能早于开通消耗账单的月份,最多可拉取18个月内的数据。
|
|
6095
6107
|
*/
|
|
6096
6108
|
Month?: string;
|
|
6097
6109
|
/**
|
|
@@ -6681,6 +6693,10 @@ export interface CostDetail {
|
|
|
6681
6693
|
* 子产品名称代码
|
|
6682
6694
|
*/
|
|
6683
6695
|
ProductCode?: string;
|
|
6696
|
+
/**
|
|
6697
|
+
* 标签信息
|
|
6698
|
+
*/
|
|
6699
|
+
Tags?: Array<BillTagInfo>;
|
|
6684
6700
|
}
|
|
6685
6701
|
/**
|
|
6686
6702
|
* DescribeBudgetOperationLog请求参数结构体
|
|
@@ -6751,6 +6767,27 @@ export interface DescribeAllocationRuleSummaryRequest {
|
|
|
6751
6767
|
*/
|
|
6752
6768
|
Name?: string;
|
|
6753
6769
|
}
|
|
6770
|
+
/**
|
|
6771
|
+
* 临时额度详情
|
|
6772
|
+
*/
|
|
6773
|
+
export interface UinTempAmountModel {
|
|
6774
|
+
/**
|
|
6775
|
+
* 用户uin
|
|
6776
|
+
*/
|
|
6777
|
+
Uin?: string;
|
|
6778
|
+
/**
|
|
6779
|
+
* 临时额度
|
|
6780
|
+
*/
|
|
6781
|
+
TempAmount?: number;
|
|
6782
|
+
/**
|
|
6783
|
+
* 开始时间
|
|
6784
|
+
*/
|
|
6785
|
+
StartTime?: string;
|
|
6786
|
+
/**
|
|
6787
|
+
* 结束时间
|
|
6788
|
+
*/
|
|
6789
|
+
EndTime?: string;
|
|
6790
|
+
}
|
|
6754
6791
|
/**
|
|
6755
6792
|
* CreateAllocationTag返回参数结构体
|
|
6756
6793
|
*/
|
|
@@ -6984,7 +7021,12 @@ export interface ModifyGatherRuleResponse {
|
|
|
6984
7021
|
/**
|
|
6985
7022
|
* DescribeAccountBalance请求参数结构体
|
|
6986
7023
|
*/
|
|
6987
|
-
export
|
|
7024
|
+
export interface DescribeAccountBalanceRequest {
|
|
7025
|
+
/**
|
|
7026
|
+
* 是否查询临时额度
|
|
7027
|
+
*/
|
|
7028
|
+
TempCredit?: boolean;
|
|
7029
|
+
}
|
|
6988
7030
|
/**
|
|
6989
7031
|
* DescribeBillDetail请求参数结构体
|
|
6990
7032
|
*/
|
|
@@ -7913,6 +7955,10 @@ export interface DescribeDealsByCondRequest {
|
|
|
7913
7955
|
* 资源id
|
|
7914
7956
|
*/
|
|
7915
7957
|
ResourceId?: string;
|
|
7958
|
+
/**
|
|
7959
|
+
* 订单状态
|
|
7960
|
+
*/
|
|
7961
|
+
StatusSet?: Array<number | bigint>;
|
|
7916
7962
|
}
|
|
7917
7963
|
/**
|
|
7918
7964
|
* DescribeAllocationSummaryByResource返回参数结构体
|