1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getLighthouseModifyInstanceBundle
tencentcloud 1.81.188 published on Monday, Apr 28, 2025 by tencentcloudstack

tencentcloud.getLighthouseModifyInstanceBundle

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.188 published on Monday, Apr 28, 2025 by tencentcloudstack

    Use this data source to query detailed information of lighthouse modify_instance_bundle

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const modifyInstanceBundle = tencentcloud.getLighthouseModifyInstanceBundle({
        filters: [{
            name: "bundle-id",
            values: ["bundle_gen_mc_med2_02"],
        }],
        instanceId: "lhins-xxxxxx",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    modify_instance_bundle = tencentcloud.get_lighthouse_modify_instance_bundle(filters=[{
            "name": "bundle-id",
            "values": ["bundle_gen_mc_med2_02"],
        }],
        instance_id="lhins-xxxxxx")
    
    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.GetLighthouseModifyInstanceBundle(ctx, &tencentcloud.GetLighthouseModifyInstanceBundleArgs{
    			Filters: []tencentcloud.GetLighthouseModifyInstanceBundleFilter{
    				{
    					Name: "bundle-id",
    					Values: []string{
    						"bundle_gen_mc_med2_02",
    					},
    				},
    			},
    			InstanceId: "lhins-xxxxxx",
    		}, 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 modifyInstanceBundle = Tencentcloud.GetLighthouseModifyInstanceBundle.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetLighthouseModifyInstanceBundleFilterInputArgs
                {
                    Name = "bundle-id",
                    Values = new[]
                    {
                        "bundle_gen_mc_med2_02",
                    },
                },
            },
            InstanceId = "lhins-xxxxxx",
        });
    
    });
    
    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.GetLighthouseModifyInstanceBundleArgs;
    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 modifyInstanceBundle = TencentcloudFunctions.getLighthouseModifyInstanceBundle(GetLighthouseModifyInstanceBundleArgs.builder()
                .filters(GetLighthouseModifyInstanceBundleFilterArgs.builder()
                    .name("bundle-id")
                    .values("bundle_gen_mc_med2_02")
                    .build())
                .instanceId("lhins-xxxxxx")
                .build());
    
        }
    }
    
    variables:
      modifyInstanceBundle:
        fn::invoke:
          function: tencentcloud:getLighthouseModifyInstanceBundle
          arguments:
            filters:
              - name: bundle-id
                values:
                  - bundle_gen_mc_med2_02
            instanceId: lhins-xxxxxx
    

    Using getLighthouseModifyInstanceBundle

    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 getLighthouseModifyInstanceBundle(args: GetLighthouseModifyInstanceBundleArgs, opts?: InvokeOptions): Promise<GetLighthouseModifyInstanceBundleResult>
    function getLighthouseModifyInstanceBundleOutput(args: GetLighthouseModifyInstanceBundleOutputArgs, opts?: InvokeOptions): Output<GetLighthouseModifyInstanceBundleResult>
    def get_lighthouse_modify_instance_bundle(filters: Optional[Sequence[GetLighthouseModifyInstanceBundleFilter]] = None,
                                              id: Optional[str] = None,
                                              instance_id: Optional[str] = None,
                                              result_output_file: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetLighthouseModifyInstanceBundleResult
    def get_lighthouse_modify_instance_bundle_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetLighthouseModifyInstanceBundleFilterArgs]]]] = None,
                                              id: Optional[pulumi.Input[str]] = None,
                                              instance_id: Optional[pulumi.Input[str]] = None,
                                              result_output_file: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetLighthouseModifyInstanceBundleResult]
    func GetLighthouseModifyInstanceBundle(ctx *Context, args *GetLighthouseModifyInstanceBundleArgs, opts ...InvokeOption) (*GetLighthouseModifyInstanceBundleResult, error)
    func GetLighthouseModifyInstanceBundleOutput(ctx *Context, args *GetLighthouseModifyInstanceBundleOutputArgs, opts ...InvokeOption) GetLighthouseModifyInstanceBundleResultOutput

    > Note: This function is named GetLighthouseModifyInstanceBundle in the Go SDK.

    public static class GetLighthouseModifyInstanceBundle 
    {
        public static Task<GetLighthouseModifyInstanceBundleResult> InvokeAsync(GetLighthouseModifyInstanceBundleArgs args, InvokeOptions? opts = null)
        public static Output<GetLighthouseModifyInstanceBundleResult> Invoke(GetLighthouseModifyInstanceBundleInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLighthouseModifyInstanceBundleResult> getLighthouseModifyInstanceBundle(GetLighthouseModifyInstanceBundleArgs args, InvokeOptions options)
    public static Output<GetLighthouseModifyInstanceBundleResult> getLighthouseModifyInstanceBundle(GetLighthouseModifyInstanceBundleArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getLighthouseModifyInstanceBundle:getLighthouseModifyInstanceBundle
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Instance ID.
    Filters List<GetLighthouseModifyInstanceBundleFilter>
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    Id string
    ResultOutputFile string
    Used to save results.
    InstanceId string
    Instance ID.
    Filters []GetLighthouseModifyInstanceBundleFilter
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    Id string
    ResultOutputFile string
    Used to save results.
    instanceId String
    Instance ID.
    filters List<GetLighthouseModifyInstanceBundleFilter>
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    id String
    resultOutputFile String
    Used to save results.
    instanceId string
    Instance ID.
    filters GetLighthouseModifyInstanceBundleFilter[]
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    id string
    resultOutputFile string
    Used to save results.
    instance_id str
    Instance ID.
    filters Sequence[GetLighthouseModifyInstanceBundleFilter]
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    id str
    result_output_file str
    Used to save results.
    instanceId String
    Instance ID.
    filters List<Property Map>
    Filter list.

    • bundle-id: filter by the bundle ID.
    • support-platform-type: filter by system type, valid values: LINUX_UNIX, WINDOWS.
    • bundle-type: filter according to package type, valid values: GENERAL_BUNDLE, STORAGE_BUNDLE, ENTERPRISE_BUNDLE, EXCLUSIVE_BUNDLE, BEFAST_BUNDLE.
    • bundle-state: filter according to package status, valid values: ONLINE, OFFLINE. NOTE: The upper limit of Filters per request is 10. The upper limit of Filter.Values is 5. Parameter does not support specifying both BundleIds and Filters.
    id String
    resultOutputFile String
    Used to save results.

    getLighthouseModifyInstanceBundle Result

    The following output properties are available:

    Supporting Types

    GetLighthouseModifyInstanceBundleFilter

    Name string
    Field to be filtered.
    Values List<string>
    Filter value of field.
    Name string
    Field to be filtered.
    Values []string
    Filter value of field.
    name String
    Field to be filtered.
    values List<String>
    Filter value of field.
    name string
    Field to be filtered.
    values string[]
    Filter value of field.
    name str
    Field to be filtered.
    values Sequence[str]
    Filter value of field.
    name String
    Field to be filtered.
    values List<String>
    Filter value of field.

    GetLighthouseModifyInstanceBundleModifyBundleSet

    Bundles List<GetLighthouseModifyInstanceBundleModifyBundleSetBundle>
    Package information.
    ModifyBundleState string
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    ModifyPrices List<GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice>
    Change the price difference to be made up after the instance package.
    NotSupportModifyMessage string
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.
    Bundles []GetLighthouseModifyInstanceBundleModifyBundleSetBundle
    Package information.
    ModifyBundleState string
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    ModifyPrices []GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice
    Change the price difference to be made up after the instance package.
    NotSupportModifyMessage string
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.
    bundles List<GetLighthouseModifyInstanceBundleModifyBundleSetBundle>
    Package information.
    modifyBundleState String
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    modifyPrices List<GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice>
    Change the price difference to be made up after the instance package.
    notSupportModifyMessage String
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.
    bundles GetLighthouseModifyInstanceBundleModifyBundleSetBundle[]
    Package information.
    modifyBundleState string
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    modifyPrices GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice[]
    Change the price difference to be made up after the instance package.
    notSupportModifyMessage string
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.
    bundles Sequence[GetLighthouseModifyInstanceBundleModifyBundleSetBundle]
    Package information.
    modify_bundle_state str
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    modify_prices Sequence[GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice]
    Change the price difference to be made up after the instance package.
    not_support_modify_message str
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.
    bundles List<Property Map>
    Package information.
    modifyBundleState String
    Change the status of the package. Value:

    • SOLD_OUT: the package is sold out;
    • AVAILABLE: support package changes;
    • UNAVAILABLE: package changes are not supported for the time being.
    modifyPrices List<Property Map>
    Change the price difference to be made up after the instance package.
    notSupportModifyMessage String
    Package change reason information is not supported. When the package status is changed to AVAILABLE, the information is empty.

    GetLighthouseModifyInstanceBundleModifyBundleSetBundle

    BundleDisplayLabel string
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    BundleId string
    Package ID.
    BundleSalesState string
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    BundleType string
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    BundleTypeDescription string
    Package type description information.
    Cpu double
    CPU.
    InternetChargeType string
    Network billing mode.
    InternetMaxBandwidthOut double
    Peak bandwidth in Mbps.
    Memory double
    Memory size in GB.
    MonthlyTraffic double
    Monthly network traffic in Gb.
    Prices List<GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice>
    Current package unit price information.
    SupportLinuxUnixPlatform bool
    Whether Linux/Unix is supported.
    SupportWindowsPlatform bool
    Whether Windows is supported.
    SystemDiskSize double
    System disk size.
    SystemDiskType string
    System disk type.
    BundleDisplayLabel string
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    BundleId string
    Package ID.
    BundleSalesState string
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    BundleType string
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    BundleTypeDescription string
    Package type description information.
    Cpu float64
    CPU.
    InternetChargeType string
    Network billing mode.
    InternetMaxBandwidthOut float64
    Peak bandwidth in Mbps.
    Memory float64
    Memory size in GB.
    MonthlyTraffic float64
    Monthly network traffic in Gb.
    Prices []GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice
    Current package unit price information.
    SupportLinuxUnixPlatform bool
    Whether Linux/Unix is supported.
    SupportWindowsPlatform bool
    Whether Windows is supported.
    SystemDiskSize float64
    System disk size.
    SystemDiskType string
    System disk type.
    bundleDisplayLabel String
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    bundleId String
    Package ID.
    bundleSalesState String
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    bundleType String
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    bundleTypeDescription String
    Package type description information.
    cpu Double
    CPU.
    internetChargeType String
    Network billing mode.
    internetMaxBandwidthOut Double
    Peak bandwidth in Mbps.
    memory Double
    Memory size in GB.
    monthlyTraffic Double
    Monthly network traffic in Gb.
    prices List<GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice>
    Current package unit price information.
    supportLinuxUnixPlatform Boolean
    Whether Linux/Unix is supported.
    supportWindowsPlatform Boolean
    Whether Windows is supported.
    systemDiskSize Double
    System disk size.
    systemDiskType String
    System disk type.
    bundleDisplayLabel string
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    bundleId string
    Package ID.
    bundleSalesState string
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    bundleType string
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    bundleTypeDescription string
    Package type description information.
    cpu number
    CPU.
    internetChargeType string
    Network billing mode.
    internetMaxBandwidthOut number
    Peak bandwidth in Mbps.
    memory number
    Memory size in GB.
    monthlyTraffic number
    Monthly network traffic in Gb.
    prices GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice[]
    Current package unit price information.
    supportLinuxUnixPlatform boolean
    Whether Linux/Unix is supported.
    supportWindowsPlatform boolean
    Whether Windows is supported.
    systemDiskSize number
    System disk size.
    systemDiskType string
    System disk type.
    bundle_display_label str
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    bundle_id str
    Package ID.
    bundle_sales_state str
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    bundle_type str
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    bundle_type_description str
    Package type description information.
    cpu float
    CPU.
    internet_charge_type str
    Network billing mode.
    internet_max_bandwidth_out float
    Peak bandwidth in Mbps.
    memory float
    Memory size in GB.
    monthly_traffic float
    Monthly network traffic in Gb.
    prices Sequence[GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice]
    Current package unit price information.
    support_linux_unix_platform bool
    Whether Linux/Unix is supported.
    support_windows_platform bool
    Whether Windows is supported.
    system_disk_size float
    System disk size.
    system_disk_type str
    System disk type.
    bundleDisplayLabel String
    Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
    bundleId String
    Package ID.
    bundleSalesState String
    Package sale status. Valid values are AVAILABLE, SOLD_OUT.
    bundleType String
    Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
    bundleTypeDescription String
    Package type description information.
    cpu Number
    CPU.
    internetChargeType String
    Network billing mode.
    internetMaxBandwidthOut Number
    Peak bandwidth in Mbps.
    memory Number
    Memory size in GB.
    monthlyTraffic Number
    Monthly network traffic in Gb.
    prices List<Property Map>
    Current package unit price information.
    supportLinuxUnixPlatform Boolean
    Whether Linux/Unix is supported.
    supportWindowsPlatform Boolean
    Whether Windows is supported.
    systemDiskSize Number
    System disk size.
    systemDiskType String
    System disk type.

    GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice

    GetLighthouseModifyInstanceBundleModifyBundleSetBundlePriceInstancePrice

    Currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    Discount double
    Discount.
    DiscountPrice double
    Discounted price.
    OriginalBundlePrice double
    Original unit price of the package.
    OriginalPrice double
    Original price.
    Currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    Discount float64
    Discount.
    DiscountPrice float64
    Discounted price.
    OriginalBundlePrice float64
    Original unit price of the package.
    OriginalPrice float64
    Original price.
    currency String
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount Double
    Discount.
    discountPrice Double
    Discounted price.
    originalBundlePrice Double
    Original unit price of the package.
    originalPrice Double
    Original price.
    currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount number
    Discount.
    discountPrice number
    Discounted price.
    originalBundlePrice number
    Original unit price of the package.
    originalPrice number
    Original price.
    currency str
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount float
    Discount.
    discount_price float
    Discounted price.
    original_bundle_price float
    Original unit price of the package.
    original_price float
    Original price.
    currency String
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount Number
    Discount.
    discountPrice Number
    Discounted price.
    originalBundlePrice Number
    Original unit price of the package.
    originalPrice Number
    Original price.

    GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice

    GetLighthouseModifyInstanceBundleModifyBundleSetModifyPriceInstancePrice

    Currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    Discount double
    Discount.
    DiscountPrice double
    Discounted price.
    OriginalBundlePrice double
    Original unit price of the package.
    OriginalPrice double
    Original price.
    Currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    Discount float64
    Discount.
    DiscountPrice float64
    Discounted price.
    OriginalBundlePrice float64
    Original unit price of the package.
    OriginalPrice float64
    Original price.
    currency String
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount Double
    Discount.
    discountPrice Double
    Discounted price.
    originalBundlePrice Double
    Original unit price of the package.
    originalPrice Double
    Original price.
    currency string
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount number
    Discount.
    discountPrice number
    Discounted price.
    originalBundlePrice number
    Original unit price of the package.
    originalPrice number
    Original price.
    currency str
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount float
    Discount.
    discount_price float
    Discounted price.
    original_bundle_price float
    Original unit price of the package.
    original_price float
    Original price.
    currency String
    A monetary unit of price. Value range CNY: RMB. USD: us dollar.
    discount Number
    Discount.
    discountPrice Number
    Discounted price.
    originalBundlePrice Number
    Original unit price of the package.
    originalPrice Number
    Original price.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.188 published on Monday, Apr 28, 2025 by tencentcloudstack