1. Packages
  2. Volcenginecc Provider
  3. API Docs
  4. privatezone
  5. ResolverEndpoint
volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine
volcenginecc logo
volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine

    在把外部的 DNS 查询请求转发到解析器的场景中,您需要创建终端节点。收到解析器转发的 DNS 查询请求后,终端节点出站终端节点会把 DNS 查询请求转发到外部的 DNS 服务器。收到来自外部的 DNS 查询请求后,入站终端节点会把 DNS 查询请求转发到解析器。

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      privateZoneResolverEndpointDemo:
        type: volcenginecc:privatezone:ResolverEndpoint
        name: PrivateZoneResolverEndpointDemo
        properties:
          name: PrivateZoneResolverEndpointDemo
          vpcId: vpc-3nrh1tqschwcg931eaqxxxxx
          endpointType: IPv4
          ipConfigs:
            - az_id: cn-beijing-a
              subnet_id: subnet-bt50na0bf6kg5h0b2u1xxxxx
              ip: 192.168.xx.44
            - az_id: cn-beijing-b
              subnet_id: subnet-1a14u8n59jdvk8nvepjyxxxxx
              ip: 192.168.xx.154
          projectName: default
          tags:
            - key: env
              value: test
          vpcRegion: cn-beijing
          direction: OUTBOUND
    

    Create ResolverEndpoint Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ResolverEndpoint(name: string, args: ResolverEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def ResolverEndpoint(resource_name: str,
                         args: ResolverEndpointArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ResolverEndpoint(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         name: Optional[str] = None,
                         vpc_id: Optional[str] = None,
                         vpc_region: Optional[str] = None,
                         direction: Optional[str] = None,
                         endpoint_type: Optional[str] = None,
                         ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
                         project_name: Optional[str] = None,
                         tags: Optional[Sequence[ResolverEndpointTagArgs]] = None)
    func NewResolverEndpoint(ctx *Context, name string, args ResolverEndpointArgs, opts ...ResourceOption) (*ResolverEndpoint, error)
    public ResolverEndpoint(string name, ResolverEndpointArgs args, CustomResourceOptions? opts = null)
    public ResolverEndpoint(String name, ResolverEndpointArgs args)
    public ResolverEndpoint(String name, ResolverEndpointArgs args, CustomResourceOptions options)
    
    type: volcenginecc:privatezone:ResolverEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var resolverEndpointResource = new Volcenginecc.Privatezone.ResolverEndpoint("resolverEndpointResource", new()
    {
        Name = "string",
        VpcId = "string",
        VpcRegion = "string",
        Direction = "string",
        EndpointType = "string",
        IpConfigs = new[]
        {
            new Volcenginecc.Privatezone.Inputs.ResolverEndpointIpConfigArgs
            {
                AzId = "string",
                Ip = "string",
                Ipv6 = "string",
                SubnetId = "string",
            },
        },
        ProjectName = "string",
        Tags = new[]
        {
            new Volcenginecc.Privatezone.Inputs.ResolverEndpointTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := privatezone.NewResolverEndpoint(ctx, "resolverEndpointResource", &privatezone.ResolverEndpointArgs{
    	Name:         pulumi.String("string"),
    	VpcId:        pulumi.String("string"),
    	VpcRegion:    pulumi.String("string"),
    	Direction:    pulumi.String("string"),
    	EndpointType: pulumi.String("string"),
    	IpConfigs: privatezone.ResolverEndpointIpConfigArray{
    		&privatezone.ResolverEndpointIpConfigArgs{
    			AzId:     pulumi.String("string"),
    			Ip:       pulumi.String("string"),
    			Ipv6:     pulumi.String("string"),
    			SubnetId: pulumi.String("string"),
    		},
    	},
    	ProjectName: pulumi.String("string"),
    	Tags: privatezone.ResolverEndpointTagArray{
    		&privatezone.ResolverEndpointTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var resolverEndpointResource = new ResolverEndpoint("resolverEndpointResource", ResolverEndpointArgs.builder()
        .name("string")
        .vpcId("string")
        .vpcRegion("string")
        .direction("string")
        .endpointType("string")
        .ipConfigs(ResolverEndpointIpConfigArgs.builder()
            .azId("string")
            .ip("string")
            .ipv6("string")
            .subnetId("string")
            .build())
        .projectName("string")
        .tags(ResolverEndpointTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    resolver_endpoint_resource = volcenginecc.privatezone.ResolverEndpoint("resolverEndpointResource",
        name="string",
        vpc_id="string",
        vpc_region="string",
        direction="string",
        endpoint_type="string",
        ip_configs=[{
            "az_id": "string",
            "ip": "string",
            "ipv6": "string",
            "subnet_id": "string",
        }],
        project_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const resolverEndpointResource = new volcenginecc.privatezone.ResolverEndpoint("resolverEndpointResource", {
        name: "string",
        vpcId: "string",
        vpcRegion: "string",
        direction: "string",
        endpointType: "string",
        ipConfigs: [{
            azId: "string",
            ip: "string",
            ipv6: "string",
            subnetId: "string",
        }],
        projectName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcenginecc:privatezone:ResolverEndpoint
    properties:
        direction: string
        endpointType: string
        ipConfigs:
            - azId: string
              ip: string
              ipv6: string
              subnetId: string
        name: string
        projectName: string
        tags:
            - key: string
              value: string
        vpcId: string
        vpcRegion: string
    

    ResolverEndpoint Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ResolverEndpoint resource accepts the following input properties:

    Name string
    终端节点的名称。支持 UTF-8 格式。
    VpcId string
    终端节点所在的 VPC 的 ID。
    VpcRegion string
    终端节点所在的 VPC 的地域。
    Direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    EndpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    IpConfigs List<Volcengine.ResolverEndpointIpConfig>
    ProjectName string
    终端节点所属的项目名称。默认为 default。
    Tags List<Volcengine.ResolverEndpointTag>
    Name string
    终端节点的名称。支持 UTF-8 格式。
    VpcId string
    终端节点所在的 VPC 的 ID。
    VpcRegion string
    终端节点所在的 VPC 的地域。
    Direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    EndpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    IpConfigs []ResolverEndpointIpConfigArgs
    ProjectName string
    终端节点所属的项目名称。默认为 default。
    Tags []ResolverEndpointTagArgs
    name String
    终端节点的名称。支持 UTF-8 格式。
    vpcId String
    终端节点所在的 VPC 的 ID。
    vpcRegion String
    终端节点所在的 VPC 的地域。
    direction String
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointType String
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs List<ResolverEndpointIpConfig>
    projectName String
    终端节点所属的项目名称。默认为 default。
    tags List<ResolverEndpointTag>
    name string
    终端节点的名称。支持 UTF-8 格式。
    vpcId string
    终端节点所在的 VPC 的 ID。
    vpcRegion string
    终端节点所在的 VPC 的地域。
    direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs ResolverEndpointIpConfig[]
    projectName string
    终端节点所属的项目名称。默认为 default。
    tags ResolverEndpointTag[]
    name str
    终端节点的名称。支持 UTF-8 格式。
    vpc_id str
    终端节点所在的 VPC 的 ID。
    vpc_region str
    终端节点所在的 VPC 的地域。
    direction str
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpoint_type str
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ip_configs Sequence[ResolverEndpointIpConfigArgs]
    project_name str
    终端节点所属的项目名称。默认为 default。
    tags Sequence[ResolverEndpointTagArgs]
    name String
    终端节点的名称。支持 UTF-8 格式。
    vpcId String
    终端节点所在的 VPC 的 ID。
    vpcRegion String
    终端节点所在的 VPC 的地域。
    direction String
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointType String
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs List<Property Map>
    projectName String
    终端节点所属的项目名称。默认为 default。
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ResolverEndpoint resource produces the following output properties:

    CreatedTime string
    创建时间
    EndpointId string
    终端节点的 ID。
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    Status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    UpdatedTime string
    更新时间
    CreatedTime string
    创建时间
    EndpointId string
    终端节点的 ID。
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    Status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    UpdatedTime string
    更新时间
    createdTime String
    创建时间
    endpointId String
    终端节点的 ID。
    id String
    The provider-assigned unique ID for this managed resource.
    securityGroupId String
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status String
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    updatedTime String
    更新时间
    createdTime string
    创建时间
    endpointId string
    终端节点的 ID。
    id string
    The provider-assigned unique ID for this managed resource.
    securityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    updatedTime string
    更新时间
    created_time str
    创建时间
    endpoint_id str
    终端节点的 ID。
    id str
    The provider-assigned unique ID for this managed resource.
    security_group_id str
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status str
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    updated_time str
    更新时间
    createdTime String
    创建时间
    endpointId String
    终端节点的 ID。
    id String
    The provider-assigned unique ID for this managed resource.
    securityGroupId String
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status String
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    updatedTime String
    更新时间

    Look up Existing ResolverEndpoint Resource

    Get an existing ResolverEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ResolverEndpointState, opts?: CustomResourceOptions): ResolverEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_time: Optional[str] = None,
            direction: Optional[str] = None,
            endpoint_id: Optional[str] = None,
            endpoint_type: Optional[str] = None,
            ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
            name: Optional[str] = None,
            project_name: Optional[str] = None,
            security_group_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[ResolverEndpointTagArgs]] = None,
            updated_time: Optional[str] = None,
            vpc_id: Optional[str] = None,
            vpc_region: Optional[str] = None) -> ResolverEndpoint
    func GetResolverEndpoint(ctx *Context, name string, id IDInput, state *ResolverEndpointState, opts ...ResourceOption) (*ResolverEndpoint, error)
    public static ResolverEndpoint Get(string name, Input<string> id, ResolverEndpointState? state, CustomResourceOptions? opts = null)
    public static ResolverEndpoint get(String name, Output<String> id, ResolverEndpointState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:privatezone:ResolverEndpoint    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedTime string
    创建时间
    Direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    EndpointId string
    终端节点的 ID。
    EndpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    IpConfigs List<Volcengine.ResolverEndpointIpConfig>
    Name string
    终端节点的名称。支持 UTF-8 格式。
    ProjectName string
    终端节点所属的项目名称。默认为 default。
    SecurityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    Status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    Tags List<Volcengine.ResolverEndpointTag>
    UpdatedTime string
    更新时间
    VpcId string
    终端节点所在的 VPC 的 ID。
    VpcRegion string
    终端节点所在的 VPC 的地域。
    CreatedTime string
    创建时间
    Direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    EndpointId string
    终端节点的 ID。
    EndpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    IpConfigs []ResolverEndpointIpConfigArgs
    Name string
    终端节点的名称。支持 UTF-8 格式。
    ProjectName string
    终端节点所属的项目名称。默认为 default。
    SecurityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    Status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    Tags []ResolverEndpointTagArgs
    UpdatedTime string
    更新时间
    VpcId string
    终端节点所在的 VPC 的 ID。
    VpcRegion string
    终端节点所在的 VPC 的地域。
    createdTime String
    创建时间
    direction String
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointId String
    终端节点的 ID。
    endpointType String
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs List<ResolverEndpointIpConfig>
    name String
    终端节点的名称。支持 UTF-8 格式。
    projectName String
    终端节点所属的项目名称。默认为 default。
    securityGroupId String
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status String
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    tags List<ResolverEndpointTag>
    updatedTime String
    更新时间
    vpcId String
    终端节点所在的 VPC 的 ID。
    vpcRegion String
    终端节点所在的 VPC 的地域。
    createdTime string
    创建时间
    direction string
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointId string
    终端节点的 ID。
    endpointType string
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs ResolverEndpointIpConfig[]
    name string
    终端节点的名称。支持 UTF-8 格式。
    projectName string
    终端节点所属的项目名称。默认为 default。
    securityGroupId string
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status string
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    tags ResolverEndpointTag[]
    updatedTime string
    更新时间
    vpcId string
    终端节点所在的 VPC 的 ID。
    vpcRegion string
    终端节点所在的 VPC 的地域。
    created_time str
    创建时间
    direction str
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpoint_id str
    终端节点的 ID。
    endpoint_type str
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ip_configs Sequence[ResolverEndpointIpConfigArgs]
    name str
    终端节点的名称。支持 UTF-8 格式。
    project_name str
    终端节点所属的项目名称。默认为 default。
    security_group_id str
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status str
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    tags Sequence[ResolverEndpointTagArgs]
    updated_time str
    更新时间
    vpc_id str
    终端节点所在的 VPC 的 ID。
    vpc_region str
    终端节点所在的 VPC 的地域。
    createdTime String
    创建时间
    direction String
    终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
    endpointId String
    终端节点的 ID。
    endpointType String
    终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
    ipConfigs List<Property Map>
    name String
    终端节点的名称。支持 UTF-8 格式。
    projectName String
    终端节点所属的项目名称。默认为 default。
    securityGroupId String
    适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
    status String
    终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
    tags List<Property Map>
    updatedTime String
    更新时间
    vpcId String
    终端节点所在的 VPC 的 ID。
    vpcRegion String
    终端节点所在的 VPC 的地域。

    Supporting Types

    ResolverEndpointIpConfig, ResolverEndpointIpConfigArgs

    AzId string
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    Ip string
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    Ipv6 string
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    SubnetId string
    终端节点 IP 地址所在的子网 ID。
    AzId string
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    Ip string
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    Ipv6 string
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    SubnetId string
    终端节点 IP 地址所在的子网 ID。
    azId String
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    ip String
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    ipv6 String
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    subnetId String
    终端节点 IP 地址所在的子网 ID。
    azId string
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    ip string
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    ipv6 string
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    subnetId string
    终端节点 IP 地址所在的子网 ID。
    az_id str
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    ip str
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    ipv6 str
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    subnet_id str
    终端节点 IP 地址所在的子网 ID。
    azId String
    终端节点 IP 地址所在的可用区。为了保证高可用,建议您至少添加 2 个可用区。
    ip String
    终端节点的 IPv4 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    ipv6 String
    终端节点的 IPv6 地址。如果您不设置该参数,系统会自动分配一个 IP 地址。您最多只能添加 6 个 IP 地址。
    subnetId String
    终端节点 IP 地址所在的子网 ID。

    ResolverEndpointTag, ResolverEndpointTagArgs

    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    Key string
    用户标签的标签键。
    Value string
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。
    key string
    用户标签的标签键。
    value string
    用户标签的标签值。
    key str
    用户标签的标签键。
    value str
    用户标签的标签值。
    key String
    用户标签的标签键。
    value String
    用户标签的标签值。

    Import

    $ pulumi import volcenginecc:privatezone/resolverEndpoint:ResolverEndpoint example "endpoint_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    volcenginecc v0.0.11 published on Thursday, Dec 4, 2025 by Volcengine
      Meet Neo: Your AI Platform Teammate