import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::PrivateLink::VpcEndpoint */ export declare function getVpcEndpoint(args: GetVpcEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVpcEndpoint. */ export interface GetVpcEndpointArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getVpcEndpoint. */ export interface GetVpcEndpointResult { /** * Maximum bandwidth limit for the endpoint node connection, in Mbps. */ readonly bps: number; /** * Whether the endpoint is locked. Normal: Normal. FinancialLocked: Locked. If this parameter is empty, the endpoint is not locked. */ readonly businessStatus: string; /** * Status of the endpoint node connection. PendingAcceptance: waiting for connection. Connecting: connecting. Connected: connected. Disconnecting: disconnecting. Rejected: connection rejected. Failed: connection failed. PartialFailed: partial connection failure. ServiceDeleted: service deleted. */ readonly connectionStatus: string; /** * Creation time of the endpoint. */ readonly creationTime: string; /** * Deletion time of the endpoint. */ readonly deletedTime: string; /** * Description of the endpoint node. The default value is an empty string. It must start with a letter, number, or Chinese character, and can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. */ readonly description: string; /** * Domain name of the endpoint. */ readonly endpointDomain: string; /** * ID of the endpoint node. */ readonly endpointId: string; /** * Endpoint index */ readonly endpointIndex: number; /** * Endpoint name. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length must be between 1 and 128 characters. If not specified, defaults to the endpoint ID. */ readonly endpointName: string; /** * Type of the endpoint node. Interface: interface endpoint node. */ readonly endpointType: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * IP protocol type for the interface endpoint. Options are ipv4 and ipv6. The default for interface endpoints is ipv4. If only ipv4 is used, do not provide this parameter. If the interface endpoint is dual stack (ipv4 & ipv6), you must provide this parameter. Before providing it, ensure the following: your account has enabled IPv6 for private network connections; the subnet associated with the interface endpoint has enabled the IPv6 segment; the endpoint service associated with the interface endpoint is dual stack. Parameter -N: indicates the sequence number of the IP protocol type for the interface endpoint, with a range of 1–2. Use & to separate the sequence numbers of the two IP protocol types. Currently, only providing IPv6 is not supported. */ readonly ipAddressVersions: string[]; /** * Billing account for the private network connection. Endpoint: endpoint account. EndpointService: endpoint service account. */ readonly payer: string; /** * Enable private DNS name. false (default): disabled. true: enabled. */ readonly privateDnsEnabled: boolean; /** * The private DNS name of the endpoint node. If the parameter PrivateDNSEnabled returns false, this parameter is empty. */ readonly privateDnsName: string; /** * Name of the project to which the endpoint node belongs. */ readonly projectName: string; /** * ID of the security group to be bound to the endpoint. You can call the DescribeSecurityGroups API to obtain the security group ID. Parameter -N: Indicates the sequence number of the security group ID, value range: 1–5. Separate multiple security group IDs with &. */ readonly securityGroupIds: string[]; /** * ID of the endpoint service to be associated. You can call the DescribeVpcEndpointServices API to obtain the endpoint service ID. */ readonly serviceId: string; /** * Whether the endpoint is managed. false: Unmanaged endpoint. true: Managed endpoint. */ readonly serviceManaged: boolean; /** * Name of the endpoint service to be associated. */ readonly serviceName: string; /** * Status of the endpoint. Creating: Creating. Pending: Modifying configuration. Available: Available. Deleting: Deleting. */ readonly status: string; /** * Endpoint user tag. */ readonly tags: outputs.privatelink.GetVpcEndpointTag[]; /** * Most recent operation time of the endpoint. */ readonly updateTime: string; /** * ID of the VPC to which the endpoint belongs. You can call the DescribeVpcs API to obtain the VPC ID. */ readonly vpcId: string; /** * Availability zone of the endpoint node. */ readonly zones: outputs.privatelink.GetVpcEndpointZone[]; } /** * Data Source schema for Volcengine::PrivateLink::VpcEndpoint */ export declare function getVpcEndpointOutput(args: GetVpcEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVpcEndpoint. */ export interface GetVpcEndpointOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }