import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::CEN::ServiceRouteEntry */ export declare function getServiceRouteEntry(args: GetServiceRouteEntryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceRouteEntry. */ export interface GetServiceRouteEntryArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getServiceRouteEntry. */ export interface GetServiceRouteEntryResult { /** * Cloud Enterprise Network instance ID. */ readonly cenId: string; /** * Resource creation time. */ readonly creationTime: string; /** * Custom remarks for the route. */ readonly description: string; /** * Address range where the cloud service is deployed. */ readonly destinationCidrBlock: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Route publishing scope mode. */ readonly publishMode: string; /** * List of network instances associated with batch route publishing. */ readonly publishToInstances: outputs.cen.GetServiceRouteEntryPublishToInstance[]; /** * Region where the cloud service is located. */ readonly serviceRegionId: string; /** * Private network ID bound to the backend cloud service. */ readonly serviceVpcId: string; /** * Cloud service access route status. */ readonly status: string; } /** * Data Source schema for Volcengine::CEN::ServiceRouteEntry */ export declare function getServiceRouteEntryOutput(args: GetServiceRouteEntryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceRouteEntry. */ export interface GetServiceRouteEntryOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }