import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::CEN::RouteEntry */ export declare function getRouteEntry(args: GetRouteEntryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRouteEntry. */ export interface GetRouteEntryArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getRouteEntry. */ export interface GetRouteEntryResult { /** * AS path */ readonly asPaths: string[]; /** * Cloud enterprise network instance ID */ readonly cenId: string; /** * Destination CIDR of the route entry */ readonly destinationCidrBlock: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Network instance ID */ readonly instanceId: string; /** * Region ID of the network instance */ readonly instanceRegionId: string; /** * Network instance type */ readonly instanceType: string; /** * Publish status of the route entry */ readonly publishStatus: string; /** * Effective status of the route entry */ readonly status: string; /** * Route entry type */ readonly type: string; } /** * Data Source schema for Volcengine::CEN::RouteEntry */ export declare function getRouteEntryOutput(args: GetRouteEntryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRouteEntry. */ export interface GetRouteEntryOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }