import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the MSDP VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getMsdpVrf({ * vrf: "VRF1", * }); * ``` */ export declare function getMsdpVrf(args: GetMsdpVrfArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMsdpVrf. */ export interface GetMsdpVrfArgs { /** * A device name from the provider configuration. */ device?: string; vrf: string; } /** * A collection of values returned by getMsdpVrf. */ export interface GetMsdpVrfResult { /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Configure MSDP Originator ID */ readonly originatorId: string; /** * MSDP peer on which the password is to be set */ readonly passwords: outputs.GetMsdpVrfPassword[]; /** * Configure an MSDP peer */ readonly peers: outputs.GetMsdpVrfPeer[]; readonly vrf: string; } /** * This data source can read the MSDP VRF configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getMsdpVrf({ * vrf: "VRF1", * }); * ``` */ export declare function getMsdpVrfOutput(args: GetMsdpVrfOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getMsdpVrf. */ export interface GetMsdpVrfOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; vrf: pulumi.Input; }