tencentcloud 1.81.188 published on Monday, Apr 28, 2025 by tencentcloudstack
tencentcloud.getLighthouseModifyInstanceBundle
Explore with Pulumi AI
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:
- Instance
Id string - Instance ID.
- Filters
List<Get
Lighthouse Modify Instance Bundle Filter> - 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
- Result
Output stringFile - Used to save results.
- Instance
Id string - Instance ID.
- Filters
[]Get
Lighthouse Modify Instance Bundle Filter - 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
- Result
Output stringFile - Used to save results.
- instance
Id String - Instance ID.
- filters
List<Get
Lighthouse Modify Instance Bundle Filter> - 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
- result
Output StringFile - Used to save results.
- instance
Id string - Instance ID.
- filters
Get
Lighthouse Modify Instance Bundle Filter[] - 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
- result
Output stringFile - Used to save results.
- instance_
id str - Instance ID.
- filters
Sequence[Get
Lighthouse Modify Instance Bundle Filter] - 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_ strfile - Used to save results.
- instance
Id 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
- result
Output StringFile - Used to save results.
getLighthouseModifyInstanceBundle Result
The following output properties are available:
- Id string
- Instance
Id string - Modify
Bundle List<GetSets Lighthouse Modify Instance Bundle Modify Bundle Set> - Change package details.
- Filters
List<Get
Lighthouse Modify Instance Bundle Filter> - Result
Output stringFile
- Id string
- Instance
Id string - Modify
Bundle []GetSets Lighthouse Modify Instance Bundle Modify Bundle Set - Change package details.
- Filters
[]Get
Lighthouse Modify Instance Bundle Filter - Result
Output stringFile
- id String
- instance
Id String - modify
Bundle List<GetSets Lighthouse Modify Instance Bundle Modify Bundle Set> - Change package details.
- filters
List<Get
Lighthouse Modify Instance Bundle Filter> - result
Output StringFile
- id string
- instance
Id string - modify
Bundle GetSets Lighthouse Modify Instance Bundle Modify Bundle Set[] - Change package details.
- filters
Get
Lighthouse Modify Instance Bundle Filter[] - result
Output stringFile
- id String
- instance
Id String - modify
Bundle List<Property Map>Sets - Change package details.
- filters List<Property Map>
- result
Output StringFile
Supporting Types
GetLighthouseModifyInstanceBundleFilter
GetLighthouseModifyInstanceBundleModifyBundleSet
- Bundles
List<Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle> - Package information.
- Modify
Bundle stringState - 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 List<GetLighthouse Modify Instance Bundle Modify Bundle Set Modify Price> - Change the price difference to be made up after the instance package.
- Not
Support stringModify Message - Package change reason information is not supported. When the package status is changed to
AVAILABLE
, the information is empty.
- Bundles
[]Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle - Package information.
- Modify
Bundle stringState - 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 []GetLighthouse Modify Instance Bundle Modify Bundle Set Modify Price - Change the price difference to be made up after the instance package.
- Not
Support stringModify Message - Package change reason information is not supported. When the package status is changed to
AVAILABLE
, the information is empty.
- bundles
List<Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle> - Package information.
- modify
Bundle StringState - 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 List<GetLighthouse Modify Instance Bundle Modify Bundle Set Modify Price> - Change the price difference to be made up after the instance package.
- not
Support StringModify Message - Package change reason information is not supported. When the package status is changed to
AVAILABLE
, the information is empty.
- bundles
Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle[] - Package information.
- modify
Bundle stringState - 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 GetLighthouse Modify Instance Bundle Modify Bundle Set Modify Price[] - Change the price difference to be made up after the instance package.
- not
Support stringModify Message - Package change reason information is not supported. When the package status is changed to
AVAILABLE
, the information is empty.
- bundles
Sequence[Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle] - Package information.
- modify_
bundle_ strstate - 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[GetLighthouse Modify Instance Bundle Modify Bundle Set Modify Price] - Change the price difference to be made up after the instance package.
- not_
support_ strmodify_ message - 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.
- modify
Bundle StringState - 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 List<Property Map> - Change the price difference to be made up after the instance package.
- not
Support StringModify Message - Package change reason information is not supported. When the package status is changed to
AVAILABLE
, the information is empty.
GetLighthouseModifyInstanceBundleModifyBundleSetBundle
- Bundle
Display stringLabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- Bundle
Id string - Package ID.
- Bundle
Sales stringState - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- Bundle
Type string - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- Bundle
Type stringDescription - Package type description information.
- Cpu double
- CPU.
- Internet
Charge stringType - Network billing mode.
- Internet
Max doubleBandwidth Out - Peak bandwidth in Mbps.
- Memory double
- Memory size in GB.
- Monthly
Traffic double - Monthly network traffic in Gb.
- Prices
List<Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle Price> - Current package unit price information.
- Support
Linux boolUnix Platform - Whether Linux/Unix is supported.
- Support
Windows boolPlatform - Whether Windows is supported.
- System
Disk doubleSize - System disk size.
- System
Disk stringType - System disk type.
- Bundle
Display stringLabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- Bundle
Id string - Package ID.
- Bundle
Sales stringState - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- Bundle
Type string - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- Bundle
Type stringDescription - Package type description information.
- Cpu float64
- CPU.
- Internet
Charge stringType - Network billing mode.
- Internet
Max float64Bandwidth Out - Peak bandwidth in Mbps.
- Memory float64
- Memory size in GB.
- Monthly
Traffic float64 - Monthly network traffic in Gb.
- Prices
[]Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle Price - Current package unit price information.
- Support
Linux boolUnix Platform - Whether Linux/Unix is supported.
- Support
Windows boolPlatform - Whether Windows is supported.
- System
Disk float64Size - System disk size.
- System
Disk stringType - System disk type.
- bundle
Display StringLabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- bundle
Id String - Package ID.
- bundle
Sales StringState - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- bundle
Type String - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- bundle
Type StringDescription - Package type description information.
- cpu Double
- CPU.
- internet
Charge StringType - Network billing mode.
- internet
Max DoubleBandwidth Out - Peak bandwidth in Mbps.
- memory Double
- Memory size in GB.
- monthly
Traffic Double - Monthly network traffic in Gb.
- prices
List<Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle Price> - Current package unit price information.
- support
Linux BooleanUnix Platform - Whether Linux/Unix is supported.
- support
Windows BooleanPlatform - Whether Windows is supported.
- system
Disk DoubleSize - System disk size.
- system
Disk StringType - System disk type.
- bundle
Display stringLabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- bundle
Id string - Package ID.
- bundle
Sales stringState - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- bundle
Type string - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- bundle
Type stringDescription - Package type description information.
- cpu number
- CPU.
- internet
Charge stringType - Network billing mode.
- internet
Max numberBandwidth Out - Peak bandwidth in Mbps.
- memory number
- Memory size in GB.
- monthly
Traffic number - Monthly network traffic in Gb.
- prices
Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle Price[] - Current package unit price information.
- support
Linux booleanUnix Platform - Whether Linux/Unix is supported.
- support
Windows booleanPlatform - Whether Windows is supported.
- system
Disk numberSize - System disk size.
- system
Disk stringType - System disk type.
- bundle_
display_ strlabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- bundle_
id str - Package ID.
- bundle_
sales_ strstate - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- bundle_
type str - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- bundle_
type_ strdescription - Package type description information.
- cpu float
- CPU.
- internet_
charge_ strtype - Network billing mode.
- internet_
max_ floatbandwidth_ out - Peak bandwidth in Mbps.
- memory float
- Memory size in GB.
- monthly_
traffic float - Monthly network traffic in Gb.
- prices
Sequence[Get
Lighthouse Modify Instance Bundle Modify Bundle Set Bundle Price] - Current package unit price information.
- support_
linux_ boolunix_ platform - Whether Linux/Unix is supported.
- support_
windows_ boolplatform - Whether Windows is supported.
- system_
disk_ floatsize - System disk size.
- system_
disk_ strtype - System disk type.
- bundle
Display StringLabel - Package tag.Valid values:ACTIVITY: promotional packageNORMAL: regular packageCAREFREE: carefree package.
- bundle
Id String - Package ID.
- bundle
Sales StringState - Package sale status. Valid values are AVAILABLE, SOLD_OUT.
- bundle
Type String - Package type.Valid values:GENERAL_BUNDLE: generalSTORAGE_BUNDLE: Storage.
- bundle
Type StringDescription - Package type description information.
- cpu Number
- CPU.
- internet
Charge StringType - Network billing mode.
- internet
Max NumberBandwidth Out - Peak bandwidth in Mbps.
- memory Number
- Memory size in GB.
- monthly
Traffic Number - Monthly network traffic in Gb.
- prices List<Property Map>
- Current package unit price information.
- support
Linux BooleanUnix Platform - Whether Linux/Unix is supported.
- support
Windows BooleanPlatform - Whether Windows is supported.
- system
Disk NumberSize - System disk size.
- system
Disk StringType - System disk type.
GetLighthouseModifyInstanceBundleModifyBundleSetBundlePrice
- instance
Prices List<Property Map> - Instance price.
GetLighthouseModifyInstanceBundleModifyBundleSetBundlePriceInstancePrice
- Currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- Discount double
- Discount.
- Discount
Price double - Discounted price.
- Original
Bundle doublePrice - Original unit price of the package.
- Original
Price double - Original price.
- Currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- Discount float64
- Discount.
- Discount
Price float64 - Discounted price.
- Original
Bundle float64Price - Original unit price of the package.
- Original
Price float64 - Original price.
- currency String
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- discount Double
- Discount.
- discount
Price Double - Discounted price.
- original
Bundle DoublePrice - Original unit price of the package.
- original
Price Double - Original price.
- currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- discount number
- Discount.
- discount
Price number - Discounted price.
- original
Bundle numberPrice - Original unit price of the package.
- original
Price 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_ floatprice - 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.
- discount
Price Number - Discounted price.
- original
Bundle NumberPrice - Original unit price of the package.
- original
Price Number - Original price.
GetLighthouseModifyInstanceBundleModifyBundleSetModifyPrice
- instance
Prices List<Property Map> - Instance price.
GetLighthouseModifyInstanceBundleModifyBundleSetModifyPriceInstancePrice
- Currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- Discount double
- Discount.
- Discount
Price double - Discounted price.
- Original
Bundle doublePrice - Original unit price of the package.
- Original
Price double - Original price.
- Currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- Discount float64
- Discount.
- Discount
Price float64 - Discounted price.
- Original
Bundle float64Price - Original unit price of the package.
- Original
Price float64 - Original price.
- currency String
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- discount Double
- Discount.
- discount
Price Double - Discounted price.
- original
Bundle DoublePrice - Original unit price of the package.
- original
Price Double - Original price.
- currency string
- A monetary unit of price. Value range CNY: RMB. USD: us dollar.
- discount number
- Discount.
- discount
Price number - Discounted price.
- original
Bundle numberPrice - Original unit price of the package.
- original
Price 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_ floatprice - 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.
- discount
Price Number - Discounted price.
- original
Bundle NumberPrice - Original unit price of the package.
- original
Price Number - Original price.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.188 published on Monday, Apr 28, 2025 by tencentcloudstack