Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
published on Monday, Sep 21, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
published on Monday, Sep 21, 2026 by tencentcloudstack
Use this data source to query bill detail (L3 detail bill) of billing.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const exampleByMonth = tencentcloud.getBillingBillDetail({
month: "2024-01",
needRecordNum: 1,
payMode: "postPay",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example_by_month = tencentcloud.get_billing_bill_detail(month="2024-01",
need_record_num=1,
pay_mode="postPay")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetBillingBillDetail(ctx, &tencentcloud.GetBillingBillDetailArgs{
Month: pulumi.StringRef("2024-01"),
NeedRecordNum: pulumi.Float64Ref(1),
PayMode: pulumi.StringRef("postPay"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var exampleByMonth = Tencentcloud.GetBillingBillDetail.Invoke(new()
{
Month = "2024-01",
NeedRecordNum = 1,
PayMode = "postPay",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetBillingBillDetailArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleByMonth = TencentcloudFunctions.getBillingBillDetail(GetBillingBillDetailArgs.builder()
.month("2024-01")
.needRecordNum(1)
.payMode("postPay")
.build());
}
}
variables:
exampleByMonth:
fn::invoke:
function: tencentcloud:getBillingBillDetail
arguments:
month: 2024-01
needRecordNum: 1
payMode: postPay
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const exampleByTimeRange = tencentcloud.getBillingBillDetail({
beginTime: "2024-01-01 00:00:00",
endTime: "2024-01-31 23:59:59",
needRecordNum: 1,
resourceId: "ins-xxxxxxxx",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example_by_time_range = tencentcloud.get_billing_bill_detail(begin_time="2024-01-01 00:00:00",
end_time="2024-01-31 23:59:59",
need_record_num=1,
resource_id="ins-xxxxxxxx")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetBillingBillDetail(ctx, &tencentcloud.GetBillingBillDetailArgs{
BeginTime: pulumi.StringRef("2024-01-01 00:00:00"),
EndTime: pulumi.StringRef("2024-01-31 23:59:59"),
NeedRecordNum: pulumi.Float64Ref(1),
ResourceId: pulumi.StringRef("ins-xxxxxxxx"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var exampleByTimeRange = Tencentcloud.GetBillingBillDetail.Invoke(new()
{
BeginTime = "2024-01-01 00:00:00",
EndTime = "2024-01-31 23:59:59",
NeedRecordNum = 1,
ResourceId = "ins-xxxxxxxx",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetBillingBillDetailArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleByTimeRange = TencentcloudFunctions.getBillingBillDetail(GetBillingBillDetailArgs.builder()
.beginTime("2024-01-01 00:00:00")
.endTime("2024-01-31 23:59:59")
.needRecordNum(1)
.resourceId("ins-xxxxxxxx")
.build());
}
}
variables:
exampleByTimeRange:
fn::invoke:
function: tencentcloud:getBillingBillDetail
arguments:
beginTime: 2024-01-01 00:00:00
endTime: 2024-01-31 23:59:59
needRecordNum: 1
resourceId: ins-xxxxxxxx
Example coming soon!
Using getBillingBillDetail
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBillingBillDetail(args: GetBillingBillDetailArgs, opts?: InvokeOptions): Promise<GetBillingBillDetailResult>
function getBillingBillDetailOutput(args: GetBillingBillDetailOutputArgs, opts?: InvokeOutputOptions): Output<GetBillingBillDetailResult>def get_billing_bill_detail(action_type: Optional[str] = None,
begin_time: Optional[str] = None,
business_code: Optional[str] = None,
context: Optional[str] = None,
end_time: Optional[str] = None,
id: Optional[str] = None,
month: Optional[str] = None,
need_record_num: Optional[float] = None,
pay_mode: Optional[str] = None,
payer_uin: Optional[str] = None,
project_id: Optional[float] = None,
resource_id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBillingBillDetailResult
def get_billing_bill_detail_output(action_type: pulumi.Input[Optional[str]] = None,
begin_time: pulumi.Input[Optional[str]] = None,
business_code: pulumi.Input[Optional[str]] = None,
context: pulumi.Input[Optional[str]] = None,
end_time: pulumi.Input[Optional[str]] = None,
id: pulumi.Input[Optional[str]] = None,
month: pulumi.Input[Optional[str]] = None,
need_record_num: pulumi.Input[Optional[float]] = None,
pay_mode: pulumi.Input[Optional[str]] = None,
payer_uin: pulumi.Input[Optional[str]] = None,
project_id: pulumi.Input[Optional[float]] = None,
resource_id: pulumi.Input[Optional[str]] = None,
result_output_file: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetBillingBillDetailResult]func GetBillingBillDetail(ctx *Context, args *GetBillingBillDetailArgs, opts ...InvokeOption) (*GetBillingBillDetailResult, error)
func GetBillingBillDetailOutput(ctx *Context, args *GetBillingBillDetailOutputArgs, opts ...InvokeOption) GetBillingBillDetailResultOutput> Note: This function is named GetBillingBillDetail in the Go SDK.
public static class GetBillingBillDetail
{
public static Task<GetBillingBillDetailResult> InvokeAsync(GetBillingBillDetailArgs args, InvokeOptions? opts = null)
public static Output<GetBillingBillDetailResult> Invoke(GetBillingBillDetailInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetBillingBillDetailResult> Invoke(GetBillingBillDetailInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetBillingBillDetailResult> getBillingBillDetail(GetBillingBillDetailArgs args, InvokeOptions options)
public static Output<GetBillingBillDetailResult> getBillingBillDetail(GetBillingBillDetailArgs args, InvokeOptions options)
public static Output<GetBillingBillDetailResult> getBillingBillDetail(GetBillingBillDetailArgs args, InvokeOutputOptions options)
fn::invoke:
function: tencentcloud:index/getBillingBillDetail:getBillingBillDetail
arguments:
# arguments dictionarydata "tencentcloud_get_billing_bill_detail" "name" {
# arguments
}The following arguments are supported:
- Action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- Begin
Time string - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- Business
Code string - Product name code.
- Context string
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- End
Time string - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- Id string
- Bill record ID.
- Month string
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- Need
Record doubleNum - Whether to return the total number of records, 1 means yes, 0 means no.
- Pay
Mode string - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- Payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- Project
Id double - Project ID.
- Resource
Id string - Resource ID.
- Result
Output stringFile - Used to save results.
- Action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- Begin
Time string - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- Business
Code string - Product name code.
- Context string
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- End
Time string - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- Id string
- Bill record ID.
- Month string
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- Need
Record float64Num - Whether to return the total number of records, 1 means yes, 0 means no.
- Pay
Mode string - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- Payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- Project
Id float64 - Project ID.
- Resource
Id string - Resource ID.
- Result
Output stringFile - Used to save results.
- action_
type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- begin_
time string - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- business_
code string - Product name code.
- context string
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- end_
time string - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- id string
- Bill record ID.
- month string
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- need_
record_ numbernum - Whether to return the total number of records, 1 means yes, 0 means no.
- pay_
mode string - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- payer_
uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- project_
id number - Project ID.
- resource_
id string - Resource ID.
- result_
output_ stringfile - Used to save results.
- action
Type String - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- begin
Time String - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- business
Code String - Product name code.
- context String
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- end
Time String - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- id String
- Bill record ID.
- month String
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- need
Record DoubleNum - Whether to return the total number of records, 1 means yes, 0 means no.
- pay
Mode String - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- payer
Uin String - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- project
Id Double - Project ID.
- resource
Id String - Resource ID.
- result
Output StringFile - Used to save results.
- action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- begin
Time string - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- business
Code string - Product name code.
- context string
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- end
Time string - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- id string
- Bill record ID.
- month string
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- need
Record numberNum - Whether to return the total number of records, 1 means yes, 0 means no.
- pay
Mode string - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- project
Id number - Project ID.
- resource
Id string - Resource ID.
- result
Output stringFile - Used to save results.
- action_
type str - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- begin_
time str - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- business_
code str - Product name code.
- context str
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- end_
time str - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- id str
- Bill record ID.
- month str
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- need_
record_ floatnum - Whether to return the total number of records, 1 means yes, 0 means no.
- pay_
mode str - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- payer_
uin str - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- project_
id float - Project ID.
- resource_
id str - Resource ID.
- result_
output_ strfile - Used to save results.
- action
Type String - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- begin
Time String - Period start time, format yyyy-mm-dd hh:ii:ss. Must be paired with EndTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- business
Code String - Product name code.
- context String
- Context information returned by the last request, used to speed up pagination for Month>=2023-05.
- end
Time String - Period end time, format yyyy-mm-dd hh:ii:ss. Must be paired with BeginTime, and must be in the same month. Cross-month query is not supported, the query result is the whole month data.
- id String
- Bill record ID.
- month String
- Month, format yyyy-mm. Either Month or BeginTime&EndTime must be provided. If BeginTime&EndTime is provided, Month is ignored. Data within the last 18 months can be pulled at most.
- need
Record NumberNum - Whether to return the total number of records, 1 means yes, 0 means no.
- pay
Mode String - Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
- payer
Uin String - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- project
Id Number - Project ID.
- resource
Id String - Resource ID.
- result
Output StringFile - Used to save results.
getBillingBillDetail Result
The following output properties are available:
- Context string
- Detail
Sets List<GetBilling Bill Detail Detail Set> - Bill detail list.
- Id string
- Bill record ID.
- Total double
- Total record count.
- Action
Type string - Transaction type code.
- Begin
Time string - Business
Code string - Product code.
- End
Time string - Month string
- Need
Record doubleNum - Pay
Mode string - Payer
Uin string - Payer UIN.
- Project
Id double - Project ID.
- Resource
Id string - Resource ID.
- Result
Output stringFile
- Context string
- Detail
Sets []GetBilling Bill Detail Detail Set - Bill detail list.
- Id string
- Bill record ID.
- Total float64
- Total record count.
- Action
Type string - Transaction type code.
- Begin
Time string - Business
Code string - Product code.
- End
Time string - Month string
- Need
Record float64Num - Pay
Mode string - Payer
Uin string - Payer UIN.
- Project
Id float64 - Project ID.
- Resource
Id string - Resource ID.
- Result
Output stringFile
- context string
- detail_
sets list(object) - Bill detail list.
- id string
- Bill record ID.
- total number
- Total record count.
- action_
type string - Transaction type code.
- begin_
time string - business_
code string - Product code.
- end_
time string - month string
- need_
record_ numbernum - pay_
mode string - payer_
uin string - Payer UIN.
- project_
id number - Project ID.
- resource_
id string - Resource ID.
- result_
output_ stringfile
- context String
- detail
Sets List<GetBilling Bill Detail Detail Set> - Bill detail list.
- id String
- Bill record ID.
- total Double
- Total record count.
- action
Type String - Transaction type code.
- begin
Time String - business
Code String - Product code.
- end
Time String - month String
- need
Record DoubleNum - pay
Mode String - payer
Uin String - Payer UIN.
- project
Id Double - Project ID.
- resource
Id String - Resource ID.
- result
Output StringFile
- context string
- detail
Sets GetBilling Bill Detail Detail Set[] - Bill detail list.
- id string
- Bill record ID.
- total number
- Total record count.
- action
Type string - Transaction type code.
- begin
Time string - business
Code string - Product code.
- end
Time string - month string
- need
Record numberNum - pay
Mode string - payer
Uin string - Payer UIN.
- project
Id number - Project ID.
- resource
Id string - Resource ID.
- result
Output stringFile
- context str
- detail_
sets Sequence[GetBilling Bill Detail Detail Set] - Bill detail list.
- id str
- Bill record ID.
- total float
- Total record count.
- action_
type str - Transaction type code.
- begin_
time str - business_
code str - Product code.
- end_
time str - month str
- need_
record_ floatnum - pay_
mode str - payer_
uin str - Payer UIN.
- project_
id float - Project ID.
- resource_
id str - Resource ID.
- result_
output_ strfile
- context String
- detail
Sets List<Property Map> - Bill detail list.
- id String
- Bill record ID.
- total Number
- Total record count.
- action
Type String - Transaction type code.
- begin
Time String - business
Code String - Product code.
- end
Time String - month String
- need
Record NumberNum - pay
Mode String - payer
Uin String - Payer UIN.
- project
Id Number - Project ID.
- resource
Id String - Resource ID.
- result
Output StringFile
Supporting Types
GetBillingBillDetailDetailSet
- Action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- Action
Type stringName - Transaction type.
- Associated
Orders List<GetBilling Bill Detail Detail Set Associated Order> - Associated transaction order.
- Bill
Day string - Bill day.
- Bill
Id string - Transaction ID.
- Bill
Month string - Bill month.
- Business
Code string - Product name code.
- Business
Code stringName - Product name.
- Component
Sets List<GetBilling Bill Detail Detail Set Component Set> - Component list.
- Discount
Content string - Discount content.
- Discount
Object string - Discount object.
- Discount
Type string - Discount type.
- Fee
Begin stringTime - Start time of use.
- Fee
End stringTime - End time of use.
- Formula string
- Calculation description.
- Formula
Url string - Billing rule link.
- Id string
- Bill record ID.
- Operate
Uin string - Operator UIN.
- Order
Id string - Order ID.
- Owner
Uin string - Owner UIN.
- Pay
Mode stringName - Billing mode.
- Pay
Time string - Deduction time.
- Payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- Price
Infos List<string> - Price attributes.
- Product
Code string - Sub-product code.
- Product
Code stringName - Sub-product name.
- Project
Id double - Project ID.
- Project
Name string - Project name.
- Region
Id string - Region ID.
- Region
Name string - Region.
- Region
Type string - Domestic/International code.
- Region
Type stringName - Domestic/International name.
- Reserve
Detail string - Reserve detail (instance config).
- Resource
Id string - Resource ID.
- Resource
Name string - Resource alias.
-
List<Get
Billing Bill Detail Detail Set Tag> - Tag information list.
- Zone
Name string - Zone.
- Action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- Action
Type stringName - Transaction type.
- Associated
Orders []GetBilling Bill Detail Detail Set Associated Order - Associated transaction order.
- Bill
Day string - Bill day.
- Bill
Id string - Transaction ID.
- Bill
Month string - Bill month.
- Business
Code string - Product name code.
- Business
Code stringName - Product name.
- Component
Sets []GetBilling Bill Detail Detail Set Component Set - Component list.
- Discount
Content string - Discount content.
- Discount
Object string - Discount object.
- Discount
Type string - Discount type.
- Fee
Begin stringTime - Start time of use.
- Fee
End stringTime - End time of use.
- Formula string
- Calculation description.
- Formula
Url string - Billing rule link.
- Id string
- Bill record ID.
- Operate
Uin string - Operator UIN.
- Order
Id string - Order ID.
- Owner
Uin string - Owner UIN.
- Pay
Mode stringName - Billing mode.
- Pay
Time string - Deduction time.
- Payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- Price
Infos []string - Price attributes.
- Product
Code string - Sub-product code.
- Product
Code stringName - Sub-product name.
- Project
Id float64 - Project ID.
- Project
Name string - Project name.
- Region
Id string - Region ID.
- Region
Name string - Region.
- Region
Type string - Domestic/International code.
- Region
Type stringName - Domestic/International name.
- Reserve
Detail string - Reserve detail (instance config).
- Resource
Id string - Resource ID.
- Resource
Name string - Resource alias.
-
[]Get
Billing Bill Detail Detail Set Tag - Tag information list.
- Zone
Name string - Zone.
- action_
type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- action_
type_ stringname - Transaction type.
- associated_
orders list(object) - Associated transaction order.
- bill_
day string - Bill day.
- bill_
id string - Transaction ID.
- bill_
month string - Bill month.
- business_
code string - Product name code.
- business_
code_ stringname - Product name.
- component_
sets list(object) - Component list.
- discount_
content string - Discount content.
- discount_
object string - Discount object.
- discount_
type string - Discount type.
- fee_
begin_ stringtime - Start time of use.
- fee_
end_ stringtime - End time of use.
- formula string
- Calculation description.
- formula_
url string - Billing rule link.
- id string
- Bill record ID.
- operate_
uin string - Operator UIN.
- order_
id string - Order ID.
- owner_
uin string - Owner UIN.
- pay_
mode_ stringname - Billing mode.
- pay_
time string - Deduction time.
- payer_
uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- price_
infos list(string) - Price attributes.
- product_
code string - Sub-product code.
- product_
code_ stringname - Sub-product name.
- project_
id number - Project ID.
- project_
name string - Project name.
- region_
id string - Region ID.
- region_
name string - Region.
- region_
type string - Domestic/International code.
- region_
type_ stringname - Domestic/International name.
- reserve_
detail string - Reserve detail (instance config).
- resource_
id string - Resource ID.
- resource_
name string - Resource alias.
- list(object)
- Tag information list.
- zone_
name string - Zone.
- action
Type String - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- action
Type StringName - Transaction type.
- associated
Orders List<GetBilling Bill Detail Detail Set Associated Order> - Associated transaction order.
- bill
Day String - Bill day.
- bill
Id String - Transaction ID.
- bill
Month String - Bill month.
- business
Code String - Product name code.
- business
Code StringName - Product name.
- component
Sets List<GetBilling Bill Detail Detail Set Component Set> - Component list.
- discount
Content String - Discount content.
- discount
Object String - Discount object.
- discount
Type String - Discount type.
- fee
Begin StringTime - Start time of use.
- fee
End StringTime - End time of use.
- formula String
- Calculation description.
- formula
Url String - Billing rule link.
- id String
- Bill record ID.
- operate
Uin String - Operator UIN.
- order
Id String - Order ID.
- owner
Uin String - Owner UIN.
- pay
Mode StringName - Billing mode.
- pay
Time String - Deduction time.
- payer
Uin String - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- price
Infos List<String> - Price attributes.
- product
Code String - Sub-product code.
- product
Code StringName - Sub-product name.
- project
Id Double - Project ID.
- project
Name String - Project name.
- region
Id String - Region ID.
- region
Name String - Region.
- region
Type String - Domestic/International code.
- region
Type StringName - Domestic/International name.
- reserve
Detail String - Reserve detail (instance config).
- resource
Id String - Resource ID.
- resource
Name String - Resource alias.
-
List<Get
Billing Bill Detail Detail Set Tag> - Tag information list.
- zone
Name String - Zone.
- action
Type string - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- action
Type stringName - Transaction type.
- associated
Orders GetBilling Bill Detail Detail Set Associated Order[] - Associated transaction order.
- bill
Day string - Bill day.
- bill
Id string - Transaction ID.
- bill
Month string - Bill month.
- business
Code string - Product name code.
- business
Code stringName - Product name.
- component
Sets GetBilling Bill Detail Detail Set Component Set[] - Component list.
- discount
Content string - Discount content.
- discount
Object string - Discount object.
- discount
Type string - Discount type.
- fee
Begin stringTime - Start time of use.
- fee
End stringTime - End time of use.
- formula string
- Calculation description.
- formula
Url string - Billing rule link.
- id string
- Bill record ID.
- operate
Uin string - Operator UIN.
- order
Id string - Order ID.
- owner
Uin string - Owner UIN.
- pay
Mode stringName - Billing mode.
- pay
Time string - Deduction time.
- payer
Uin string - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- price
Infos string[] - Price attributes.
- product
Code string - Sub-product code.
- product
Code stringName - Sub-product name.
- project
Id number - Project ID.
- project
Name string - Project name.
- region
Id string - Region ID.
- region
Name string - Region.
- region
Type string - Domestic/International code.
- region
Type stringName - Domestic/International name.
- reserve
Detail string - Reserve detail (instance config).
- resource
Id string - Resource ID.
- resource
Name string - Resource alias.
-
Get
Billing Bill Detail Detail Set Tag[] - Tag information list.
- zone
Name string - Zone.
- action_
type str - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- action_
type_ strname - Transaction type.
- associated_
orders Sequence[GetBilling Bill Detail Detail Set Associated Order] - Associated transaction order.
- bill_
day str - Bill day.
- bill_
id str - Transaction ID.
- bill_
month str - Bill month.
- business_
code str - Product name code.
- business_
code_ strname - Product name.
- component_
sets Sequence[GetBilling Bill Detail Detail Set Component Set] - Component list.
- discount_
content str - Discount content.
- discount_
object str - Discount object.
- discount_
type str - Discount type.
- fee_
begin_ strtime - Start time of use.
- fee_
end_ strtime - End time of use.
- formula str
- Calculation description.
- formula_
url str - Billing rule link.
- id str
- Bill record ID.
- operate_
uin str - Operator UIN.
- order_
id str - Order ID.
- owner_
uin str - Owner UIN.
- pay_
mode_ strname - Billing mode.
- pay_
time str - Deduction time.
- payer_
uin str - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- price_
infos Sequence[str] - Price attributes.
- product_
code str - Sub-product code.
- product_
code_ strname - Sub-product name.
- project_
id float - Project ID.
- project_
name str - Project name.
- region_
id str - Region ID.
- region_
name str - Region.
- region_
type str - Domestic/International code.
- region_
type_ strname - Domestic/International name.
- reserve_
detail str - Reserve detail (instance config).
- resource_
id str - Resource ID.
- resource_
name str - Resource alias.
-
Sequence[Get
Billing Bill Detail Detail Set Tag] - Tag information list.
- zone_
name str - Zone.
- action
Type String - Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
- action
Type StringName - Transaction type.
- associated
Orders List<Property Map> - Associated transaction order.
- bill
Day String - Bill day.
- bill
Id String - Transaction ID.
- bill
Month String - Bill month.
- business
Code String - Product name code.
- business
Code StringName - Product name.
- component
Sets List<Property Map> - Component list.
- discount
Content String - Discount content.
- discount
Object String - Discount object.
- discount
Type String - Discount type.
- fee
Begin StringTime - Start time of use.
- fee
End StringTime - End time of use.
- formula String
- Calculation description.
- formula
Url String - Billing rule link.
- id String
- Bill record ID.
- operate
Uin String - Operator UIN.
- order
Id String - Order ID.
- owner
Uin String - Owner UIN.
- pay
Mode StringName - Billing mode.
- pay
Time String - Deduction time.
- payer
Uin String - Payer account ID (the account ID is the user's unique account identifier on Tencent Cloud). Defaults to querying the current account's bill.
- price
Infos List<String> - Price attributes.
- product
Code String - Sub-product code.
- product
Code StringName - Sub-product name.
- project
Id Number - Project ID.
- project
Name String - Project name.
- region
Id String - Region ID.
- region
Name String - Region.
- region
Type String - Domestic/International code.
- region
Type StringName - Domestic/International name.
- reserve
Detail String - Reserve detail (instance config).
- resource
Id String - Resource ID.
- resource
Name String - Resource alias.
- List<Property Map>
- Tag information list.
- zone
Name String - Zone.
GetBillingBillDetailDetailSetAssociatedOrder
- New
Order string - Adjusted order after discount.
- Original string
- Original order before discount adjustment.
- Prepay
Modify stringUp - Upgrade order.
- Prepay
Purchase string - New purchase order.
- Prepay
Renew string - Renewal order.
- Reverse
Order string - Reverse order.
- New
Order string - Adjusted order after discount.
- Original string
- Original order before discount adjustment.
- Prepay
Modify stringUp - Upgrade order.
- Prepay
Purchase string - New purchase order.
- Prepay
Renew string - Renewal order.
- Reverse
Order string - Reverse order.
- new_
order string - Adjusted order after discount.
- original string
- Original order before discount adjustment.
- prepay_
modify_ stringup - Upgrade order.
- prepay_
purchase string - New purchase order.
- prepay_
renew string - Renewal order.
- reverse_
order string - Reverse order.
- new
Order String - Adjusted order after discount.
- original String
- Original order before discount adjustment.
- prepay
Modify StringUp - Upgrade order.
- prepay
Purchase String - New purchase order.
- prepay
Renew String - Renewal order.
- reverse
Order String - Reverse order.
- new
Order string - Adjusted order after discount.
- original string
- Original order before discount adjustment.
- prepay
Modify stringUp - Upgrade order.
- prepay
Purchase string - New purchase order.
- prepay
Renew string - Renewal order.
- reverse
Order string - Reverse order.
- new_
order str - Adjusted order after discount.
- original str
- Original order before discount adjustment.
- prepay_
modify_ strup - Upgrade order.
- prepay_
purchase str - New purchase order.
- prepay_
renew str - Renewal order.
- reverse_
order str - Reverse order.
- new
Order String - Adjusted order after discount.
- original String
- Original order before discount adjustment.
- prepay
Modify StringUp - Upgrade order.
- prepay
Purchase String - New purchase order.
- prepay
Renew String - Renewal order.
- reverse
Order String - Reverse order.
GetBillingBillDetailDetailSetComponentSet
- Blended
Discount string - Blended discount rate.
- Cash
Pay stringAmount - Cash account payment amount.
- Component
Code string - Component name code.
- Component
Code stringName - Component type.
- Component
Configs List<GetBilling Bill Detail Detail Set Component Set Component Config> - Component config description list.
- Contract
Price string - Component unit price after discount.
- Cost string
- Component original price.
- Deducted
Measure string - Deducted usage/duration (including resource pack).
- Discount string
- Discount rate.
- Incentive
Pay stringAmount - Incentive account payment amount.
- Instance
Type string - Instance type.
- Item
Code string - Component type code.
- Item
Code stringName - Component name.
- Original
Cost stringWith Ri - Reserved instance deducted component original price.
- Original
Cost stringWith Sp - Savings plan deducted component original price.
- Price
Unit string - Component price unit.
- Real
Cost string - Discounted total price.
- Real
Total stringMeasure - Original usage/duration before resource pack deduction.
- Reduce
Type string - Discount type.
- Ri
Time stringSpan - Reserved instance deducted usage duration.
- Single
Price string - Component list price.
- Sp
Deduction string - Savings plan deduction amount. Deprecated.
- Sp
Deduction stringRate - Savings plan deduction rate.
- Specified
Price string - Component specified price. Deprecated.
- Time
Span string - Usage duration.
- Time
Unit stringName - Duration unit.
- Transfer
Pay stringAmount - Transfer account payment amount.
- Used
Amount string - Component usage.
- Used
Amount stringUnit - Component usage unit.
- Voucher
Pay stringAmount - Voucher payment amount.
- Blended
Discount string - Blended discount rate.
- Cash
Pay stringAmount - Cash account payment amount.
- Component
Code string - Component name code.
- Component
Code stringName - Component type.
- Component
Configs []GetBilling Bill Detail Detail Set Component Set Component Config - Component config description list.
- Contract
Price string - Component unit price after discount.
- Cost string
- Component original price.
- Deducted
Measure string - Deducted usage/duration (including resource pack).
- Discount string
- Discount rate.
- Incentive
Pay stringAmount - Incentive account payment amount.
- Instance
Type string - Instance type.
- Item
Code string - Component type code.
- Item
Code stringName - Component name.
- Original
Cost stringWith Ri - Reserved instance deducted component original price.
- Original
Cost stringWith Sp - Savings plan deducted component original price.
- Price
Unit string - Component price unit.
- Real
Cost string - Discounted total price.
- Real
Total stringMeasure - Original usage/duration before resource pack deduction.
- Reduce
Type string - Discount type.
- Ri
Time stringSpan - Reserved instance deducted usage duration.
- Single
Price string - Component list price.
- Sp
Deduction string - Savings plan deduction amount. Deprecated.
- Sp
Deduction stringRate - Savings plan deduction rate.
- Specified
Price string - Component specified price. Deprecated.
- Time
Span string - Usage duration.
- Time
Unit stringName - Duration unit.
- Transfer
Pay stringAmount - Transfer account payment amount.
- Used
Amount string - Component usage.
- Used
Amount stringUnit - Component usage unit.
- Voucher
Pay stringAmount - Voucher payment amount.
- blended_
discount string - Blended discount rate.
- cash_
pay_ stringamount - Cash account payment amount.
- component_
code string - Component name code.
- component_
code_ stringname - Component type.
- component_
configs list(object) - Component config description list.
- contract_
price string - Component unit price after discount.
- cost string
- Component original price.
- deducted_
measure string - Deducted usage/duration (including resource pack).
- discount string
- Discount rate.
- incentive_
pay_ stringamount - Incentive account payment amount.
- instance_
type string - Instance type.
- item_
code string - Component type code.
- item_
code_ stringname - Component name.
- original_
cost_ stringwith_ ri - Reserved instance deducted component original price.
- original_
cost_ stringwith_ sp - Savings plan deducted component original price.
- price_
unit string - Component price unit.
- real_
cost string - Discounted total price.
- real_
total_ stringmeasure - Original usage/duration before resource pack deduction.
- reduce_
type string - Discount type.
- ri_
time_ stringspan - Reserved instance deducted usage duration.
- single_
price string - Component list price.
- sp_
deduction string - Savings plan deduction amount. Deprecated.
- sp_
deduction_ stringrate - Savings plan deduction rate.
- specified_
price string - Component specified price. Deprecated.
- time_
span string - Usage duration.
- time_
unit_ stringname - Duration unit.
- transfer_
pay_ stringamount - Transfer account payment amount.
- used_
amount string - Component usage.
- used_
amount_ stringunit - Component usage unit.
- voucher_
pay_ stringamount - Voucher payment amount.
- blended
Discount String - Blended discount rate.
- cash
Pay StringAmount - Cash account payment amount.
- component
Code String - Component name code.
- component
Code StringName - Component type.
- component
Configs List<GetBilling Bill Detail Detail Set Component Set Component Config> - Component config description list.
- contract
Price String - Component unit price after discount.
- cost String
- Component original price.
- deducted
Measure String - Deducted usage/duration (including resource pack).
- discount String
- Discount rate.
- incentive
Pay StringAmount - Incentive account payment amount.
- instance
Type String - Instance type.
- item
Code String - Component type code.
- item
Code StringName - Component name.
- original
Cost StringWith Ri - Reserved instance deducted component original price.
- original
Cost StringWith Sp - Savings plan deducted component original price.
- price
Unit String - Component price unit.
- real
Cost String - Discounted total price.
- real
Total StringMeasure - Original usage/duration before resource pack deduction.
- reduce
Type String - Discount type.
- ri
Time StringSpan - Reserved instance deducted usage duration.
- single
Price String - Component list price.
- sp
Deduction String - Savings plan deduction amount. Deprecated.
- sp
Deduction StringRate - Savings plan deduction rate.
- specified
Price String - Component specified price. Deprecated.
- time
Span String - Usage duration.
- time
Unit StringName - Duration unit.
- transfer
Pay StringAmount - Transfer account payment amount.
- used
Amount String - Component usage.
- used
Amount StringUnit - Component usage unit.
- voucher
Pay StringAmount - Voucher payment amount.
- blended
Discount string - Blended discount rate.
- cash
Pay stringAmount - Cash account payment amount.
- component
Code string - Component name code.
- component
Code stringName - Component type.
- component
Configs GetBilling Bill Detail Detail Set Component Set Component Config[] - Component config description list.
- contract
Price string - Component unit price after discount.
- cost string
- Component original price.
- deducted
Measure string - Deducted usage/duration (including resource pack).
- discount string
- Discount rate.
- incentive
Pay stringAmount - Incentive account payment amount.
- instance
Type string - Instance type.
- item
Code string - Component type code.
- item
Code stringName - Component name.
- original
Cost stringWith Ri - Reserved instance deducted component original price.
- original
Cost stringWith Sp - Savings plan deducted component original price.
- price
Unit string - Component price unit.
- real
Cost string - Discounted total price.
- real
Total stringMeasure - Original usage/duration before resource pack deduction.
- reduce
Type string - Discount type.
- ri
Time stringSpan - Reserved instance deducted usage duration.
- single
Price string - Component list price.
- sp
Deduction string - Savings plan deduction amount. Deprecated.
- sp
Deduction stringRate - Savings plan deduction rate.
- specified
Price string - Component specified price. Deprecated.
- time
Span string - Usage duration.
- time
Unit stringName - Duration unit.
- transfer
Pay stringAmount - Transfer account payment amount.
- used
Amount string - Component usage.
- used
Amount stringUnit - Component usage unit.
- voucher
Pay stringAmount - Voucher payment amount.
- blended_
discount str - Blended discount rate.
- cash_
pay_ stramount - Cash account payment amount.
- component_
code str - Component name code.
- component_
code_ strname - Component type.
- component_
configs Sequence[GetBilling Bill Detail Detail Set Component Set Component Config] - Component config description list.
- contract_
price str - Component unit price after discount.
- cost str
- Component original price.
- deducted_
measure str - Deducted usage/duration (including resource pack).
- discount str
- Discount rate.
- incentive_
pay_ stramount - Incentive account payment amount.
- instance_
type str - Instance type.
- item_
code str - Component type code.
- item_
code_ strname - Component name.
- original_
cost_ strwith_ ri - Reserved instance deducted component original price.
- original_
cost_ strwith_ sp - Savings plan deducted component original price.
- price_
unit str - Component price unit.
- real_
cost str - Discounted total price.
- real_
total_ strmeasure - Original usage/duration before resource pack deduction.
- reduce_
type str - Discount type.
- ri_
time_ strspan - Reserved instance deducted usage duration.
- single_
price str - Component list price.
- sp_
deduction str - Savings plan deduction amount. Deprecated.
- sp_
deduction_ strrate - Savings plan deduction rate.
- specified_
price str - Component specified price. Deprecated.
- time_
span str - Usage duration.
- time_
unit_ strname - Duration unit.
- transfer_
pay_ stramount - Transfer account payment amount.
- used_
amount str - Component usage.
- used_
amount_ strunit - Component usage unit.
- voucher_
pay_ stramount - Voucher payment amount.
- blended
Discount String - Blended discount rate.
- cash
Pay StringAmount - Cash account payment amount.
- component
Code String - Component name code.
- component
Code StringName - Component type.
- component
Configs List<Property Map> - Component config description list.
- contract
Price String - Component unit price after discount.
- cost String
- Component original price.
- deducted
Measure String - Deducted usage/duration (including resource pack).
- discount String
- Discount rate.
- incentive
Pay StringAmount - Incentive account payment amount.
- instance
Type String - Instance type.
- item
Code String - Component type code.
- item
Code StringName - Component name.
- original
Cost StringWith Ri - Reserved instance deducted component original price.
- original
Cost StringWith Sp - Savings plan deducted component original price.
- price
Unit String - Component price unit.
- real
Cost String - Discounted total price.
- real
Total StringMeasure - Original usage/duration before resource pack deduction.
- reduce
Type String - Discount type.
- ri
Time StringSpan - Reserved instance deducted usage duration.
- single
Price String - Component list price.
- sp
Deduction String - Savings plan deduction amount. Deprecated.
- sp
Deduction StringRate - Savings plan deduction rate.
- specified
Price String - Component specified price. Deprecated.
- time
Span String - Usage duration.
- time
Unit StringName - Duration unit.
- transfer
Pay StringAmount - Transfer account payment amount.
- used
Amount String - Component usage.
- used
Amount StringUnit - Component usage unit.
- voucher
Pay StringAmount - Voucher payment amount.
GetBillingBillDetailDetailSetComponentSetComponentConfig
GetBillingBillDetailDetailSetTag
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
published on Monday, Sep 21, 2026 by tencentcloudstack