1. Registry
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. getBillingBillDetail
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.33
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 dictionary
    data "tencentcloud_get_billing_bill_detail" "name" {
        # arguments
    }

    The following arguments are supported:

    ActionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    BeginTime 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.
    BusinessCode string
    Product name code.
    Context string
    Context information returned by the last request, used to speed up pagination for Month>=2023-05.
    EndTime 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.
    NeedRecordNum double
    Whether to return the total number of records, 1 means yes, 0 means no.
    PayMode string
    Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
    PayerUin 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.
    ProjectId double
    Project ID.
    ResourceId string
    Resource ID.
    ResultOutputFile string
    Used to save results.
    ActionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    BeginTime 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.
    BusinessCode string
    Product name code.
    Context string
    Context information returned by the last request, used to speed up pagination for Month>=2023-05.
    EndTime 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.
    NeedRecordNum float64
    Whether to return the total number of records, 1 means yes, 0 means no.
    PayMode string
    Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
    PayerUin 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.
    ProjectId float64
    Project ID.
    ResourceId string
    Resource ID.
    ResultOutputFile string
    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_num number
    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_file string
    Used to save results.
    actionType String
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    beginTime 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.
    businessCode String
    Product name code.
    context String
    Context information returned by the last request, used to speed up pagination for Month>=2023-05.
    endTime 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.
    needRecordNum Double
    Whether to return the total number of records, 1 means yes, 0 means no.
    payMode String
    Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
    payerUin 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.
    projectId Double
    Project ID.
    resourceId String
    Resource ID.
    resultOutputFile String
    Used to save results.
    actionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    beginTime 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.
    businessCode string
    Product name code.
    context string
    Context information returned by the last request, used to speed up pagination for Month>=2023-05.
    endTime 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.
    needRecordNum number
    Whether to return the total number of records, 1 means yes, 0 means no.
    payMode string
    Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
    payerUin 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.
    projectId number
    Project ID.
    resourceId string
    Resource ID.
    resultOutputFile string
    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_num float
    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_file str
    Used to save results.
    actionType String
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    beginTime 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.
    businessCode String
    Product name code.
    context String
    Context information returned by the last request, used to speed up pagination for Month>=2023-05.
    endTime 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.
    needRecordNum Number
    Whether to return the total number of records, 1 means yes, 0 means no.
    payMode String
    Payment mode, prePay (prepaid) / postPay (pay-as-you-go).
    payerUin 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.
    projectId Number
    Project ID.
    resourceId String
    Resource ID.
    resultOutputFile String
    Used to save results.

    getBillingBillDetail Result

    The following output properties are available:

    Context string
    DetailSets List<GetBillingBillDetailDetailSet>
    Bill detail list.
    Id string
    Bill record ID.
    Total double
    Total record count.
    ActionType string
    Transaction type code.
    BeginTime string
    BusinessCode string
    Product code.
    EndTime string
    Month string
    NeedRecordNum double
    PayMode string
    PayerUin string
    Payer UIN.
    ProjectId double
    Project ID.
    ResourceId string
    Resource ID.
    ResultOutputFile string
    Context string
    DetailSets []GetBillingBillDetailDetailSet
    Bill detail list.
    Id string
    Bill record ID.
    Total float64
    Total record count.
    ActionType string
    Transaction type code.
    BeginTime string
    BusinessCode string
    Product code.
    EndTime string
    Month string
    NeedRecordNum float64
    PayMode string
    PayerUin string
    Payer UIN.
    ProjectId float64
    Project ID.
    ResourceId string
    Resource ID.
    ResultOutputFile string
    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_num number
    pay_mode string
    payer_uin string
    Payer UIN.
    project_id number
    Project ID.
    resource_id string
    Resource ID.
    result_output_file string
    context String
    detailSets List<GetBillingBillDetailDetailSet>
    Bill detail list.
    id String
    Bill record ID.
    total Double
    Total record count.
    actionType String
    Transaction type code.
    beginTime String
    businessCode String
    Product code.
    endTime String
    month String
    needRecordNum Double
    payMode String
    payerUin String
    Payer UIN.
    projectId Double
    Project ID.
    resourceId String
    Resource ID.
    resultOutputFile String
    context string
    detailSets GetBillingBillDetailDetailSet[]
    Bill detail list.
    id string
    Bill record ID.
    total number
    Total record count.
    actionType string
    Transaction type code.
    beginTime string
    businessCode string
    Product code.
    endTime string
    month string
    needRecordNum number
    payMode string
    payerUin string
    Payer UIN.
    projectId number
    Project ID.
    resourceId string
    Resource ID.
    resultOutputFile string
    context str
    detail_sets Sequence[GetBillingBillDetailDetailSet]
    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_num float
    pay_mode str
    payer_uin str
    Payer UIN.
    project_id float
    Project ID.
    resource_id str
    Resource ID.
    result_output_file str
    context String
    detailSets List<Property Map>
    Bill detail list.
    id String
    Bill record ID.
    total Number
    Total record count.
    actionType String
    Transaction type code.
    beginTime String
    businessCode String
    Product code.
    endTime String
    month String
    needRecordNum Number
    payMode String
    payerUin String
    Payer UIN.
    projectId Number
    Project ID.
    resourceId String
    Resource ID.
    resultOutputFile String

    Supporting Types

    GetBillingBillDetailDetailSet

    ActionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    ActionTypeName string
    Transaction type.
    AssociatedOrders List<GetBillingBillDetailDetailSetAssociatedOrder>
    Associated transaction order.
    BillDay string
    Bill day.
    BillId string
    Transaction ID.
    BillMonth string
    Bill month.
    BusinessCode string
    Product name code.
    BusinessCodeName string
    Product name.
    ComponentSets List<GetBillingBillDetailDetailSetComponentSet>
    Component list.
    DiscountContent string
    Discount content.
    DiscountObject string
    Discount object.
    DiscountType string
    Discount type.
    FeeBeginTime string
    Start time of use.
    FeeEndTime string
    End time of use.
    Formula string
    Calculation description.
    FormulaUrl string
    Billing rule link.
    Id string
    Bill record ID.
    OperateUin string
    Operator UIN.
    OrderId string
    Order ID.
    OwnerUin string
    Owner UIN.
    PayModeName string
    Billing mode.
    PayTime string
    Deduction time.
    PayerUin 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.
    PriceInfos List<string>
    Price attributes.
    ProductCode string
    Sub-product code.
    ProductCodeName string
    Sub-product name.
    ProjectId double
    Project ID.
    ProjectName string
    Project name.
    RegionId string
    Region ID.
    RegionName string
    Region.
    RegionType string
    Domestic/International code.
    RegionTypeName string
    Domestic/International name.
    ReserveDetail string
    Reserve detail (instance config).
    ResourceId string
    Resource ID.
    ResourceName string
    Resource alias.
    Tags List<GetBillingBillDetailDetailSetTag>
    Tag information list.
    ZoneName string
    Zone.
    ActionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    ActionTypeName string
    Transaction type.
    AssociatedOrders []GetBillingBillDetailDetailSetAssociatedOrder
    Associated transaction order.
    BillDay string
    Bill day.
    BillId string
    Transaction ID.
    BillMonth string
    Bill month.
    BusinessCode string
    Product name code.
    BusinessCodeName string
    Product name.
    ComponentSets []GetBillingBillDetailDetailSetComponentSet
    Component list.
    DiscountContent string
    Discount content.
    DiscountObject string
    Discount object.
    DiscountType string
    Discount type.
    FeeBeginTime string
    Start time of use.
    FeeEndTime string
    End time of use.
    Formula string
    Calculation description.
    FormulaUrl string
    Billing rule link.
    Id string
    Bill record ID.
    OperateUin string
    Operator UIN.
    OrderId string
    Order ID.
    OwnerUin string
    Owner UIN.
    PayModeName string
    Billing mode.
    PayTime string
    Deduction time.
    PayerUin 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.
    PriceInfos []string
    Price attributes.
    ProductCode string
    Sub-product code.
    ProductCodeName string
    Sub-product name.
    ProjectId float64
    Project ID.
    ProjectName string
    Project name.
    RegionId string
    Region ID.
    RegionName string
    Region.
    RegionType string
    Domestic/International code.
    RegionTypeName string
    Domestic/International name.
    ReserveDetail string
    Reserve detail (instance config).
    ResourceId string
    Resource ID.
    ResourceName string
    Resource alias.
    Tags []GetBillingBillDetailDetailSetTag
    Tag information list.
    ZoneName string
    Zone.
    action_type string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    action_type_name string
    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_name string
    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_time string
    Start time of use.
    fee_end_time string
    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_name string
    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_name string
    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_name string
    Domestic/International name.
    reserve_detail string
    Reserve detail (instance config).
    resource_id string
    Resource ID.
    resource_name string
    Resource alias.
    tags list(object)
    Tag information list.
    zone_name string
    Zone.
    actionType String
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    actionTypeName String
    Transaction type.
    associatedOrders List<GetBillingBillDetailDetailSetAssociatedOrder>
    Associated transaction order.
    billDay String
    Bill day.
    billId String
    Transaction ID.
    billMonth String
    Bill month.
    businessCode String
    Product name code.
    businessCodeName String
    Product name.
    componentSets List<GetBillingBillDetailDetailSetComponentSet>
    Component list.
    discountContent String
    Discount content.
    discountObject String
    Discount object.
    discountType String
    Discount type.
    feeBeginTime String
    Start time of use.
    feeEndTime String
    End time of use.
    formula String
    Calculation description.
    formulaUrl String
    Billing rule link.
    id String
    Bill record ID.
    operateUin String
    Operator UIN.
    orderId String
    Order ID.
    ownerUin String
    Owner UIN.
    payModeName String
    Billing mode.
    payTime String
    Deduction time.
    payerUin 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.
    priceInfos List<String>
    Price attributes.
    productCode String
    Sub-product code.
    productCodeName String
    Sub-product name.
    projectId Double
    Project ID.
    projectName String
    Project name.
    regionId String
    Region ID.
    regionName String
    Region.
    regionType String
    Domestic/International code.
    regionTypeName String
    Domestic/International name.
    reserveDetail String
    Reserve detail (instance config).
    resourceId String
    Resource ID.
    resourceName String
    Resource alias.
    tags List<GetBillingBillDetailDetailSetTag>
    Tag information list.
    zoneName String
    Zone.
    actionType string
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    actionTypeName string
    Transaction type.
    associatedOrders GetBillingBillDetailDetailSetAssociatedOrder[]
    Associated transaction order.
    billDay string
    Bill day.
    billId string
    Transaction ID.
    billMonth string
    Bill month.
    businessCode string
    Product name code.
    businessCodeName string
    Product name.
    componentSets GetBillingBillDetailDetailSetComponentSet[]
    Component list.
    discountContent string
    Discount content.
    discountObject string
    Discount object.
    discountType string
    Discount type.
    feeBeginTime string
    Start time of use.
    feeEndTime string
    End time of use.
    formula string
    Calculation description.
    formulaUrl string
    Billing rule link.
    id string
    Bill record ID.
    operateUin string
    Operator UIN.
    orderId string
    Order ID.
    ownerUin string
    Owner UIN.
    payModeName string
    Billing mode.
    payTime string
    Deduction time.
    payerUin 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.
    priceInfos string[]
    Price attributes.
    productCode string
    Sub-product code.
    productCodeName string
    Sub-product name.
    projectId number
    Project ID.
    projectName string
    Project name.
    regionId string
    Region ID.
    regionName string
    Region.
    regionType string
    Domestic/International code.
    regionTypeName string
    Domestic/International name.
    reserveDetail string
    Reserve detail (instance config).
    resourceId string
    Resource ID.
    resourceName string
    Resource alias.
    tags GetBillingBillDetailDetailSetTag[]
    Tag information list.
    zoneName string
    Zone.
    action_type str
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    action_type_name str
    Transaction type.
    associated_orders Sequence[GetBillingBillDetailDetailSetAssociatedOrder]
    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_name str
    Product name.
    component_sets Sequence[GetBillingBillDetailDetailSetComponentSet]
    Component list.
    discount_content str
    Discount content.
    discount_object str
    Discount object.
    discount_type str
    Discount type.
    fee_begin_time str
    Start time of use.
    fee_end_time str
    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_name str
    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_name str
    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_name str
    Domestic/International name.
    reserve_detail str
    Reserve detail (instance config).
    resource_id str
    Resource ID.
    resource_name str
    Resource alias.
    tags Sequence[GetBillingBillDetailDetailSetTag]
    Tag information list.
    zone_name str
    Zone.
    actionType String
    Transaction type name, such as prepay purchase, prepay renew, postpay deduction, etc.
    actionTypeName String
    Transaction type.
    associatedOrders List<Property Map>
    Associated transaction order.
    billDay String
    Bill day.
    billId String
    Transaction ID.
    billMonth String
    Bill month.
    businessCode String
    Product name code.
    businessCodeName String
    Product name.
    componentSets List<Property Map>
    Component list.
    discountContent String
    Discount content.
    discountObject String
    Discount object.
    discountType String
    Discount type.
    feeBeginTime String
    Start time of use.
    feeEndTime String
    End time of use.
    formula String
    Calculation description.
    formulaUrl String
    Billing rule link.
    id String
    Bill record ID.
    operateUin String
    Operator UIN.
    orderId String
    Order ID.
    ownerUin String
    Owner UIN.
    payModeName String
    Billing mode.
    payTime String
    Deduction time.
    payerUin 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.
    priceInfos List<String>
    Price attributes.
    productCode String
    Sub-product code.
    productCodeName String
    Sub-product name.
    projectId Number
    Project ID.
    projectName String
    Project name.
    regionId String
    Region ID.
    regionName String
    Region.
    regionType String
    Domestic/International code.
    regionTypeName String
    Domestic/International name.
    reserveDetail String
    Reserve detail (instance config).
    resourceId String
    Resource ID.
    resourceName String
    Resource alias.
    tags List<Property Map>
    Tag information list.
    zoneName String
    Zone.

    GetBillingBillDetailDetailSetAssociatedOrder

    NewOrder string
    Adjusted order after discount.
    Original string
    Original order before discount adjustment.
    PrepayModifyUp string
    Upgrade order.
    PrepayPurchase string
    New purchase order.
    PrepayRenew string
    Renewal order.
    ReverseOrder string
    Reverse order.
    NewOrder string
    Adjusted order after discount.
    Original string
    Original order before discount adjustment.
    PrepayModifyUp string
    Upgrade order.
    PrepayPurchase string
    New purchase order.
    PrepayRenew string
    Renewal order.
    ReverseOrder string
    Reverse order.
    new_order string
    Adjusted order after discount.
    original string
    Original order before discount adjustment.
    prepay_modify_up string
    Upgrade order.
    prepay_purchase string
    New purchase order.
    prepay_renew string
    Renewal order.
    reverse_order string
    Reverse order.
    newOrder String
    Adjusted order after discount.
    original String
    Original order before discount adjustment.
    prepayModifyUp String
    Upgrade order.
    prepayPurchase String
    New purchase order.
    prepayRenew String
    Renewal order.
    reverseOrder String
    Reverse order.
    newOrder string
    Adjusted order after discount.
    original string
    Original order before discount adjustment.
    prepayModifyUp string
    Upgrade order.
    prepayPurchase string
    New purchase order.
    prepayRenew string
    Renewal order.
    reverseOrder string
    Reverse order.
    new_order str
    Adjusted order after discount.
    original str
    Original order before discount adjustment.
    prepay_modify_up str
    Upgrade order.
    prepay_purchase str
    New purchase order.
    prepay_renew str
    Renewal order.
    reverse_order str
    Reverse order.
    newOrder String
    Adjusted order after discount.
    original String
    Original order before discount adjustment.
    prepayModifyUp String
    Upgrade order.
    prepayPurchase String
    New purchase order.
    prepayRenew String
    Renewal order.
    reverseOrder String
    Reverse order.

    GetBillingBillDetailDetailSetComponentSet

    BlendedDiscount string
    Blended discount rate.
    CashPayAmount string
    Cash account payment amount.
    ComponentCode string
    Component name code.
    ComponentCodeName string
    Component type.
    ComponentConfigs List<GetBillingBillDetailDetailSetComponentSetComponentConfig>
    Component config description list.
    ContractPrice string
    Component unit price after discount.
    Cost string
    Component original price.
    DeductedMeasure string
    Deducted usage/duration (including resource pack).
    Discount string
    Discount rate.
    IncentivePayAmount string
    Incentive account payment amount.
    InstanceType string
    Instance type.
    ItemCode string
    Component type code.
    ItemCodeName string
    Component name.
    OriginalCostWithRi string
    Reserved instance deducted component original price.
    OriginalCostWithSp string
    Savings plan deducted component original price.
    PriceUnit string
    Component price unit.
    RealCost string
    Discounted total price.
    RealTotalMeasure string
    Original usage/duration before resource pack deduction.
    ReduceType string
    Discount type.
    RiTimeSpan string
    Reserved instance deducted usage duration.
    SinglePrice string
    Component list price.
    SpDeduction string
    Savings plan deduction amount. Deprecated.
    SpDeductionRate string
    Savings plan deduction rate.
    SpecifiedPrice string
    Component specified price. Deprecated.
    TimeSpan string
    Usage duration.
    TimeUnitName string
    Duration unit.
    TransferPayAmount string
    Transfer account payment amount.
    UsedAmount string
    Component usage.
    UsedAmountUnit string
    Component usage unit.
    VoucherPayAmount string
    Voucher payment amount.
    BlendedDiscount string
    Blended discount rate.
    CashPayAmount string
    Cash account payment amount.
    ComponentCode string
    Component name code.
    ComponentCodeName string
    Component type.
    ComponentConfigs []GetBillingBillDetailDetailSetComponentSetComponentConfig
    Component config description list.
    ContractPrice string
    Component unit price after discount.
    Cost string
    Component original price.
    DeductedMeasure string
    Deducted usage/duration (including resource pack).
    Discount string
    Discount rate.
    IncentivePayAmount string
    Incentive account payment amount.
    InstanceType string
    Instance type.
    ItemCode string
    Component type code.
    ItemCodeName string
    Component name.
    OriginalCostWithRi string
    Reserved instance deducted component original price.
    OriginalCostWithSp string
    Savings plan deducted component original price.
    PriceUnit string
    Component price unit.
    RealCost string
    Discounted total price.
    RealTotalMeasure string
    Original usage/duration before resource pack deduction.
    ReduceType string
    Discount type.
    RiTimeSpan string
    Reserved instance deducted usage duration.
    SinglePrice string
    Component list price.
    SpDeduction string
    Savings plan deduction amount. Deprecated.
    SpDeductionRate string
    Savings plan deduction rate.
    SpecifiedPrice string
    Component specified price. Deprecated.
    TimeSpan string
    Usage duration.
    TimeUnitName string
    Duration unit.
    TransferPayAmount string
    Transfer account payment amount.
    UsedAmount string
    Component usage.
    UsedAmountUnit string
    Component usage unit.
    VoucherPayAmount string
    Voucher payment amount.
    blended_discount string
    Blended discount rate.
    cash_pay_amount string
    Cash account payment amount.
    component_code string
    Component name code.
    component_code_name string
    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_amount string
    Incentive account payment amount.
    instance_type string
    Instance type.
    item_code string
    Component type code.
    item_code_name string
    Component name.
    original_cost_with_ri string
    Reserved instance deducted component original price.
    original_cost_with_sp string
    Savings plan deducted component original price.
    price_unit string
    Component price unit.
    real_cost string
    Discounted total price.
    real_total_measure string
    Original usage/duration before resource pack deduction.
    reduce_type string
    Discount type.
    ri_time_span string
    Reserved instance deducted usage duration.
    single_price string
    Component list price.
    sp_deduction string
    Savings plan deduction amount. Deprecated.
    sp_deduction_rate string
    Savings plan deduction rate.
    specified_price string
    Component specified price. Deprecated.
    time_span string
    Usage duration.
    time_unit_name string
    Duration unit.
    transfer_pay_amount string
    Transfer account payment amount.
    used_amount string
    Component usage.
    used_amount_unit string
    Component usage unit.
    voucher_pay_amount string
    Voucher payment amount.
    blendedDiscount String
    Blended discount rate.
    cashPayAmount String
    Cash account payment amount.
    componentCode String
    Component name code.
    componentCodeName String
    Component type.
    componentConfigs List<GetBillingBillDetailDetailSetComponentSetComponentConfig>
    Component config description list.
    contractPrice String
    Component unit price after discount.
    cost String
    Component original price.
    deductedMeasure String
    Deducted usage/duration (including resource pack).
    discount String
    Discount rate.
    incentivePayAmount String
    Incentive account payment amount.
    instanceType String
    Instance type.
    itemCode String
    Component type code.
    itemCodeName String
    Component name.
    originalCostWithRi String
    Reserved instance deducted component original price.
    originalCostWithSp String
    Savings plan deducted component original price.
    priceUnit String
    Component price unit.
    realCost String
    Discounted total price.
    realTotalMeasure String
    Original usage/duration before resource pack deduction.
    reduceType String
    Discount type.
    riTimeSpan String
    Reserved instance deducted usage duration.
    singlePrice String
    Component list price.
    spDeduction String
    Savings plan deduction amount. Deprecated.
    spDeductionRate String
    Savings plan deduction rate.
    specifiedPrice String
    Component specified price. Deprecated.
    timeSpan String
    Usage duration.
    timeUnitName String
    Duration unit.
    transferPayAmount String
    Transfer account payment amount.
    usedAmount String
    Component usage.
    usedAmountUnit String
    Component usage unit.
    voucherPayAmount String
    Voucher payment amount.
    blendedDiscount string
    Blended discount rate.
    cashPayAmount string
    Cash account payment amount.
    componentCode string
    Component name code.
    componentCodeName string
    Component type.
    componentConfigs GetBillingBillDetailDetailSetComponentSetComponentConfig[]
    Component config description list.
    contractPrice string
    Component unit price after discount.
    cost string
    Component original price.
    deductedMeasure string
    Deducted usage/duration (including resource pack).
    discount string
    Discount rate.
    incentivePayAmount string
    Incentive account payment amount.
    instanceType string
    Instance type.
    itemCode string
    Component type code.
    itemCodeName string
    Component name.
    originalCostWithRi string
    Reserved instance deducted component original price.
    originalCostWithSp string
    Savings plan deducted component original price.
    priceUnit string
    Component price unit.
    realCost string
    Discounted total price.
    realTotalMeasure string
    Original usage/duration before resource pack deduction.
    reduceType string
    Discount type.
    riTimeSpan string
    Reserved instance deducted usage duration.
    singlePrice string
    Component list price.
    spDeduction string
    Savings plan deduction amount. Deprecated.
    spDeductionRate string
    Savings plan deduction rate.
    specifiedPrice string
    Component specified price. Deprecated.
    timeSpan string
    Usage duration.
    timeUnitName string
    Duration unit.
    transferPayAmount string
    Transfer account payment amount.
    usedAmount string
    Component usage.
    usedAmountUnit string
    Component usage unit.
    voucherPayAmount string
    Voucher payment amount.
    blended_discount str
    Blended discount rate.
    cash_pay_amount str
    Cash account payment amount.
    component_code str
    Component name code.
    component_code_name str
    Component type.
    component_configs Sequence[GetBillingBillDetailDetailSetComponentSetComponentConfig]
    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_amount str
    Incentive account payment amount.
    instance_type str
    Instance type.
    item_code str
    Component type code.
    item_code_name str
    Component name.
    original_cost_with_ri str
    Reserved instance deducted component original price.
    original_cost_with_sp str
    Savings plan deducted component original price.
    price_unit str
    Component price unit.
    real_cost str
    Discounted total price.
    real_total_measure str
    Original usage/duration before resource pack deduction.
    reduce_type str
    Discount type.
    ri_time_span str
    Reserved instance deducted usage duration.
    single_price str
    Component list price.
    sp_deduction str
    Savings plan deduction amount. Deprecated.
    sp_deduction_rate str
    Savings plan deduction rate.
    specified_price str
    Component specified price. Deprecated.
    time_span str
    Usage duration.
    time_unit_name str
    Duration unit.
    transfer_pay_amount str
    Transfer account payment amount.
    used_amount str
    Component usage.
    used_amount_unit str
    Component usage unit.
    voucher_pay_amount str
    Voucher payment amount.
    blendedDiscount String
    Blended discount rate.
    cashPayAmount String
    Cash account payment amount.
    componentCode String
    Component name code.
    componentCodeName String
    Component type.
    componentConfigs List<Property Map>
    Component config description list.
    contractPrice String
    Component unit price after discount.
    cost String
    Component original price.
    deductedMeasure String
    Deducted usage/duration (including resource pack).
    discount String
    Discount rate.
    incentivePayAmount String
    Incentive account payment amount.
    instanceType String
    Instance type.
    itemCode String
    Component type code.
    itemCodeName String
    Component name.
    originalCostWithRi String
    Reserved instance deducted component original price.
    originalCostWithSp String
    Savings plan deducted component original price.
    priceUnit String
    Component price unit.
    realCost String
    Discounted total price.
    realTotalMeasure String
    Original usage/duration before resource pack deduction.
    reduceType String
    Discount type.
    riTimeSpan String
    Reserved instance deducted usage duration.
    singlePrice String
    Component list price.
    spDeduction String
    Savings plan deduction amount. Deprecated.
    spDeductionRate String
    Savings plan deduction rate.
    specifiedPrice String
    Component specified price. Deprecated.
    timeSpan String
    Usage duration.
    timeUnitName String
    Duration unit.
    transferPayAmount String
    Transfer account payment amount.
    usedAmount String
    Component usage.
    usedAmountUnit String
    Component usage unit.
    voucherPayAmount String
    Voucher payment amount.

    GetBillingBillDetailDetailSetComponentSetComponentConfig

    Name string
    Config description name.
    Value string
    Config description value.
    Name string
    Config description name.
    Value string
    Config description value.
    name string
    Config description name.
    value string
    Config description value.
    name String
    Config description name.
    value String
    Config description value.
    name string
    Config description name.
    value string
    Config description value.
    name str
    Config description name.
    value str
    Config description value.
    name String
    Config description name.
    value String
    Config description value.

    GetBillingBillDetailDetailSetTag

    TagKey string
    Tag key.
    TagValue string
    Tag value.
    TagKey string
    Tag key.
    TagValue string
    Tag value.
    tag_key string
    Tag key.
    tag_value string
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.
    tagKey string
    Tag key.
    tagValue string
    Tag value.
    tag_key str
    Tag key.
    tag_value str
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.33
    published on Monday, Sep 21, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial