import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Static Route configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getStaticRoute({ * mask: "255.255.255.255", * prefix: "5.5.5.5", * }); * ``` */ export declare function getStaticRoute(args: GetStaticRouteArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStaticRoute. */ export interface GetStaticRouteArgs { /** * A device name from the provider configuration. */ device?: string; mask: string; prefix: string; } /** * A collection of values returned by getStaticRoute. */ export interface GetStaticRouteResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; readonly mask: string; readonly nextHops: outputs.GetStaticRouteNextHop[]; readonly prefix: string; } /** * This data source can read the Static Route configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getStaticRoute({ * mask: "255.255.255.255", * prefix: "5.5.5.5", * }); * ``` */ export declare function getStaticRouteOutput(args: GetStaticRouteOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getStaticRoute. */ export interface GetStaticRouteOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; mask: pulumi.Input; prefix: pulumi.Input; }