Viewing docs for tencentcloud 1.82.75
published on Monday, Mar 16, 2026 by tencentcloudstack
published on Monday, Mar 16, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.75
published on Monday, Mar 16, 2026 by tencentcloudstack
published on Monday, Mar 16, 2026 by tencentcloudstack
Use this data source to query instances type.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getInstanceTypes({
availabilityZone: "ap-guangzhou-6",
cpuCoreCount: 4,
memorySize: 8,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_instance_types(availability_zone="ap-guangzhou-6",
cpu_core_count=4,
memory_size=8)
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.GetInstanceTypes(ctx, &tencentcloud.GetInstanceTypesArgs{
AvailabilityZone: pulumi.StringRef("ap-guangzhou-6"),
CpuCoreCount: pulumi.Float64Ref(4),
MemorySize: pulumi.Float64Ref(8),
}, 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 example = Tencentcloud.GetInstanceTypes.Invoke(new()
{
AvailabilityZone = "ap-guangzhou-6",
CpuCoreCount = 4,
MemorySize = 8,
});
});
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.GetInstanceTypesArgs;
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 example = TencentcloudFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
.availabilityZone("ap-guangzhou-6")
.cpuCoreCount(4)
.memorySize(8)
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getInstanceTypes
arguments:
availabilityZone: ap-guangzhou-6
cpuCoreCount: 4
memorySize: 8
Complete Example
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getInstanceTypes({
cpuCoreCount: 4,
memorySize: 8,
excludeSoldOut: true,
filters: [
{
name: "instance-family",
values: ["SA2"],
},
{
name: "zone",
values: ["ap-guangzhou-6"],
},
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_instance_types(cpu_core_count=4,
memory_size=8,
exclude_sold_out=True,
filters=[
{
"name": "instance-family",
"values": ["SA2"],
},
{
"name": "zone",
"values": ["ap-guangzhou-6"],
},
])
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.GetInstanceTypes(ctx, &tencentcloud.GetInstanceTypesArgs{
CpuCoreCount: pulumi.Float64Ref(4),
MemorySize: pulumi.Float64Ref(8),
ExcludeSoldOut: pulumi.BoolRef(true),
Filters: []tencentcloud.GetInstanceTypesFilter{
{
Name: "instance-family",
Values: []string{
"SA2",
},
},
{
Name: "zone",
Values: []string{
"ap-guangzhou-6",
},
},
},
}, 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 example = Tencentcloud.GetInstanceTypes.Invoke(new()
{
CpuCoreCount = 4,
MemorySize = 8,
ExcludeSoldOut = true,
Filters = new[]
{
new Tencentcloud.Inputs.GetInstanceTypesFilterInputArgs
{
Name = "instance-family",
Values = new[]
{
"SA2",
},
},
new Tencentcloud.Inputs.GetInstanceTypesFilterInputArgs
{
Name = "zone",
Values = new[]
{
"ap-guangzhou-6",
},
},
},
});
});
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.GetInstanceTypesArgs;
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 example = TencentcloudFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
.cpuCoreCount(4)
.memorySize(8)
.excludeSoldOut(true)
.filters(
GetInstanceTypesFilterArgs.builder()
.name("instance-family")
.values("SA2")
.build(),
GetInstanceTypesFilterArgs.builder()
.name("zone")
.values("ap-guangzhou-6")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getInstanceTypes
arguments:
cpuCoreCount: 4
memorySize: 8
excludeSoldOut: true
filters:
- name: instance-family
values:
- SA2
- name: zone
values:
- ap-guangzhou-6
Query with Network and Performance Requirements
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const highNetwork = tencentcloud.getInstanceTypes({
availabilityZone: "ap-guangzhou-6",
cpuCoreCount: 8,
memorySize: 16,
});
export const instanceDetails = highNetwork.then(highNetwork => .map(instance => ({
type: instance.instanceType,
typeName: instance.typeName,
networkCard: instance.networkCard,
bandwidth: instance.instanceBandwidth,
pps: instance.instancePps,
cpuType: instance.cpuType,
frequency: instance.frequency,
statusCategory: instance.statusCategory,
})));
import pulumi
import pulumi_tencentcloud as tencentcloud
high_network = tencentcloud.get_instance_types(availability_zone="ap-guangzhou-6",
cpu_core_count=8,
memory_size=16)
pulumi.export("instanceDetails", [{
"type": instance.instance_type,
"typeName": instance.type_name,
"networkCard": instance.network_card,
"bandwidth": instance.instance_bandwidth,
"pps": instance.instance_pps,
"cpuType": instance.cpu_type,
"frequency": instance.frequency,
"statusCategory": instance.status_category,
} for instance in high_network.instance_types])
Example coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var highNetwork = Tencentcloud.GetInstanceTypes.Invoke(new()
{
AvailabilityZone = "ap-guangzhou-6",
CpuCoreCount = 8,
MemorySize = 16,
});
return new Dictionary<string, object?>
{
["instanceDetails"] = .Select(instance =>
{
return
{
{ "type", instance.InstanceType },
{ "typeName", instance.TypeName },
{ "networkCard", instance.NetworkCard },
{ "bandwidth", instance.InstanceBandwidth },
{ "pps", instance.InstancePps },
{ "cpuType", instance.CpuType },
{ "frequency", instance.Frequency },
{ "statusCategory", instance.StatusCategory },
};
}).ToList(),
};
});
Example coming soon!
Example coming soon!
Query GPU Instances
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const gpuInstances = tencentcloud.getInstanceTypes({
gpuCoreCount: 1,
filters: [{
name: "zone",
values: ["ap-guangzhou-6"],
}],
});
export const gpuDetails = gpuInstances.then(gpuInstances => .map(instance => ({
type: instance.instanceType,
gpuCount: instance.gpuCount,
fpga: instance.fpga,
})));
import pulumi
import pulumi_tencentcloud as tencentcloud
gpu_instances = tencentcloud.get_instance_types(gpu_core_count=1,
filters=[{
"name": "zone",
"values": ["ap-guangzhou-6"],
}])
pulumi.export("gpuDetails", [{
"type": instance.instance_type,
"gpuCount": instance.gpu_count,
"fpga": instance.fpga,
} for instance in gpu_instances.instance_types])
Example coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var gpuInstances = Tencentcloud.GetInstanceTypes.Invoke(new()
{
GpuCoreCount = 1,
Filters = new[]
{
new Tencentcloud.Inputs.GetInstanceTypesFilterInputArgs
{
Name = "zone",
Values = new[]
{
"ap-guangzhou-6",
},
},
},
});
return new Dictionary<string, object?>
{
["gpuDetails"] = .Select(instance =>
{
return
{
{ "type", instance.InstanceType },
{ "gpuCount", instance.GpuCount },
{ "fpga", instance.Fpga },
};
}).ToList(),
};
});
Example coming soon!
Example coming soon!
Using getInstanceTypes
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 getInstanceTypes(args: GetInstanceTypesArgs, opts?: InvokeOptions): Promise<GetInstanceTypesResult>
function getInstanceTypesOutput(args: GetInstanceTypesOutputArgs, opts?: InvokeOptions): Output<GetInstanceTypesResult>def get_instance_types(availability_zone: Optional[str] = None,
cbs_filter: Optional[GetInstanceTypesCbsFilter] = None,
cpu_core_count: Optional[float] = None,
exclude_sold_out: Optional[bool] = None,
filters: Optional[Sequence[GetInstanceTypesFilter]] = None,
gpu_core_count: Optional[float] = None,
id: Optional[str] = None,
memory_size: Optional[float] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInstanceTypesResult
def get_instance_types_output(availability_zone: Optional[pulumi.Input[str]] = None,
cbs_filter: Optional[pulumi.Input[GetInstanceTypesCbsFilterArgs]] = None,
cpu_core_count: Optional[pulumi.Input[float]] = None,
exclude_sold_out: Optional[pulumi.Input[bool]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInstanceTypesFilterArgs]]]] = None,
gpu_core_count: Optional[pulumi.Input[float]] = None,
id: Optional[pulumi.Input[str]] = None,
memory_size: Optional[pulumi.Input[float]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstanceTypesResult]func GetInstanceTypes(ctx *Context, args *GetInstanceTypesArgs, opts ...InvokeOption) (*GetInstanceTypesResult, error)
func GetInstanceTypesOutput(ctx *Context, args *GetInstanceTypesOutputArgs, opts ...InvokeOption) GetInstanceTypesResultOutput> Note: This function is named GetInstanceTypes in the Go SDK.
public static class GetInstanceTypes
{
public static Task<GetInstanceTypesResult> InvokeAsync(GetInstanceTypesArgs args, InvokeOptions? opts = null)
public static Output<GetInstanceTypesResult> Invoke(GetInstanceTypesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInstanceTypesResult> getInstanceTypes(GetInstanceTypesArgs args, InvokeOptions options)
public static Output<GetInstanceTypesResult> getInstanceTypes(GetInstanceTypesArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getInstanceTypes:getInstanceTypes
arguments:
# arguments dictionaryThe following arguments are supported:
- Availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - Cbs
Filter GetInstance Types Cbs Filter - Cbs filter.
- Cpu
Core doubleCount - The number of CPU cores of the instance.
- Exclude
Sold boolOut - Indicate to filter instances types that is sold out or not, default is false.
- Filters
List<Get
Instance Types Filter> - One or more name/value pairs to filter. This field is conflict with
availability_zone. - Gpu
Core doubleCount - The number of GPU cores of the instance.
- Id string
- Memory
Size double - Instance memory capacity, unit in GB.
- Result
Output stringFile - Used to save results.
- Availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - Cbs
Filter GetInstance Types Cbs Filter - Cbs filter.
- Cpu
Core float64Count - The number of CPU cores of the instance.
- Exclude
Sold boolOut - Indicate to filter instances types that is sold out or not, default is false.
- Filters
[]Get
Instance Types Filter - One or more name/value pairs to filter. This field is conflict with
availability_zone. - Gpu
Core float64Count - The number of GPU cores of the instance.
- Id string
- Memory
Size float64 - Instance memory capacity, unit in GB.
- Result
Output stringFile - Used to save results.
- availability
Zone String - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Filter GetInstance Types Cbs Filter - Cbs filter.
- cpu
Core DoubleCount - The number of CPU cores of the instance.
- exclude
Sold BooleanOut - Indicate to filter instances types that is sold out or not, default is false.
- filters
List<Get
Instance Types Filter> - One or more name/value pairs to filter. This field is conflict with
availability_zone. - gpu
Core DoubleCount - The number of GPU cores of the instance.
- id String
- memory
Size Double - Instance memory capacity, unit in GB.
- result
Output StringFile - Used to save results.
- availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Filter GetInstance Types Cbs Filter - Cbs filter.
- cpu
Core numberCount - The number of CPU cores of the instance.
- exclude
Sold booleanOut - Indicate to filter instances types that is sold out or not, default is false.
- filters
Get
Instance Types Filter[] - One or more name/value pairs to filter. This field is conflict with
availability_zone. - gpu
Core numberCount - The number of GPU cores of the instance.
- id string
- memory
Size number - Instance memory capacity, unit in GB.
- result
Output stringFile - Used to save results.
- availability_
zone str - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs_
filter GetInstance Types Cbs Filter - Cbs filter.
- cpu_
core_ floatcount - The number of CPU cores of the instance.
- exclude_
sold_ boolout - Indicate to filter instances types that is sold out or not, default is false.
- filters
Sequence[Get
Instance Types Filter] - One or more name/value pairs to filter. This field is conflict with
availability_zone. - gpu_
core_ floatcount - The number of GPU cores of the instance.
- id str
- memory_
size float - Instance memory capacity, unit in GB.
- result_
output_ strfile - Used to save results.
- availability
Zone String - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Filter Property Map - Cbs filter.
- cpu
Core NumberCount - The number of CPU cores of the instance.
- exclude
Sold BooleanOut - Indicate to filter instances types that is sold out or not, default is false.
- filters List<Property Map>
- One or more name/value pairs to filter. This field is conflict with
availability_zone. - gpu
Core NumberCount - The number of GPU cores of the instance.
- id String
- memory
Size Number - Instance memory capacity, unit in GB.
- result
Output StringFile - Used to save results.
getInstanceTypes Result
The following output properties are available:
- Id string
- Instance
Types List<GetInstance Types Instance Type> - An information list of cvm instance. Each element contains the following attributes:
- Availability
Zone string - The available zone that the CVM instance locates at.
- Cbs
Filter GetInstance Types Cbs Filter - Cpu
Core doubleCount - The number of CPU cores of the instance.
- Exclude
Sold boolOut - Filters
List<Get
Instance Types Filter> - Gpu
Core doubleCount - The number of GPU cores of the instance.
- Memory
Size double - Instance memory capacity, unit in GB.
- Result
Output stringFile
- Id string
- Instance
Types []GetInstance Types Instance Type - An information list of cvm instance. Each element contains the following attributes:
- Availability
Zone string - The available zone that the CVM instance locates at.
- Cbs
Filter GetInstance Types Cbs Filter - Cpu
Core float64Count - The number of CPU cores of the instance.
- Exclude
Sold boolOut - Filters
[]Get
Instance Types Filter - Gpu
Core float64Count - The number of GPU cores of the instance.
- Memory
Size float64 - Instance memory capacity, unit in GB.
- Result
Output stringFile
- id String
- instance
Types List<GetInstance Types Instance Type> - An information list of cvm instance. Each element contains the following attributes:
- availability
Zone String - The available zone that the CVM instance locates at.
- cbs
Filter GetInstance Types Cbs Filter - cpu
Core DoubleCount - The number of CPU cores of the instance.
- exclude
Sold BooleanOut - filters
List<Get
Instance Types Filter> - gpu
Core DoubleCount - The number of GPU cores of the instance.
- memory
Size Double - Instance memory capacity, unit in GB.
- result
Output StringFile
- id string
- instance
Types GetInstance Types Instance Type[] - An information list of cvm instance. Each element contains the following attributes:
- availability
Zone string - The available zone that the CVM instance locates at.
- cbs
Filter GetInstance Types Cbs Filter - cpu
Core numberCount - The number of CPU cores of the instance.
- exclude
Sold booleanOut - filters
Get
Instance Types Filter[] - gpu
Core numberCount - The number of GPU cores of the instance.
- memory
Size number - Instance memory capacity, unit in GB.
- result
Output stringFile
- id str
- instance_
types Sequence[GetInstance Types Instance Type] - An information list of cvm instance. Each element contains the following attributes:
- availability_
zone str - The available zone that the CVM instance locates at.
- cbs_
filter GetInstance Types Cbs Filter - cpu_
core_ floatcount - The number of CPU cores of the instance.
- exclude_
sold_ boolout - filters
Sequence[Get
Instance Types Filter] - gpu_
core_ floatcount - The number of GPU cores of the instance.
- memory_
size float - Instance memory capacity, unit in GB.
- result_
output_ strfile
- id String
- instance
Types List<Property Map> - An information list of cvm instance. Each element contains the following attributes:
- availability
Zone String - The available zone that the CVM instance locates at.
- cbs
Filter Property Map - cpu
Core NumberCount - The number of CPU cores of the instance.
- exclude
Sold BooleanOut - filters List<Property Map>
- gpu
Core NumberCount - The number of GPU cores of the instance.
- memory
Size Number - Instance memory capacity, unit in GB.
- result
Output StringFile
Supporting Types
GetInstanceTypesCbsFilter
- Disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- Disk
Types List<string> - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- Disk
Usage string - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- Disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- Disk
Types []string - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- Disk
Usage string - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- disk
Charge StringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Types List<String> - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage String - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Types string[] - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage string - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- disk_
charge_ strtype - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk_
types Sequence[str] - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk_
usage str - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- disk
Charge StringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Types List<String> - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage String - System disk or data disk. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
GetInstanceTypesFilter
GetInstanceTypesInstanceType
- Availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - Cbs
Configs List<GetInstance Types Instance Type Cbs Config> - CBS config. The cbs_configs is populated when the cbs_filter is added.
- Cpu
Core doubleCount - The number of CPU cores of the instance.
- Cpu
Type string - Processor model.
- Externals
List<Get
Instance Types Instance Type External> - Extended attributes.
- Family string
- Type series of the instance.
- Fpga double
- Number of FPGA cores.
- Frequency string
- CPU frequency information.
- Gpu
Core doubleCount - The number of GPU cores of the instance.
- Gpu
Count double - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- Instance
Bandwidth double - Internal network bandwidth, unit: Gbps.
- Instance
Charge stringType - Charge type of the instance.
- Instance
Pps double - Network packet forwarding capacity, unit: 10K PPS.
- Instance
Type string - Type of the instance.
- Local
Disk List<GetType Lists Instance Types Instance Type Local Disk Type List> - List of local disk specifications. Empty if instance type does not support local disks.
- Memory
Size double - Instance memory capacity, unit in GB.
- Network
Card double - Network card type, for example: 25 represents 25G network card.
- Prices
List<Get
Instance Types Instance Type Price> - Instance pricing information.
- Remark string
- Instance remark information.
- Sold
Out stringReason - Reason for sold out status.
- Status string
- Sell status of the instance.
- Status
Category string - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- Storage
Block doubleAmount - Number of local storage blocks.
- Type
Name string - Instance type display name.
- Availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - Cbs
Configs []GetInstance Types Instance Type Cbs Config - CBS config. The cbs_configs is populated when the cbs_filter is added.
- Cpu
Core float64Count - The number of CPU cores of the instance.
- Cpu
Type string - Processor model.
- Externals
[]Get
Instance Types Instance Type External - Extended attributes.
- Family string
- Type series of the instance.
- Fpga float64
- Number of FPGA cores.
- Frequency string
- CPU frequency information.
- Gpu
Core float64Count - The number of GPU cores of the instance.
- Gpu
Count float64 - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- Instance
Bandwidth float64 - Internal network bandwidth, unit: Gbps.
- Instance
Charge stringType - Charge type of the instance.
- Instance
Pps float64 - Network packet forwarding capacity, unit: 10K PPS.
- Instance
Type string - Type of the instance.
- Local
Disk []GetType Lists Instance Types Instance Type Local Disk Type List - List of local disk specifications. Empty if instance type does not support local disks.
- Memory
Size float64 - Instance memory capacity, unit in GB.
- Network
Card float64 - Network card type, for example: 25 represents 25G network card.
- Prices
[]Get
Instance Types Instance Type Price - Instance pricing information.
- Remark string
- Instance remark information.
- Sold
Out stringReason - Reason for sold out status.
- Status string
- Sell status of the instance.
- Status
Category string - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- Storage
Block float64Amount - Number of local storage blocks.
- Type
Name string - Instance type display name.
- availability
Zone String - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Configs List<GetInstance Types Instance Type Cbs Config> - CBS config. The cbs_configs is populated when the cbs_filter is added.
- cpu
Core DoubleCount - The number of CPU cores of the instance.
- cpu
Type String - Processor model.
- externals
List<Get
Instance Types Instance Type External> - Extended attributes.
- family String
- Type series of the instance.
- fpga Double
- Number of FPGA cores.
- frequency String
- CPU frequency information.
- gpu
Core DoubleCount - The number of GPU cores of the instance.
- gpu
Count Double - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- instance
Bandwidth Double - Internal network bandwidth, unit: Gbps.
- instance
Charge StringType - Charge type of the instance.
- instance
Pps Double - Network packet forwarding capacity, unit: 10K PPS.
- instance
Type String - Type of the instance.
- local
Disk List<GetType Lists Instance Types Instance Type Local Disk Type List> - List of local disk specifications. Empty if instance type does not support local disks.
- memory
Size Double - Instance memory capacity, unit in GB.
- network
Card Double - Network card type, for example: 25 represents 25G network card.
- prices
List<Get
Instance Types Instance Type Price> - Instance pricing information.
- remark String
- Instance remark information.
- sold
Out StringReason - Reason for sold out status.
- status String
- Sell status of the instance.
- status
Category String - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- storage
Block DoubleAmount - Number of local storage blocks.
- type
Name String - Instance type display name.
- availability
Zone string - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Configs GetInstance Types Instance Type Cbs Config[] - CBS config. The cbs_configs is populated when the cbs_filter is added.
- cpu
Core numberCount - The number of CPU cores of the instance.
- cpu
Type string - Processor model.
- externals
Get
Instance Types Instance Type External[] - Extended attributes.
- family string
- Type series of the instance.
- fpga number
- Number of FPGA cores.
- frequency string
- CPU frequency information.
- gpu
Core numberCount - The number of GPU cores of the instance.
- gpu
Count number - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- instance
Bandwidth number - Internal network bandwidth, unit: Gbps.
- instance
Charge stringType - Charge type of the instance.
- instance
Pps number - Network packet forwarding capacity, unit: 10K PPS.
- instance
Type string - Type of the instance.
- local
Disk GetType Lists Instance Types Instance Type Local Disk Type List[] - List of local disk specifications. Empty if instance type does not support local disks.
- memory
Size number - Instance memory capacity, unit in GB.
- network
Card number - Network card type, for example: 25 represents 25G network card.
- prices
Get
Instance Types Instance Type Price[] - Instance pricing information.
- remark string
- Instance remark information.
- sold
Out stringReason - Reason for sold out status.
- status string
- Sell status of the instance.
- status
Category string - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- storage
Block numberAmount - Number of local storage blocks.
- type
Name string - Instance type display name.
- availability_
zone str - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs_
configs Sequence[GetInstance Types Instance Type Cbs Config] - CBS config. The cbs_configs is populated when the cbs_filter is added.
- cpu_
core_ floatcount - The number of CPU cores of the instance.
- cpu_
type str - Processor model.
- externals
Sequence[Get
Instance Types Instance Type External] - Extended attributes.
- family str
- Type series of the instance.
- fpga float
- Number of FPGA cores.
- frequency str
- CPU frequency information.
- gpu_
core_ floatcount - The number of GPU cores of the instance.
- gpu_
count float - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- instance_
bandwidth float - Internal network bandwidth, unit: Gbps.
- instance_
charge_ strtype - Charge type of the instance.
- instance_
pps float - Network packet forwarding capacity, unit: 10K PPS.
- instance_
type str - Type of the instance.
- local_
disk_ Sequence[Gettype_ lists Instance Types Instance Type Local Disk Type List] - List of local disk specifications. Empty if instance type does not support local disks.
- memory_
size float - Instance memory capacity, unit in GB.
- network_
card float - Network card type, for example: 25 represents 25G network card.
- prices
Sequence[Get
Instance Types Instance Type Price] - Instance pricing information.
- remark str
- Instance remark information.
- sold_
out_ strreason - Reason for sold out status.
- status str
- Sell status of the instance.
- status_
category str - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- storage_
block_ floatamount - Number of local storage blocks.
- type_
name str - Instance type display name.
- availability
Zone String - The available zone that the CVM instance locates at. This field is conflict with
filter. - cbs
Configs List<Property Map> - CBS config. The cbs_configs is populated when the cbs_filter is added.
- cpu
Core NumberCount - The number of CPU cores of the instance.
- cpu
Type String - Processor model.
- externals List<Property Map>
- Extended attributes.
- family String
- Type series of the instance.
- fpga Number
- Number of FPGA cores.
- frequency String
- CPU frequency information.
- gpu
Core NumberCount - The number of GPU cores of the instance.
- gpu
Count Number - Physical GPU card count mapped to instance. vGPU type is less than 1, direct-attach GPU type is greater than or equal to 1.
- instance
Bandwidth Number - Internal network bandwidth, unit: Gbps.
- instance
Charge StringType - Charge type of the instance.
- instance
Pps Number - Network packet forwarding capacity, unit: 10K PPS.
- instance
Type String - Type of the instance.
- local
Disk List<Property Map>Type Lists - List of local disk specifications. Empty if instance type does not support local disks.
- memory
Size Number - Instance memory capacity, unit in GB.
- network
Card Number - Network card type, for example: 25 represents 25G network card.
- prices List<Property Map>
- Instance pricing information.
- remark String
- Instance remark information.
- sold
Out StringReason - Reason for sold out status.
- status String
- Sell status of the instance.
- status
Category String - Stock status category. Valid values: EnoughStock, NormalStock, UnderStock, WithoutStock.
- storage
Block NumberAmount - Number of local storage blocks.
- type
Name String - Instance type display name.
GetInstanceTypesInstanceTypeCbsConfig
- Available bool
- Whether the configuration is available.
- Device
Class string - Device class.
- Disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- Disk
Type string - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- Disk
Usage string - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- Extra
Performance List<double>Ranges - Extra performance range.
- Instance
Family string - Instance family.
- Max
Disk doubleSize - The maximum configurable cloud disk size, in GB.
- Min
Disk doubleSize - The minimum configurable cloud disk size, in GB.
- Step
Size double - Minimum step size change in cloud disk size, in GB.
- Zone string
- The availability zone to which the Cloud Block Storage belongs.
- Available bool
- Whether the configuration is available.
- Device
Class string - Device class.
- Disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- Disk
Type string - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- Disk
Usage string - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- Extra
Performance []float64Ranges - Extra performance range.
- Instance
Family string - Instance family.
- Max
Disk float64Size - The maximum configurable cloud disk size, in GB.
- Min
Disk float64Size - The minimum configurable cloud disk size, in GB.
- Step
Size float64 - Minimum step size change in cloud disk size, in GB.
- Zone string
- The availability zone to which the Cloud Block Storage belongs.
- available Boolean
- Whether the configuration is available.
- device
Class String - Device class.
- disk
Charge StringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Type String - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage String - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- extra
Performance List<Double>Ranges - Extra performance range.
- instance
Family String - Instance family.
- max
Disk DoubleSize - The maximum configurable cloud disk size, in GB.
- min
Disk DoubleSize - The minimum configurable cloud disk size, in GB.
- step
Size Double - Minimum step size change in cloud disk size, in GB.
- zone String
- The availability zone to which the Cloud Block Storage belongs.
- available boolean
- Whether the configuration is available.
- device
Class string - Device class.
- disk
Charge stringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Type string - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage string - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- extra
Performance number[]Ranges - Extra performance range.
- instance
Family string - Instance family.
- max
Disk numberSize - The maximum configurable cloud disk size, in GB.
- min
Disk numberSize - The minimum configurable cloud disk size, in GB.
- step
Size number - Minimum step size change in cloud disk size, in GB.
- zone string
- The availability zone to which the Cloud Block Storage belongs.
- available bool
- Whether the configuration is available.
- device_
class str - Device class.
- disk_
charge_ strtype - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk_
type str - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk_
usage str - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- extra_
performance_ Sequence[float]ranges - Extra performance range.
- instance_
family str - Instance family.
- max_
disk_ floatsize - The maximum configurable cloud disk size, in GB.
- min_
disk_ floatsize - The minimum configurable cloud disk size, in GB.
- step_
size float - Minimum step size change in cloud disk size, in GB.
- zone str
- The availability zone to which the Cloud Block Storage belongs.
- available Boolean
- Whether the configuration is available.
- device
Class String - Device class.
- disk
Charge StringType - Payment model. Value range:
- PREPAID: Prepaid;
- POSTPAID_BY_HOUR: Post-payment.
- disk
Type String - Hard disk media type. Value range:
- CLOUD_BASIC: Represents ordinary Cloud Block Storage;
- CLOUD_PREMIUM: Represents high-performance Cloud Block Storage;
- CLOUD_SSD: Represents SSD Cloud Block Storage;
- CLOUD_HSSD: Represents enhanced SSD Cloud Block Storage.
- disk
Usage String - Cloud disk type. Value range:
- SYSTEM_DISK: Represents the system disk;
- DATA_DISK: Represents the data disk.
- extra
Performance List<Number>Ranges - Extra performance range.
- instance
Family String - Instance family.
- max
Disk NumberSize - The maximum configurable cloud disk size, in GB.
- min
Disk NumberSize - The minimum configurable cloud disk size, in GB.
- step
Size Number - Minimum step size change in cloud disk size, in GB.
- zone String
- The availability zone to which the Cloud Block Storage belongs.
GetInstanceTypesInstanceTypeExternal
- Release
Address bool - Whether to release address.
- Storage
Block List<GetAttrs Instance Types Instance Type External Storage Block Attr> - HDD local storage attributes.
- Unsupport
Networks List<string> - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
- Release
Address bool - Whether to release address.
- Storage
Block []GetAttrs Instance Types Instance Type External Storage Block Attr - HDD local storage attributes.
- Unsupport
Networks []string - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
- release
Address Boolean - Whether to release address.
- storage
Block List<GetAttrs Instance Types Instance Type External Storage Block Attr> - HDD local storage attributes.
- unsupport
Networks List<String> - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
- release
Address boolean - Whether to release address.
- storage
Block GetAttrs Instance Types Instance Type External Storage Block Attr[] - HDD local storage attributes.
- unsupport
Networks string[] - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
- release_
address bool - Whether to release address.
- storage_
block_ Sequence[Getattrs Instance Types Instance Type External Storage Block Attr] - HDD local storage attributes.
- unsupport_
networks Sequence[str] - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
- release
Address Boolean - Whether to release address.
- storage
Block List<Property Map>Attrs - HDD local storage attributes.
- unsupport
Networks List<String> - Unsupported network types. Valid values: BASIC (basic network), VPC1.0 (VPC 1.0).
GetInstanceTypesInstanceTypeExternalStorageBlockAttr
GetInstanceTypesInstanceTypeLocalDiskTypeList
- Max
Size double - Maximum size of local disk, in GB.
- Min
Size double - Minimum size of local disk, in GB.
- Partition
Type string - Local disk partition type.
- Required string
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- Type string
- Local disk type.
- Max
Size float64 - Maximum size of local disk, in GB.
- Min
Size float64 - Minimum size of local disk, in GB.
- Partition
Type string - Local disk partition type.
- Required string
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- Type string
- Local disk type.
- max
Size Double - Maximum size of local disk, in GB.
- min
Size Double - Minimum size of local disk, in GB.
- partition
Type String - Local disk partition type.
- required String
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- type String
- Local disk type.
- max
Size number - Maximum size of local disk, in GB.
- min
Size number - Minimum size of local disk, in GB.
- partition
Type string - Local disk partition type.
- required string
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- type string
- Local disk type.
- max_
size float - Maximum size of local disk, in GB.
- min_
size float - Minimum size of local disk, in GB.
- partition_
type str - Local disk partition type.
- required str
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- type str
- Local disk type.
- max
Size Number - Maximum size of local disk, in GB.
- min
Size Number - Minimum size of local disk, in GB.
- partition
Type String - Local disk partition type.
- required String
- Whether local disk is required when purchasing. Valid values: REQUIRED, OPTIONAL.
- type String
- Local disk type.
GetInstanceTypesInstanceTypePrice
- Charge
Unit string - Subsequent billing unit. Valid values: HOUR, GB.
- Discount double
- Discount rate. For example, 20.0 means 20% off.
- Discount
Price double - Discount price for prepaid mode, unit: CNY.
- Original
Price double - Original price for prepaid mode, unit: CNY.
- Unit
Price double - Subsequent unit price, used in postpaid mode, unit: CNY.
- Unit
Price doubleDiscount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- Unit
Price doubleDiscount Second Step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- Unit
Price doubleDiscount Third Step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- Unit
Price doubleSecond Step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- Unit
Price doubleThird Step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- Charge
Unit string - Subsequent billing unit. Valid values: HOUR, GB.
- Discount float64
- Discount rate. For example, 20.0 means 20% off.
- Discount
Price float64 - Discount price for prepaid mode, unit: CNY.
- Original
Price float64 - Original price for prepaid mode, unit: CNY.
- Unit
Price float64 - Subsequent unit price, used in postpaid mode, unit: CNY.
- Unit
Price float64Discount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- Unit
Price float64Discount Second Step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- Unit
Price float64Discount Third Step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- Unit
Price float64Second Step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- Unit
Price float64Third Step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- charge
Unit String - Subsequent billing unit. Valid values: HOUR, GB.
- discount Double
- Discount rate. For example, 20.0 means 20% off.
- discount
Price Double - Discount price for prepaid mode, unit: CNY.
- original
Price Double - Original price for prepaid mode, unit: CNY.
- unit
Price Double - Subsequent unit price, used in postpaid mode, unit: CNY.
- unit
Price DoubleDiscount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- unit
Price DoubleDiscount Second Step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price DoubleDiscount Third Step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- unit
Price DoubleSecond Step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price DoubleThird Step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- charge
Unit string - Subsequent billing unit. Valid values: HOUR, GB.
- discount number
- Discount rate. For example, 20.0 means 20% off.
- discount
Price number - Discount price for prepaid mode, unit: CNY.
- original
Price number - Original price for prepaid mode, unit: CNY.
- unit
Price number - Subsequent unit price, used in postpaid mode, unit: CNY.
- unit
Price numberDiscount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- unit
Price numberDiscount Second Step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price numberDiscount Third Step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- unit
Price numberSecond Step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price numberThird Step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- charge_
unit str - Subsequent billing unit. Valid values: HOUR, GB.
- discount float
- Discount rate. For example, 20.0 means 20% off.
- discount_
price float - Discount price for prepaid mode, unit: CNY.
- original_
price float - Original price for prepaid mode, unit: CNY.
- unit_
price float - Subsequent unit price, used in postpaid mode, unit: CNY.
- unit_
price_ floatdiscount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- unit_
price_ floatdiscount_ second_ step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit_
price_ floatdiscount_ third_ step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- unit_
price_ floatsecond_ step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit_
price_ floatthird_ step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- charge
Unit String - Subsequent billing unit. Valid values: HOUR, GB.
- discount Number
- Discount rate. For example, 20.0 means 20% off.
- discount
Price Number - Discount price for prepaid mode, unit: CNY.
- original
Price Number - Original price for prepaid mode, unit: CNY.
- unit
Price Number - Subsequent unit price, used in postpaid mode, unit: CNY.
- unit
Price NumberDiscount - Subsequent discount unit price, used in postpaid mode, unit: CNY.
- unit
Price NumberDiscount Second Step - Subsequent discount unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price NumberDiscount Third Step - Discounted price of subsequent total cost for usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
- unit
Price NumberSecond Step - Subsequent unit price for time range (96, 360) hours in postpaid mode, unit: CNY.
- unit
Price NumberThird Step - Specifies the original price of subsequent total costs with a usage time interval exceeding 360 hr in postpaid billing mode. measurement unit: usd.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.82.75
published on Monday, Mar 16, 2026 by tencentcloudstack
published on Monday, Mar 16, 2026 by tencentcloudstack
