1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getPrivateDnsPrivateZoneList
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getPrivateDnsPrivateZoneList

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of privatedns private_zone_list

    Example Usage

    Get All PrivateZones:

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getPrivateDnsPrivateZoneList({});
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_private_dns_private_zone_list()
    
    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.GetPrivateDnsPrivateZoneList(ctx, &tencentcloud.GetPrivateDnsPrivateZoneListArgs{}, 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.GetPrivateDnsPrivateZoneList.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.GetPrivateDnsPrivateZoneListArgs;
    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.getPrivateDnsPrivateZoneList();
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getPrivateDnsPrivateZoneList
          arguments: {}
    

    Get PrivateZone By ZoneId:

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getPrivateDnsPrivateZoneList({
        filters: [{
            name: "ZoneId",
            values: ["zone-6xg5xgky1"],
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_private_dns_private_zone_list(filters=[{
        "name": "ZoneId",
        "values": ["zone-6xg5xgky1"],
    }])
    
    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.GetPrivateDnsPrivateZoneList(ctx, &tencentcloud.GetPrivateDnsPrivateZoneListArgs{
    			Filters: []tencentcloud.GetPrivateDnsPrivateZoneListFilter{
    				{
    					Name: "ZoneId",
    					Values: []string{
    						"zone-6xg5xgky1",
    					},
    				},
    			},
    		}, 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.GetPrivateDnsPrivateZoneList.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetPrivateDnsPrivateZoneListFilterInputArgs
                {
                    Name = "ZoneId",
                    Values = new[]
                    {
                        "zone-6xg5xgky1",
                    },
                },
            },
        });
    
    });
    
    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.GetPrivateDnsPrivateZoneListArgs;
    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.getPrivateDnsPrivateZoneList(GetPrivateDnsPrivateZoneListArgs.builder()
                .filters(GetPrivateDnsPrivateZoneListFilterArgs.builder()
                    .name("ZoneId")
                    .values("zone-6xg5xgky1")
                    .build())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getPrivateDnsPrivateZoneList
          arguments:
            filters:
              - name: ZoneId
                values:
                  - zone-6xg5xgky1
    

    Get PrivateZone By Domain:

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getPrivateDnsPrivateZoneList({
        filters: [{
            name: "Domain",
            values: ["domain.com"],
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_private_dns_private_zone_list(filters=[{
        "name": "Domain",
        "values": ["domain.com"],
    }])
    
    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.GetPrivateDnsPrivateZoneList(ctx, &tencentcloud.GetPrivateDnsPrivateZoneListArgs{
    			Filters: []tencentcloud.GetPrivateDnsPrivateZoneListFilter{
    				{
    					Name: "Domain",
    					Values: []string{
    						"domain.com",
    					},
    				},
    			},
    		}, 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.GetPrivateDnsPrivateZoneList.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetPrivateDnsPrivateZoneListFilterInputArgs
                {
                    Name = "Domain",
                    Values = new[]
                    {
                        "domain.com",
                    },
                },
            },
        });
    
    });
    
    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.GetPrivateDnsPrivateZoneListArgs;
    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.getPrivateDnsPrivateZoneList(GetPrivateDnsPrivateZoneListArgs.builder()
                .filters(GetPrivateDnsPrivateZoneListFilterArgs.builder()
                    .name("Domain")
                    .values("domain.com")
                    .build())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getPrivateDnsPrivateZoneList
          arguments:
            filters:
              - name: Domain
                values:
                  - domain.com
    

    Get PrivateZone By Vpc:

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = tencentcloud.getPrivateDnsPrivateZoneList({
        filters: [{
            name: "Vpc",
            values: ["vpc-axrsmmrv"],
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.get_private_dns_private_zone_list(filters=[{
        "name": "Vpc",
        "values": ["vpc-axrsmmrv"],
    }])
    
    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.GetPrivateDnsPrivateZoneList(ctx, &tencentcloud.GetPrivateDnsPrivateZoneListArgs{
    			Filters: []tencentcloud.GetPrivateDnsPrivateZoneListFilter{
    				{
    					Name: "Vpc",
    					Values: []string{
    						"vpc-axrsmmrv",
    					},
    				},
    			},
    		}, 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.GetPrivateDnsPrivateZoneList.Invoke(new()
        {
            Filters = new[]
            {
                new Tencentcloud.Inputs.GetPrivateDnsPrivateZoneListFilterInputArgs
                {
                    Name = "Vpc",
                    Values = new[]
                    {
                        "vpc-axrsmmrv",
                    },
                },
            },
        });
    
    });
    
    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.GetPrivateDnsPrivateZoneListArgs;
    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.getPrivateDnsPrivateZoneList(GetPrivateDnsPrivateZoneListArgs.builder()
                .filters(GetPrivateDnsPrivateZoneListFilterArgs.builder()
                    .name("Vpc")
                    .values("vpc-axrsmmrv")
                    .build())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: tencentcloud:getPrivateDnsPrivateZoneList
          arguments:
            filters:
              - name: Vpc
                values:
                  - vpc-axrsmmrv
    

    Using getPrivateDnsPrivateZoneList

    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 getPrivateDnsPrivateZoneList(args: GetPrivateDnsPrivateZoneListArgs, opts?: InvokeOptions): Promise<GetPrivateDnsPrivateZoneListResult>
    function getPrivateDnsPrivateZoneListOutput(args: GetPrivateDnsPrivateZoneListOutputArgs, opts?: InvokeOptions): Output<GetPrivateDnsPrivateZoneListResult>
    def get_private_dns_private_zone_list(filters: Optional[Sequence[GetPrivateDnsPrivateZoneListFilter]] = None,
                                          id: Optional[str] = None,
                                          result_output_file: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetPrivateDnsPrivateZoneListResult
    def get_private_dns_private_zone_list_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetPrivateDnsPrivateZoneListFilterArgs]]]] = None,
                                          id: Optional[pulumi.Input[str]] = None,
                                          result_output_file: Optional[pulumi.Input[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetPrivateDnsPrivateZoneListResult]
    func GetPrivateDnsPrivateZoneList(ctx *Context, args *GetPrivateDnsPrivateZoneListArgs, opts ...InvokeOption) (*GetPrivateDnsPrivateZoneListResult, error)
    func GetPrivateDnsPrivateZoneListOutput(ctx *Context, args *GetPrivateDnsPrivateZoneListOutputArgs, opts ...InvokeOption) GetPrivateDnsPrivateZoneListResultOutput

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

    public static class GetPrivateDnsPrivateZoneList 
    {
        public static Task<GetPrivateDnsPrivateZoneListResult> InvokeAsync(GetPrivateDnsPrivateZoneListArgs args, InvokeOptions? opts = null)
        public static Output<GetPrivateDnsPrivateZoneListResult> Invoke(GetPrivateDnsPrivateZoneListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPrivateDnsPrivateZoneListResult> getPrivateDnsPrivateZoneList(GetPrivateDnsPrivateZoneListArgs args, InvokeOptions options)
    public static Output<GetPrivateDnsPrivateZoneListResult> getPrivateDnsPrivateZoneList(GetPrivateDnsPrivateZoneListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getPrivateDnsPrivateZoneList:getPrivateDnsPrivateZoneList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetPrivateDnsPrivateZoneListFilter>
    filters.
    Id string
    ResultOutputFile string
    Used to save results.
    Filters []GetPrivateDnsPrivateZoneListFilter
    filters.
    Id string
    ResultOutputFile string
    Used to save results.
    filters List<GetPrivateDnsPrivateZoneListFilter>
    filters.
    id String
    resultOutputFile String
    Used to save results.
    filters GetPrivateDnsPrivateZoneListFilter[]
    filters.
    id string
    resultOutputFile string
    Used to save results.
    filters List<Property Map>
    filters.
    id String
    resultOutputFile String
    Used to save results.

    getPrivateDnsPrivateZoneList Result

    The following output properties are available:

    Supporting Types

    GetPrivateDnsPrivateZoneListFilter

    Name string
    name.
    Values List<string>
    values.
    Name string
    name.
    Values []string
    values.
    name String
    name.
    values List<String>
    values.
    name string
    name.
    values string[]
    values.
    name str
    name.
    values Sequence[str]
    values.
    name String
    name.
    values List<String>
    values.

    GetPrivateDnsPrivateZoneListPrivateZoneSet

    AccountVpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet>
    VPC list of bound associated accounts.
    CnameSpeedupStatus string
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    CreatedOn string
    Create time.
    DeletedVpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet>
    List of deleted VPCs.
    DnsForwardStatus string
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    Domain string
    Domain.
    EndPointName string
    End point name.
    ForwardAddress string
    Forwarded address.
    ForwardRuleName string
    Forwarding rule name.
    ForwardRuleType string
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    IsCustomTld bool
    Custom TLD.
    OwnerUin double
    Owner Uin.
    RecordCount double
    Record count.
    Remark string
    Remark.
    Status string
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    Tags List<GetPrivateDnsPrivateZoneListPrivateZoneSetTag>
    tags.
    UpdatedOn string
    Update time.
    VpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet>
    Vpc list.
    ZoneId string
    PrivateZone ID.
    AccountVpcSets []GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet
    VPC list of bound associated accounts.
    CnameSpeedupStatus string
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    CreatedOn string
    Create time.
    DeletedVpcSets []GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet
    List of deleted VPCs.
    DnsForwardStatus string
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    Domain string
    Domain.
    EndPointName string
    End point name.
    ForwardAddress string
    Forwarded address.
    ForwardRuleName string
    Forwarding rule name.
    ForwardRuleType string
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    IsCustomTld bool
    Custom TLD.
    OwnerUin float64
    Owner Uin.
    RecordCount float64
    Record count.
    Remark string
    Remark.
    Status string
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    Tags []GetPrivateDnsPrivateZoneListPrivateZoneSetTag
    tags.
    UpdatedOn string
    Update time.
    VpcSets []GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet
    Vpc list.
    ZoneId string
    PrivateZone ID.
    accountVpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet>
    VPC list of bound associated accounts.
    cnameSpeedupStatus String
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    createdOn String
    Create time.
    deletedVpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet>
    List of deleted VPCs.
    dnsForwardStatus String
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    domain String
    Domain.
    endPointName String
    End point name.
    forwardAddress String
    Forwarded address.
    forwardRuleName String
    Forwarding rule name.
    forwardRuleType String
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    isCustomTld Boolean
    Custom TLD.
    ownerUin Double
    Owner Uin.
    recordCount Double
    Record count.
    remark String
    Remark.
    status String
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    tags List<GetPrivateDnsPrivateZoneListPrivateZoneSetTag>
    tags.
    updatedOn String
    Update time.
    vpcSets List<GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet>
    Vpc list.
    zoneId String
    PrivateZone ID.
    accountVpcSets GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet[]
    VPC list of bound associated accounts.
    cnameSpeedupStatus string
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    createdOn string
    Create time.
    deletedVpcSets GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet[]
    List of deleted VPCs.
    dnsForwardStatus string
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    domain string
    Domain.
    endPointName string
    End point name.
    forwardAddress string
    Forwarded address.
    forwardRuleName string
    Forwarding rule name.
    forwardRuleType string
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    isCustomTld boolean
    Custom TLD.
    ownerUin number
    Owner Uin.
    recordCount number
    Record count.
    remark string
    Remark.
    status string
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    tags GetPrivateDnsPrivateZoneListPrivateZoneSetTag[]
    tags.
    updatedOn string
    Update time.
    vpcSets GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet[]
    Vpc list.
    zoneId string
    PrivateZone ID.
    account_vpc_sets Sequence[GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet]
    VPC list of bound associated accounts.
    cname_speedup_status str
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    created_on str
    Create time.
    deleted_vpc_sets Sequence[GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet]
    List of deleted VPCs.
    dns_forward_status str
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    domain str
    Domain.
    end_point_name str
    End point name.
    forward_address str
    Forwarded address.
    forward_rule_name str
    Forwarding rule name.
    forward_rule_type str
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    is_custom_tld bool
    Custom TLD.
    owner_uin float
    Owner Uin.
    record_count float
    Record count.
    remark str
    Remark.
    status str
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    tags Sequence[GetPrivateDnsPrivateZoneListPrivateZoneSetTag]
    tags.
    updated_on str
    Update time.
    vpc_sets Sequence[GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet]
    Vpc list.
    zone_id str
    PrivateZone ID.
    accountVpcSets List<Property Map>
    VPC list of bound associated accounts.
    cnameSpeedupStatus String
    CNAME acceleration status: enabled: ENABLED, off, DISABLED.
    createdOn String
    Create time.
    deletedVpcSets List<Property Map>
    List of deleted VPCs.
    dnsForwardStatus String
    Domain name recursive resolution status: enabled: ENABLED, disabled, DISABLED.
    domain String
    Domain.
    endPointName String
    End point name.
    forwardAddress String
    Forwarded address.
    forwardRuleName String
    Forwarding rule name.
    forwardRuleType String
    Forwarding rule type: from cloud to cloud, DOWN; From cloud to cloud, UP, currently only supports DOWN.
    isCustomTld Boolean
    Custom TLD.
    ownerUin Number
    Owner Uin.
    recordCount Number
    Record count.
    remark String
    Remark.
    status String
    Private domain bound VPC status, not associated with vpc: SUSPEND, associated with VPC: ENABLED, associated with VPC failed: FAILED.
    tags List<Property Map>
    tags.
    updatedOn String
    Update time.
    vpcSets List<Property Map>
    Vpc list.
    zoneId String
    PrivateZone ID.

    GetPrivateDnsPrivateZoneListPrivateZoneSetAccountVpcSet

    Region string
    Region.
    Uin string
    uin.
    UniqVpcId string
    Vpc Id.
    Region string
    Region.
    Uin string
    uin.
    UniqVpcId string
    Vpc Id.
    region String
    Region.
    uin String
    uin.
    uniqVpcId String
    Vpc Id.
    region string
    Region.
    uin string
    uin.
    uniqVpcId string
    Vpc Id.
    region str
    Region.
    uin str
    uin.
    uniq_vpc_id str
    Vpc Id.
    region String
    Region.
    uin String
    uin.
    uniqVpcId String
    Vpc Id.

    GetPrivateDnsPrivateZoneListPrivateZoneSetDeletedVpcSet

    Region string
    Region.
    UniqVpcId string
    Vpc Id.
    Region string
    Region.
    UniqVpcId string
    Vpc Id.
    region String
    Region.
    uniqVpcId String
    Vpc Id.
    region string
    Region.
    uniqVpcId string
    Vpc Id.
    region str
    Region.
    uniq_vpc_id str
    Vpc Id.
    region String
    Region.
    uniqVpcId String
    Vpc Id.

    GetPrivateDnsPrivateZoneListPrivateZoneSetTag

    TagKey string
    tag key.
    TagValue string
    tag value.
    TagKey string
    tag key.
    TagValue string
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.
    tagKey string
    tag key.
    tagValue string
    tag value.
    tag_key str
    tag key.
    tag_value str
    tag value.
    tagKey String
    tag key.
    tagValue String
    tag value.

    GetPrivateDnsPrivateZoneListPrivateZoneSetVpcSet

    Region string
    Region.
    UniqVpcId string
    Vpc Id.
    Region string
    Region.
    UniqVpcId string
    Vpc Id.
    region String
    Region.
    uniqVpcId String
    Vpc Id.
    region string
    Region.
    uniqVpcId string
    Vpc Id.
    region str
    Region.
    uniq_vpc_id str
    Vpc Id.
    region String
    Region.
    uniqVpcId String
    Vpc Id.

    Package Details

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