1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. getTeoZones
Viewing docs for tencentcloud 1.82.98
published on Friday, May 29, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.98
published on Friday, May 29, 2026 by tencentcloudstack

    Use this data source to query detailed information of teo zoneAvailablePlans

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const teoZones = tencentcloud.getTeoZones({
        filters: [
            {
                name: "zone-id",
                values: ["zone-39quuimqg8r6"],
            },
            {
                name: "tag-key",
                values: ["createdBy"],
            },
            {
                name: "tag-value",
                values: ["terraform"],
            },
        ],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    teo_zones = tencentcloud.get_teo_zones(filters=[
        {
            "name": "zone-id",
            "values": ["zone-39quuimqg8r6"],
        },
        {
            "name": "tag-key",
            "values": ["createdBy"],
        },
        {
            "name": "tag-value",
            "values": ["terraform"],
        },
    ])
    
    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.GetTeoZones(ctx, &tencentcloud.GetTeoZonesArgs{
    			Filters: []tencentcloud.GetTeoZonesFilter{
    				{
    					Name: "zone-id",
    					Values: []string{
    						"zone-39quuimqg8r6",
    					},
    				},
    				{
    					Name: "tag-key",
    					Values: []string{
    						"createdBy",
    					},
    				},
    				{
    					Name: "tag-value",
    					Values: []string{
    						"terraform",
    					},
    				},
    			},
    		}, 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 teoZones = Tencentcloud.GetTeoZones.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetTeoZonesFilterInputArgs
                {
                    Name = "zone-id",
                    Values = new[]
                    {
                        "zone-39quuimqg8r6",
                    },
                },
                new Tencentcloud.Inputs.GetTeoZonesFilterInputArgs
                {
                    Name = "tag-key",
                    Values = new[]
                    {
                        "createdBy",
                    },
                },
                new Tencentcloud.Inputs.GetTeoZonesFilterInputArgs
                {
                    Name = "tag-value",
                    Values = new[]
                    {
                        "terraform",
                    },
                },
            },
        });
    
    });
    
    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.GetTeoZonesArgs;
    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 teoZones = TencentcloudFunctions.getTeoZones(GetTeoZonesArgs.builder()
                .filters(            
                    GetTeoZonesFilterArgs.builder()
                        .name("zone-id")
                        .values("zone-39quuimqg8r6")
                        .build(),
                    GetTeoZonesFilterArgs.builder()
                        .name("tag-key")
                        .values("createdBy")
                        .build(),
                    GetTeoZonesFilterArgs.builder()
                        .name("tag-value")
                        .values("terraform")
                        .build())
                .build());
    
        }
    }
    
    variables:
      teoZones:
        fn::invoke:
          function: tencentcloud:getTeoZones
          arguments:
            filters:
              - name: zone-id
                values:
                  - zone-39quuimqg8r6
              - name: tag-key
                values:
                  - createdBy
              - name: tag-value
                values:
                  - terraform
    
    Example coming soon!
    

    Using getTeoZones

    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 getTeoZones(args: GetTeoZonesArgs, opts?: InvokeOptions): Promise<GetTeoZonesResult>
    function getTeoZonesOutput(args: GetTeoZonesOutputArgs, opts?: InvokeOptions): Output<GetTeoZonesResult>
    def get_teo_zones(direction: Optional[str] = None,
                      filters: Optional[Sequence[GetTeoZonesFilter]] = None,
                      id: Optional[str] = None,
                      order: Optional[str] = None,
                      result_output_file: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetTeoZonesResult
    def get_teo_zones_output(direction: pulumi.Input[Optional[str]] = None,
                      filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetTeoZonesFilterArgs]]]] = None,
                      id: pulumi.Input[Optional[str]] = None,
                      order: pulumi.Input[Optional[str]] = None,
                      result_output_file: pulumi.Input[Optional[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetTeoZonesResult]
    func GetTeoZones(ctx *Context, args *GetTeoZonesArgs, opts ...InvokeOption) (*GetTeoZonesResult, error)
    func GetTeoZonesOutput(ctx *Context, args *GetTeoZonesOutputArgs, opts ...InvokeOption) GetTeoZonesResultOutput

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

    public static class GetTeoZones 
    {
        public static Task<GetTeoZonesResult> InvokeAsync(GetTeoZonesArgs args, InvokeOptions? opts = null)
        public static Output<GetTeoZonesResult> Invoke(GetTeoZonesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTeoZonesResult> getTeoZones(GetTeoZonesArgs args, InvokeOptions options)
    public static Output<GetTeoZonesResult> getTeoZones(GetTeoZonesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getTeoZones:getTeoZones
      arguments:
        # arguments dictionary
    data "tencentcloud_getteozones" "name" {
        # arguments
    }

    The following arguments are supported:

    Direction string
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    Filters List<GetTeoZonesFilter>
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    Id string
    The resource ID.
    Order string
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    ResultOutputFile string
    Used to save results.
    Direction string
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    Filters []GetTeoZonesFilter
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    Id string
    The resource ID.
    Order string
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    ResultOutputFile string
    Used to save results.
    direction string
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    filters list(object)
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    id string
    The resource ID.
    order string
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    result_output_file string
    Used to save results.
    direction String
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    filters List<GetTeoZonesFilter>
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    id String
    The resource ID.
    order String
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    resultOutputFile String
    Used to save results.
    direction string
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    filters GetTeoZonesFilter[]
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    id string
    The resource ID.
    order string
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    resultOutputFile string
    Used to save results.
    direction str
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    filters Sequence[GetTeoZonesFilter]
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    id str
    The resource ID.
    order str
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    result_output_file str
    Used to save results.
    direction String
    Sort direction. If the field value is a number, sort by the numeric value. If the field value is text, sort by the ascill code. Values include: asc: From the smallest to largest; desc: From the largest to smallest. Default value: desc.
    filters List<Property Map>
    Filter criteria. the maximum value of Filters.Values is 20. if this parameter is left empty, all site information authorized under the current appid will be returned. detailed filter criteria are as follows: zone-name: filter by site name; zone-id: filter by site id. the site id is in the format of zone-2noz78a8ev6k; status: filter by site status; tag-key: filter by tag key; tag-value: filter by tag value; alias-zone-name: filter by identical site identifier. when performing a fuzzy query, the fields that support filtering are named zone-name or alias-zone-name.
    id String
    The resource ID.
    order String
    Sort the returned results according to this field. Values include: type: Connection mode; area: Acceleration region; create-time: Creation time; zone-name: Site name; use-time: Last used time; active-status Effective status. Default value: create-time.
    resultOutputFile String
    Used to save results.

    getTeoZones Result

    The following output properties are available:

    Id string
    The resource ID.
    Zones List<GetTeoZonesZone>
    Details of sites.
    Direction string
    Filters List<GetTeoZonesFilter>
    Order string
    ResultOutputFile string
    Id string
    The resource ID.
    Zones []GetTeoZonesZone
    Details of sites.
    Direction string
    Filters []GetTeoZonesFilter
    Order string
    ResultOutputFile string
    id string
    The resource ID.
    zones list(object)
    Details of sites.
    direction string
    filters list(object)
    order string
    result_output_file string
    id String
    The resource ID.
    zones List<GetTeoZonesZone>
    Details of sites.
    direction String
    filters List<GetTeoZonesFilter>
    order String
    resultOutputFile String
    id string
    The resource ID.
    zones GetTeoZonesZone[]
    Details of sites.
    direction string
    filters GetTeoZonesFilter[]
    order string
    resultOutputFile string
    id String
    The resource ID.
    zones List<Property Map>
    Details of sites.
    direction String
    filters List<Property Map>
    order String
    resultOutputFile String

    Supporting Types

    GetTeoZonesFilter

    Name string
    Field to be filtered.
    Values List<string>
    Value of the filtered field.
    Fuzzy bool
    Whether to enable fuzzy query.
    Name string
    Field to be filtered.
    Values []string
    Value of the filtered field.
    Fuzzy bool
    Whether to enable fuzzy query.
    name string
    Field to be filtered.
    values list(string)
    Value of the filtered field.
    fuzzy bool
    Whether to enable fuzzy query.
    name String
    Field to be filtered.
    values List<String>
    Value of the filtered field.
    fuzzy Boolean
    Whether to enable fuzzy query.
    name string
    Field to be filtered.
    values string[]
    Value of the filtered field.
    fuzzy boolean
    Whether to enable fuzzy query.
    name str
    Field to be filtered.
    values Sequence[str]
    Value of the filtered field.
    fuzzy bool
    Whether to enable fuzzy query.
    name String
    Field to be filtered.
    values List<String>
    Value of the filtered field.
    fuzzy Boolean
    Whether to enable fuzzy query.

    GetTeoZonesZone

    ActiveStatus string
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    AliasZoneName string
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    Area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    CnameSpeedUp string
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    CnameStatus string
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    CreatedOn string
    The creation time of the site.
    IsFake double
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    LockStatus string
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    ModifiedOn string
    The modification date of the site.
    NameServers List<string>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    OriginalNameServers List<string>
    List of name servers used by the site.
    OwnershipVerifications List<GetTeoZonesZoneOwnershipVerification>
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    Paused bool
    Whether the site is disabled.
    Resources List<GetTeoZonesZoneResource>
    The list of billable resources.
    Status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    Tags List<GetTeoZonesZoneTag>
    The list of resource tags.
    Type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    VanityNameServers List<GetTeoZonesZoneVanityNameServer>
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    VanityNameServersIps List<GetTeoZonesZoneVanityNameServersIp>
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    ZoneId string
    Site ID.
    ZoneName string
    The site name.
    ActiveStatus string
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    AliasZoneName string
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    Area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    CnameSpeedUp string
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    CnameStatus string
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    CreatedOn string
    The creation time of the site.
    IsFake float64
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    LockStatus string
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    ModifiedOn string
    The modification date of the site.
    NameServers []string
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    OriginalNameServers []string
    List of name servers used by the site.
    OwnershipVerifications []GetTeoZonesZoneOwnershipVerification
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    Paused bool
    Whether the site is disabled.
    Resources []GetTeoZonesZoneResource
    The list of billable resources.
    Status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    Tags []GetTeoZonesZoneTag
    The list of resource tags.
    Type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    VanityNameServers []GetTeoZonesZoneVanityNameServer
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    VanityNameServersIps []GetTeoZonesZoneVanityNameServersIp
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    ZoneId string
    Site ID.
    ZoneName string
    The site name.
    active_status string
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    alias_zone_name string
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    cname_speed_up string
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    cname_status string
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    created_on string
    The creation time of the site.
    is_fake number
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    lock_status string
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    modified_on string
    The modification date of the site.
    name_servers list(string)
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    original_name_servers list(string)
    List of name servers used by the site.
    ownership_verifications list(object)
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    paused bool
    Whether the site is disabled.
    resources list(object)
    The list of billable resources.
    status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    tags list(object)
    The list of resource tags.
    type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    vanity_name_servers list(object)
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    vanity_name_servers_ips list(object)
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    zone_id string
    Site ID.
    zone_name string
    The site name.
    activeStatus String
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    aliasZoneName String
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    area String
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    cnameSpeedUp String
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    cnameStatus String
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    createdOn String
    The creation time of the site.
    isFake Double
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    lockStatus String
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    modifiedOn String
    The modification date of the site.
    nameServers List<String>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    originalNameServers List<String>
    List of name servers used by the site.
    ownershipVerifications List<GetTeoZonesZoneOwnershipVerification>
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    paused Boolean
    Whether the site is disabled.
    resources List<GetTeoZonesZoneResource>
    The list of billable resources.
    status String
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    tags List<GetTeoZonesZoneTag>
    The list of resource tags.
    type String
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    vanityNameServers List<GetTeoZonesZoneVanityNameServer>
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    vanityNameServersIps List<GetTeoZonesZoneVanityNameServersIp>
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    zoneId String
    Site ID.
    zoneName String
    The site name.
    activeStatus string
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    aliasZoneName string
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    cnameSpeedUp string
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    cnameStatus string
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    createdOn string
    The creation time of the site.
    isFake number
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    lockStatus string
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    modifiedOn string
    The modification date of the site.
    nameServers string[]
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    originalNameServers string[]
    List of name servers used by the site.
    ownershipVerifications GetTeoZonesZoneOwnershipVerification[]
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    paused boolean
    Whether the site is disabled.
    resources GetTeoZonesZoneResource[]
    The list of billable resources.
    status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    tags GetTeoZonesZoneTag[]
    The list of resource tags.
    type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    vanityNameServers GetTeoZonesZoneVanityNameServer[]
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    vanityNameServersIps GetTeoZonesZoneVanityNameServersIp[]
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    zoneId string
    Site ID.
    zoneName string
    The site name.
    active_status str
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    alias_zone_name str
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    area str
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    cname_speed_up str
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    cname_status str
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    created_on str
    The creation time of the site.
    is_fake float
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    lock_status str
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    modified_on str
    The modification date of the site.
    name_servers Sequence[str]
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    original_name_servers Sequence[str]
    List of name servers used by the site.
    ownership_verifications Sequence[GetTeoZonesZoneOwnershipVerification]
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    paused bool
    Whether the site is disabled.
    resources Sequence[GetTeoZonesZoneResource]
    The list of billable resources.
    status str
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    tags Sequence[GetTeoZonesZoneTag]
    The list of resource tags.
    type str
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    vanity_name_servers Sequence[GetTeoZonesZoneVanityNameServer]
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    vanity_name_servers_ips Sequence[GetTeoZonesZoneVanityNameServersIp]
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    zone_id str
    Site ID.
    zone_name str
    The site name.
    activeStatus String
    Status of the proxy. Values: active: Enabled; inactive: Not activated; paused: Disabled.
    aliasZoneName String
    The site alias. It can be up to 20 characters consisting of digits, letters, hyphens (-) and underscores (_). Note: This field may return null, indicating that no valid values can be obtained.
    area String
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    cnameSpeedUp String
    Whether CNAME acceleration is enabled. Values: enabled: Enabled; disabled: Disabled.
    cnameStatus String
    CNAME record access status. Values: finished: The site is verified.pending: The site is being verified.
    createdOn String
    The creation time of the site.
    isFake Number
    Whether it is a fake site. Valid values: 0: Non-fake site; 1: Fake site.
    lockStatus String
    Lock status. Values: enable: Normal. Modification is allowed. disable: Locked. Modification is not allowed. plan_migrate: Adjusting the plan. Modification is not allowed.
    modifiedOn String
    The modification date of the site.
    nameServers List<String>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    originalNameServers List<String>
    List of name servers used by the site.
    ownershipVerifications List<Property Map>
    Ownership verification information. Note: This field may return null, indicating that no valid values can be obtained.
    paused Boolean
    Whether the site is disabled.
    resources List<Property Map>
    The list of billable resources.
    status String
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    tags List<Property Map>
    The list of resource tags.
    type String
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    vanityNameServers List<Property Map>
    The custom name server information. Note: This field may return null, indicating that no valid values can be obtained.
    vanityNameServersIps List<Property Map>
    The custom name server IP information. Note: This field may return null, indicating that no valid values can be obtained.
    zoneId String
    Site ID.
    zoneName String
    The site name.

    GetTeoZonesZoneOwnershipVerification

    DnsVerifications List<GetTeoZonesZoneOwnershipVerificationDnsVerification>
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    FileVerifications List<GetTeoZonesZoneOwnershipVerificationFileVerification>
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    NsVerifications List<GetTeoZonesZoneOwnershipVerificationNsVerification>
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    DnsVerifications []GetTeoZonesZoneOwnershipVerificationDnsVerification
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    FileVerifications []GetTeoZonesZoneOwnershipVerificationFileVerification
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    NsVerifications []GetTeoZonesZoneOwnershipVerificationNsVerification
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    dns_verifications list(object)
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    file_verifications list(object)
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    ns_verifications list(object)
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    dnsVerifications List<GetTeoZonesZoneOwnershipVerificationDnsVerification>
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    fileVerifications List<GetTeoZonesZoneOwnershipVerificationFileVerification>
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    nsVerifications List<GetTeoZonesZoneOwnershipVerificationNsVerification>
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    dnsVerifications GetTeoZonesZoneOwnershipVerificationDnsVerification[]
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    fileVerifications GetTeoZonesZoneOwnershipVerificationFileVerification[]
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    nsVerifications GetTeoZonesZoneOwnershipVerificationNsVerification[]
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    dns_verifications Sequence[GetTeoZonesZoneOwnershipVerificationDnsVerification]
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    file_verifications Sequence[GetTeoZonesZoneOwnershipVerificationFileVerification]
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    ns_verifications Sequence[GetTeoZonesZoneOwnershipVerificationNsVerification]
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.
    dnsVerifications List<Property Map>
    CNAME, when there is no domain name access, the information required for DNS resolution verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    fileVerifications List<Property Map>
    CNAME, when there is no domain name access, the information required for file verification is used. For details, refer to Site/Domain Ownership Verification . Note: This field may return null, which indicates a failure to obtain a valid value.
    nsVerifications List<Property Map>
    Information required for switching DNS servers. It's applicable to sites connected via NSs. For details, see Modifying DNS Server. Note: This field may return null, indicating that no valid values can be obtained.

    GetTeoZonesZoneOwnershipVerificationDnsVerification

    RecordType string
    The record type.
    RecordValue string
    The record value.
    Subdomain string
    The host record.
    RecordType string
    The record type.
    RecordValue string
    The record value.
    Subdomain string
    The host record.
    record_type string
    The record type.
    record_value string
    The record value.
    subdomain string
    The host record.
    recordType String
    The record type.
    recordValue String
    The record value.
    subdomain String
    The host record.
    recordType string
    The record type.
    recordValue string
    The record value.
    subdomain string
    The host record.
    record_type str
    The record type.
    record_value str
    The record value.
    subdomain str
    The host record.
    recordType String
    The record type.
    recordValue String
    The record value.
    subdomain String
    The host record.

    GetTeoZonesZoneOwnershipVerificationFileVerification

    Content string
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    Path string
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    Content string
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    Path string
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    content string
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    path string
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    content String
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    path String
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    content string
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    path string
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    content str
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    path str
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.
    content String
    Content of the verification file. The contents of this field need to be filled into the text file returned by Path.
    path String
    EdgeOne obtains the file verification information in the format of "Scheme + Host + URL Path", (e.g. https://www.example.com/.well-known/teo-verification/z12h416twn.txt). This field is the URL path section of the URL you need to create.

    GetTeoZonesZoneOwnershipVerificationNsVerification

    NameServers List<string>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    NameServers []string
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    name_servers list(string)
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    nameServers List<String>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    nameServers string[]
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    name_servers Sequence[str]
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.
    nameServers List<String>
    The DNS server address assigned to the user when connecting a site to EO via NS. You need to switch the NameServer of the domain name to this address.

    GetTeoZonesZoneResource

    Area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    AutoRenewFlag double
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    CreateTime string
    The creation time.
    EnableTime string
    The effective time.
    ExpireTime string
    The expiration time.
    Group string
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    Id string
    The resource ID.
    PayMode double
    Billing mode, 0: Pay-as-you-go.
    PlanId string
    ID of the resource associated with the plan.
    Status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    Svs List<GetTeoZonesZoneResourceSv>
    Pricing query parameter.
    Type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    ZoneNumber double
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    Area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    AutoRenewFlag float64
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    CreateTime string
    The creation time.
    EnableTime string
    The effective time.
    ExpireTime string
    The expiration time.
    Group string
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    Id string
    The resource ID.
    PayMode float64
    Billing mode, 0: Pay-as-you-go.
    PlanId string
    ID of the resource associated with the plan.
    Status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    Svs []GetTeoZonesZoneResourceSv
    Pricing query parameter.
    Type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    ZoneNumber float64
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    auto_renew_flag number
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    create_time string
    The creation time.
    enable_time string
    The effective time.
    expire_time string
    The expiration time.
    group string
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    id string
    The resource ID.
    pay_mode number
    Billing mode, 0: Pay-as-you-go.
    plan_id string
    ID of the resource associated with the plan.
    status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    svs list(object)
    Pricing query parameter.
    type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    zone_number number
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    area String
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    autoRenewFlag Double
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    createTime String
    The creation time.
    enableTime String
    The effective time.
    expireTime String
    The expiration time.
    group String
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    id String
    The resource ID.
    payMode Double
    Billing mode, 0: Pay-as-you-go.
    planId String
    ID of the resource associated with the plan.
    status String
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    svs List<GetTeoZonesZoneResourceSv>
    Pricing query parameter.
    type String
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    zoneNumber Double
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    area string
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    autoRenewFlag number
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    createTime string
    The creation time.
    enableTime string
    The effective time.
    expireTime string
    The expiration time.
    group string
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    id string
    The resource ID.
    payMode number
    Billing mode, 0: Pay-as-you-go.
    planId string
    ID of the resource associated with the plan.
    status string
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    svs GetTeoZonesZoneResourceSv[]
    Pricing query parameter.
    type string
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    zoneNumber number
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    area str
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    auto_renew_flag float
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    create_time str
    The creation time.
    enable_time str
    The effective time.
    expire_time str
    The expiration time.
    group str
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    id str
    The resource ID.
    pay_mode float
    Billing mode, 0: Pay-as-you-go.
    plan_id str
    ID of the resource associated with the plan.
    status str
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    svs Sequence[GetTeoZonesZoneResourceSv]
    Pricing query parameter.
    type str
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    zone_number float
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.
    area String
    Applicable area. Values: mainland: Chinese mainland; overseas: Regions outside the Chinese mainland; global: Global.
    autoRenewFlag Number
    Whether to enable auto-renewal. Values: 0: Default status. 1: Enable auto-renewal. 2: Disable auto-renewal.
    createTime String
    The creation time.
    enableTime String
    The effective time.
    expireTime String
    The expiration time.
    group String
    The resource type. Values: plan: Plan resources; pay-as-you-go: Pay-as-you-go resources; value-added: Value-added resources. Note: This field may return null, indicating that no valid values can be obtained.
    id String
    The resource ID.
    payMode Number
    Billing mode, 0: Pay-as-you-go.
    planId String
    ID of the resource associated with the plan.
    status String
    The site status. Values: active: The name server is switched to EdgeOne. pending: The name server is not switched. moved: The name server is changed to other service providers. deactivated: The site is blocked. initializing: The site is not bound with any plan.
    svs List<Property Map>
    Pricing query parameter.
    type String
    Site access method. Valid values: full: NS access; partial: CNAME access; noDomainAccess: access with no domain name.
    zoneNumber Number
    The sites that are associated with the current resources. Note: This field may return null, indicating that no valid values can be obtained.

    GetTeoZonesZoneResourceSv

    InstanceId string
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    Key string
    The parameter key.
    Pack string
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    ProtectionSpecs string
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    Value string
    The parameter value.
    InstanceId string
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    Key string
    The parameter key.
    Pack string
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    ProtectionSpecs string
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    Value string
    The parameter value.
    instance_id string
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    key string
    The parameter key.
    pack string
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    protection_specs string
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    value string
    The parameter value.
    instanceId String
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    key String
    The parameter key.
    pack String
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    protectionSpecs String
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    value String
    The parameter value.
    instanceId string
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    key string
    The parameter key.
    pack string
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    protectionSpecs string
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    value string
    The parameter value.
    instance_id str
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    key str
    The parameter key.
    pack str
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    protection_specs str
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    value str
    The parameter value.
    instanceId String
    ID of the L4 proxy instance. Note: This field may return null, indicating that no valid values can be obtained.
    key String
    The parameter key.
    pack String
    Quota for a resource. Values: zone: Quota for sites; custom-rule: Quota for custom rules; rate-limiting-rule: Quota for rate limiting rules; l4-proxy-instance: Quota for L4 proxy instances. Note: This field may return null, indicating that no valid values can be obtained.
    protectionSpecs String
    The protection specification. Values: cm_30G: 30 Gbps base protection bandwidth in Chinese mainland service area; cm_60G: 60 Gbps base protection bandwidth in Chinese mainland service area; cm_100G: 100 Gbps base protection bandwidth in Chinese mainland service area; anycast_300G: 300 Gbps Anycast-based protection in Global (MLC) service area; anycast_unlimited: Unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_300G: 30 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area; cm_30G_anycast_unlimited: 30 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area; cm_60G_anycast_300G: 60 Gbps base protection bandwidth in **Chinese mainland** service area and 300 Gbps Anycast-based protection bandwidth in **Global (MLC)** service area; cm_60G_anycast_unlimited: 60 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area cm_100G_anycast_300G: 100 Gbps base protection bandwidth in Chinese mainland service area and 300 Gbps Anycast-based protection bandwidth in Global (MLC) service area, cm_100G_anycast_unlimited`: 100 Gbps base protection bandwidth in Chinese mainland service area and unlimited Anycast-based protection bandwidth in Global (MLC) service area. Note: This field may return null, indicating that no valid values can be obtained.
    value String
    The parameter value.

    GetTeoZonesZoneTag

    TagKey string
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    TagValue string
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    TagKey string
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    TagValue string
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    tag_key string
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    tag_value string
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    tagKey String
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    tagValue String
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    tagKey string
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    tagValue string
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    tag_key str
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    tag_value str
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.
    tagKey String
    The tag key. Note: This field may return null, indicating that no valid values can be obtained.
    tagValue String
    The tag value. Note: This field may return null, indicating that no valid values can be obtained.

    GetTeoZonesZoneVanityNameServer

    Servers List<string>
    List of custom name servers.
    Switch string
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    Servers []string
    List of custom name servers.
    Switch string
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    servers list(string)
    List of custom name servers.
    switch string
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    servers List<String>
    List of custom name servers.
    switch_ String
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    servers string[]
    List of custom name servers.
    switch string
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    servers Sequence[str]
    List of custom name servers.
    switch str
    Whether to enable custom name servers. Values: on: Enable; off: Disable.
    servers List<String>
    List of custom name servers.
    switch String
    Whether to enable custom name servers. Values: on: Enable; off: Disable.

    GetTeoZonesZoneVanityNameServersIp

    IPv4 string
    IPv4 address of the custom name server.
    Name string
    Custom name of the name server.
    IPv4 string
    IPv4 address of the custom name server.
    Name string
    Custom name of the name server.
    i_pv4 string
    IPv4 address of the custom name server.
    name string
    Custom name of the name server.
    iPv4 String
    IPv4 address of the custom name server.
    name String
    Custom name of the name server.
    iPv4 string
    IPv4 address of the custom name server.
    name string
    Custom name of the name server.
    i_pv4 str
    IPv4 address of the custom name server.
    name str
    Custom name of the name server.
    iPv4 String
    IPv4 address of the custom name server.
    name String
    Custom name of the name server.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.82.98
    published on Friday, May 29, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial