tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
tencentcloud.getTeoPlans
Start a Neo task
Explain and create a tencentcloud.getTeoPlans resource
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
Use this data source to query detailed information of TEO plans
Example Usage
Query all plans
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getTeoPlans({});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_teo_plans()
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.GetTeoPlans(ctx, &tencentcloud.GetTeoPlansArgs{}, 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.GetTeoPlans.Invoke();
});
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.GetTeoPlansArgs;
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.getTeoPlans(GetTeoPlansArgs.builder()
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getTeoPlans
arguments: {}
Query plans by filters
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getTeoPlans({
order: "expire-time",
direction: "desc",
filters: [
{
name: "plan-id",
values: [
"edgeone-2o1xvpmq7nn",
"edgeone-2mezmk9s2xdx",
],
},
{
name: "plan-type",
values: [
"plan-trial",
"plan-personal",
"plan-basic",
"plan-standard",
"plan-enterprise",
],
},
{
name: "area",
values: [
"overseas",
"mainland",
"global",
],
},
{
name: "status",
values: [
"normal",
"expiring-soon",
"expired",
"isolated",
],
},
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_teo_plans(order="expire-time",
direction="desc",
filters=[
{
"name": "plan-id",
"values": [
"edgeone-2o1xvpmq7nn",
"edgeone-2mezmk9s2xdx",
],
},
{
"name": "plan-type",
"values": [
"plan-trial",
"plan-personal",
"plan-basic",
"plan-standard",
"plan-enterprise",
],
},
{
"name": "area",
"values": [
"overseas",
"mainland",
"global",
],
},
{
"name": "status",
"values": [
"normal",
"expiring-soon",
"expired",
"isolated",
],
},
])
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.GetTeoPlans(ctx, &tencentcloud.GetTeoPlansArgs{
Order: pulumi.StringRef("expire-time"),
Direction: pulumi.StringRef("desc"),
Filters: []tencentcloud.GetTeoPlansFilter{
{
Name: "plan-id",
Values: []string{
"edgeone-2o1xvpmq7nn",
"edgeone-2mezmk9s2xdx",
},
},
{
Name: "plan-type",
Values: []string{
"plan-trial",
"plan-personal",
"plan-basic",
"plan-standard",
"plan-enterprise",
},
},
{
Name: "area",
Values: []string{
"overseas",
"mainland",
"global",
},
},
{
Name: "status",
Values: []string{
"normal",
"expiring-soon",
"expired",
"isolated",
},
},
},
}, 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.GetTeoPlans.Invoke(new()
{
Order = "expire-time",
Direction = "desc",
Filters = new[]
{
new Tencentcloud.Inputs.GetTeoPlansFilterInputArgs
{
Name = "plan-id",
Values = new[]
{
"edgeone-2o1xvpmq7nn",
"edgeone-2mezmk9s2xdx",
},
},
new Tencentcloud.Inputs.GetTeoPlansFilterInputArgs
{
Name = "plan-type",
Values = new[]
{
"plan-trial",
"plan-personal",
"plan-basic",
"plan-standard",
"plan-enterprise",
},
},
new Tencentcloud.Inputs.GetTeoPlansFilterInputArgs
{
Name = "area",
Values = new[]
{
"overseas",
"mainland",
"global",
},
},
new Tencentcloud.Inputs.GetTeoPlansFilterInputArgs
{
Name = "status",
Values = new[]
{
"normal",
"expiring-soon",
"expired",
"isolated",
},
},
},
});
});
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.GetTeoPlansArgs;
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.getTeoPlans(GetTeoPlansArgs.builder()
.order("expire-time")
.direction("desc")
.filters(
GetTeoPlansFilterArgs.builder()
.name("plan-id")
.values(
"edgeone-2o1xvpmq7nn",
"edgeone-2mezmk9s2xdx")
.build(),
GetTeoPlansFilterArgs.builder()
.name("plan-type")
.values(
"plan-trial",
"plan-personal",
"plan-basic",
"plan-standard",
"plan-enterprise")
.build(),
GetTeoPlansFilterArgs.builder()
.name("area")
.values(
"overseas",
"mainland",
"global")
.build(),
GetTeoPlansFilterArgs.builder()
.name("status")
.values(
"normal",
"expiring-soon",
"expired",
"isolated")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getTeoPlans
arguments:
order: expire-time
direction: desc
filters:
- name: plan-id
values:
- edgeone-2o1xvpmq7nn
- edgeone-2mezmk9s2xdx
- name: plan-type
values:
- plan-trial
- plan-personal
- plan-basic
- plan-standard
- plan-enterprise
- name: area
values:
- overseas
- mainland
- global
- name: status
values:
- normal
- expiring-soon
- expired
- isolated
Using getTeoPlans
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 getTeoPlans(args: GetTeoPlansArgs, opts?: InvokeOptions): Promise<GetTeoPlansResult>
function getTeoPlansOutput(args: GetTeoPlansOutputArgs, opts?: InvokeOptions): Output<GetTeoPlansResult>def get_teo_plans(direction: Optional[str] = None,
filters: Optional[Sequence[GetTeoPlansFilter]] = None,
id: Optional[str] = None,
order: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTeoPlansResult
def get_teo_plans_output(direction: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetTeoPlansFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
order: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTeoPlansResult]func GetTeoPlans(ctx *Context, args *GetTeoPlansArgs, opts ...InvokeOption) (*GetTeoPlansResult, error)
func GetTeoPlansOutput(ctx *Context, args *GetTeoPlansOutputArgs, opts ...InvokeOption) GetTeoPlansResultOutput> Note: This function is named GetTeoPlans in the Go SDK.
public static class GetTeoPlans
{
public static Task<GetTeoPlansResult> InvokeAsync(GetTeoPlansArgs args, InvokeOptions? opts = null)
public static Output<GetTeoPlansResult> Invoke(GetTeoPlansInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTeoPlansResult> getTeoPlans(GetTeoPlansArgs args, InvokeOptions options)
public static Output<GetTeoPlansResult> getTeoPlans(GetTeoPlansArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getTeoPlans:getTeoPlans
arguments:
# arguments dictionaryThe following arguments are supported:
- Direction string
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- Filters
List<Get
Teo Plans Filter> - Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- Id string
- Order string
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- Result
Output stringFile - Used to save results.
- Direction string
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- Filters
[]Get
Teo Plans Filter - Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- Id string
- Order string
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- Result
Output stringFile - Used to save results.
- direction String
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- filters
List<Get
Teo Plans Filter> - Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- id String
- order String
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- result
Output StringFile - Used to save results.
- direction string
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- filters
Get
Teo Plans Filter[] - Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- id string
- order string
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- result
Output stringFile - Used to save results.
- direction str
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- filters
Sequence[Get
Teo Plans Filter] - Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- id str
- order str
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- result_
output_ strfile - Used to save results.
- direction String
- Sorting direction, the possible values are: asc: sort from small to large; desc: sort from large to small. If not filled in, the default value desc will be used.
- filters List<Property Map>
- Filter conditions, the upper limit of Filters. Values is 20. The detailed filtering conditions are as follows: plan-typeFilter according to [Package Type]. Optional types are: plan-trial: Trial Package; plan-personal: Personal Package; plan-basic: Basic Package; plan-standard: Standard Package; plan-enterprise: Enterprise Package. plan-idFilter according to [Package ID]. The package ID is in the form of: edgeone-268z103ob0sx.areaFilter according to [Package Acceleration Region]. Service area, optional types are: mainland: Mainland China; overseas: Global (excluding Mainland China); global: Global (including Mainland China).statusFilter by [Package Status].The available statuses are:normal: normal status;expiring-soon: about to expire;expired: expired;isolated: isolated..
- id String
- order String
- Sorting field, the values are: enable-time: effective time; expire-time: expiration time. If not filled in, the default value enable-time will be used.
- result
Output StringFile - Used to save results.
getTeoPlans Result
The following output properties are available:
- Id string
- Plans
List<Get
Teo Plans Plan> - Plan list.
- Direction string
- Filters
List<Get
Teo Plans Filter> - Order string
- Result
Output stringFile
- Id string
- Plans
[]Get
Teo Plans Plan - Plan list.
- Direction string
- Filters
[]Get
Teo Plans Filter - Order string
- Result
Output stringFile
- id String
- plans
List<Get
Teo Plans Plan> - Plan list.
- direction String
- filters
List<Get
Teo Plans Filter> - order String
- result
Output StringFile
- id string
- plans
Get
Teo Plans Plan[] - Plan list.
- direction string
- filters
Get
Teo Plans Filter[] - order string
- result
Output stringFile
- id str
- plans
Sequence[Get
Teo Plans Plan] - Plan list.
- direction str
- filters
Sequence[Get
Teo Plans Filter] - order str
- result_
output_ strfile
- id String
- plans List<Property Map>
- Plan list.
- direction String
- filters List<Property Map>
- order String
- result
Output StringFile
Supporting Types
GetTeoPlansFilter
GetTeoPlansPlan
- Acc
Traffic doubleCapacity - The content acceleration traffic specifications in the package, unit: byte.
- Area string
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- Bindable string
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- Cross
Mlc doubleTraffic Capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- Ddos
Traffic doubleCapacity - DDoS protection traffic specifications within the package, unit: bytes.
- Enabled
Time string - The package effective time.
- Expired
Time string - The expiration date of the package.
- Features List<string>
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- L4Traffic
Capacity double - Layer 4 acceleration traffic specifications within the package, unit: byte.
- Pay
Mode double - Payment type, possible values: 0: post-payment; 1: pre-payment..
- Plan
Id string - Plan ID.
- Plan
Type string - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- Sec
Request doubleCapacity - The number of secure requests in the package, unit: times.
- Sec
Traffic doubleCapacity - The security flow specification within the package, unit: byte.
- Smart
Request doubleCapacity - The number of intelligent acceleration requests in the package, unit: times.
- Smart
Traffic doubleCapacity - Smart acceleration traffic specifications within the package, unit: byte.
- Status string
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- Vau
Capacity double - VAU specifications in the package, unit: piece.
- Zones
Infos List<GetTeo Plans Plan Zones Info> - Site information bound to the package, including site ID, site name, and site status.
- Acc
Traffic float64Capacity - The content acceleration traffic specifications in the package, unit: byte.
- Area string
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- Bindable string
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- Cross
Mlc float64Traffic Capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- Ddos
Traffic float64Capacity - DDoS protection traffic specifications within the package, unit: bytes.
- Enabled
Time string - The package effective time.
- Expired
Time string - The expiration date of the package.
- Features []string
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- L4Traffic
Capacity float64 - Layer 4 acceleration traffic specifications within the package, unit: byte.
- Pay
Mode float64 - Payment type, possible values: 0: post-payment; 1: pre-payment..
- Plan
Id string - Plan ID.
- Plan
Type string - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- Sec
Request float64Capacity - The number of secure requests in the package, unit: times.
- Sec
Traffic float64Capacity - The security flow specification within the package, unit: byte.
- Smart
Request float64Capacity - The number of intelligent acceleration requests in the package, unit: times.
- Smart
Traffic float64Capacity - Smart acceleration traffic specifications within the package, unit: byte.
- Status string
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- Vau
Capacity float64 - VAU specifications in the package, unit: piece.
- Zones
Infos []GetTeo Plans Plan Zones Info - Site information bound to the package, including site ID, site name, and site status.
- acc
Traffic DoubleCapacity - The content acceleration traffic specifications in the package, unit: byte.
- area String
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- bindable String
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- cross
Mlc DoubleTraffic Capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- ddos
Traffic DoubleCapacity - DDoS protection traffic specifications within the package, unit: bytes.
- enabled
Time String - The package effective time.
- expired
Time String - The expiration date of the package.
- features List<String>
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- l4Traffic
Capacity Double - Layer 4 acceleration traffic specifications within the package, unit: byte.
- pay
Mode Double - Payment type, possible values: 0: post-payment; 1: pre-payment..
- plan
Id String - Plan ID.
- plan
Type String - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- sec
Request DoubleCapacity - The number of secure requests in the package, unit: times.
- sec
Traffic DoubleCapacity - The security flow specification within the package, unit: byte.
- smart
Request DoubleCapacity - The number of intelligent acceleration requests in the package, unit: times.
- smart
Traffic DoubleCapacity - Smart acceleration traffic specifications within the package, unit: byte.
- status String
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- vau
Capacity Double - VAU specifications in the package, unit: piece.
- zones
Infos List<GetTeo Plans Plan Zones Info> - Site information bound to the package, including site ID, site name, and site status.
- acc
Traffic numberCapacity - The content acceleration traffic specifications in the package, unit: byte.
- area string
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- bindable string
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- cross
Mlc numberTraffic Capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- ddos
Traffic numberCapacity - DDoS protection traffic specifications within the package, unit: bytes.
- enabled
Time string - The package effective time.
- expired
Time string - The expiration date of the package.
- features string[]
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- l4Traffic
Capacity number - Layer 4 acceleration traffic specifications within the package, unit: byte.
- pay
Mode number - Payment type, possible values: 0: post-payment; 1: pre-payment..
- plan
Id string - Plan ID.
- plan
Type string - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- sec
Request numberCapacity - The number of secure requests in the package, unit: times.
- sec
Traffic numberCapacity - The security flow specification within the package, unit: byte.
- smart
Request numberCapacity - The number of intelligent acceleration requests in the package, unit: times.
- smart
Traffic numberCapacity - Smart acceleration traffic specifications within the package, unit: byte.
- status string
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- vau
Capacity number - VAU specifications in the package, unit: piece.
- zones
Infos GetTeo Plans Plan Zones Info[] - Site information bound to the package, including site ID, site name, and site status.
- acc_
traffic_ floatcapacity - The content acceleration traffic specifications in the package, unit: byte.
- area str
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- bindable str
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- cross_
mlc_ floattraffic_ capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- ddos_
traffic_ floatcapacity - DDoS protection traffic specifications within the package, unit: bytes.
- enabled_
time str - The package effective time.
- expired_
time str - The expiration date of the package.
- features Sequence[str]
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- l4_
traffic_ floatcapacity - Layer 4 acceleration traffic specifications within the package, unit: byte.
- pay_
mode float - Payment type, possible values: 0: post-payment; 1: pre-payment..
- plan_
id str - Plan ID.
- plan_
type str - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- sec_
request_ floatcapacity - The number of secure requests in the package, unit: times.
- sec_
traffic_ floatcapacity - The security flow specification within the package, unit: byte.
- smart_
request_ floatcapacity - The number of intelligent acceleration requests in the package, unit: times.
- smart_
traffic_ floatcapacity - Smart acceleration traffic specifications within the package, unit: byte.
- status str
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- vau_
capacity float - VAU specifications in the package, unit: piece.
- zones_
infos Sequence[GetTeo Plans Plan Zones Info] - Site information bound to the package, including site ID, site name, and site status.
- acc
Traffic NumberCapacity - The content acceleration traffic specifications in the package, unit: byte.
- area String
- Service area, the values are: mainland: Mainland China; overseas: Worldwide (excluding Mainland China); global: Worldwide (including Mainland China)..
- bindable String
- Whether the package allows binding of new sites, the values are: true: allows binding of new sites; false: does not allow binding of new sites..
- cross
Mlc NumberTraffic Capacity - The optimized traffic specifications of the Chinese mainland network in the package, unit: bytes.
- ddos
Traffic NumberCapacity - DDoS protection traffic specifications within the package, unit: bytes.
- enabled
Time String - The package effective time.
- expired
Time String - The expiration date of the package.
- features List<String>
- The functions supported by the package have the following values: ContentAcceleration: content acceleration function; SmartAcceleration: smart acceleration function; L4: four-layer acceleration function; Waf: advanced web protection; QUIC: QUIC function; CrossMLC: Chinese mainland network optimization function; ProcessMedia: media processing function; L4DDoS: four-layer DDoS protection function; L7DDoS function will only have one of the following specifications L7DDoS.CM30G; seven-layer DDoS protection function - Chinese mainland 30G minimum bandwidth specification; L7DDoS.CM60G; seven-layer DDoS protection function - Chinese mainland 60G minimum bandwidth specification; L7DDoS.CM100G; Layer 7 DDoS protection function - 100G guaranteed bandwidth for mainland China;L7DDoS.Anycast300G; Layer 7 DDoS protection function - 300G guaranteed bandwidth for Anycast outside mainland China;L7DDoS.AnycastUnlimited; Layer 7 DDoS protection function - unlimited full protection for Anycast outside mainland China;L7DDoS.CM30G_Anycast300G; Layer 7 DDoS protection function - 30G guaranteed bandwidth for mainland China L7DDoS.CM60G_Anycast300G; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM100G_Anycast300G; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, 300G guaranteed bandwidth in anycast outside mainland China; L7DDoS.CM30G_AnycastUnlimited d; Layer 7 DDoS protection function - 30G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM60G_AnycastUnlimited; Layer 7 DDoS protection function - 60G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; L7DDoS.CM100G_AnycastUnlimited; Layer 7 DDoS protection function - 100G guaranteed bandwidth in mainland China, unlimited Anycast protection outside mainland China; .
- l4Traffic
Capacity Number - Layer 4 acceleration traffic specifications within the package, unit: byte.
- pay
Mode Number - Payment type, possible values: 0: post-payment; 1: pre-payment..
- plan
Id String - Plan ID.
- plan
Type String - Plan type. Possible values are: plan-trial: Trial plan; plan-personal: Personal plan; plan-basic: Basic plan; plan-standard: Standard plan; plan-enterprise-v2: Enterprise plan; plan-enterprise-model-a: Enterprise Model A plan. plan-enterprise: Old Enterprise plan. .
- sec
Request NumberCapacity - The number of secure requests in the package, unit: times.
- sec
Traffic NumberCapacity - The security flow specification within the package, unit: byte.
- smart
Request NumberCapacity - The number of intelligent acceleration requests in the package, unit: times.
- smart
Traffic NumberCapacity - Smart acceleration traffic specifications within the package, unit: byte.
- status String
- Package status, the values are: normal: normal status; expiring-soon: about to expire; expired: expired; isolated: isolated; overdue-isolated: overdue isolated..
- vau
Capacity Number - VAU specifications in the package, unit: piece.
- zones
Infos List<Property Map> - Site information bound to the package, including site ID, site name, and site status.
GetTeoPlansPlanZonesInfo
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
