import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::PrivateLink::VpcEndpointConnection */ export declare function getVpcEndpointConnection(args: GetVpcEndpointConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVpcEndpointConnection. */ export interface GetVpcEndpointConnectionArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getVpcEndpointConnection. */ export interface GetVpcEndpointConnectionResult { /** * Maximum bandwidth for the endpoint connection, range 100–20000 Mbps */ readonly bps: number; /** * Status of the endpoint 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 connection */ readonly creationTime: string; /** * Endpoint ID */ readonly endpointId: string; /** * Account ID to which the endpoint belongs */ readonly endpointOwnerAccountId: string; /** * ID of the VPC to which the endpoint network interface belongs */ readonly endpointVpcId: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * New service resource ID */ readonly replaceResourceId: string; /** * Whether to operate the endpoint connection for seamless service resource replacement. true: yes, disconnect the old service resource for the seamless replacement endpoint connection. false: no, reject the specified endpoint connection. If this parameter is empty, the specified endpoint connection is rejected */ readonly replacingResource: string; /** * Specified service resource */ readonly resourcesAllocates: outputs.privatelink.GetVpcEndpointConnectionResourcesAllocate[]; /** * Endpoint service ID */ readonly serviceId: string; /** * Most recent operation time of the endpoint connection */ readonly updateTime: string; /** * Endpoint zone ID */ readonly zoneId: string; /** * Details of the endpoint zone */ readonly zones: outputs.privatelink.GetVpcEndpointConnectionZone[]; } /** * Data Source schema for Volcengine::PrivateLink::VpcEndpointConnection */ export declare function getVpcEndpointConnectionOutput(args: GetVpcEndpointConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVpcEndpointConnection. */ export interface GetVpcEndpointConnectionOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }