import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::PrivateZone::ResolverEndpoint */ export declare function getResolverEndpoint(args: GetResolverEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResolverEndpoint. */ export interface GetResolverEndpointArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getResolverEndpoint. */ export interface GetResolverEndpointResult { /** * Creation time */ readonly createdTime: string; /** * DNS request forwarding direction for the endpoint. OUTBOUND (default): outbound endpoint forwards DNS queries from within the VPC to external DNS servers. INBOUND: inbound endpoint forwards DNS queries from external sources to the resolver */ readonly direction: string; /** * Endpoint ID */ readonly endpointId: string; /** * Endpoint type. IPv4: IPv4 endpoint. DualStack: dual-stack endpoint */ readonly endpointType: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Availability zone, subnet, and IP configuration for the endpoint */ readonly ipConfigs: outputs.privatezone.GetResolverEndpointIpConfig[]; /** * Endpoint name. Supports UTF-8 format */ readonly name: string; /** * Project name to which the endpoint belongs. Default is default */ readonly projectName: string; /** * Security group ID for the endpoint IP address. The endpoint uses a default security group: For outbound endpoints, inbound traffic is denied; outbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0. For inbound endpoints, inbound traffic allows TCP port 53 and UDP port 53 to 0.0.0.0/0; outbound traffic is denied */ readonly securityGroupId: string; /** * Endpoint status. Creating: creating. Running: running. Updating: updating. Error: abnormal operation */ readonly status: string; /** * Tag list */ readonly tags: outputs.privatezone.GetResolverEndpointTag[]; /** * Update time */ readonly updatedTime: string; /** * VPC ID where the endpoint is located */ readonly vpcId: string; /** * Region of the VPC where the endpoint is located */ readonly vpcRegion: string; } /** * Data Source schema for Volcengine::PrivateZone::ResolverEndpoint */ export declare function getResolverEndpointOutput(args: GetResolverEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getResolverEndpoint. */ export interface GetResolverEndpointOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }