import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Interface PIM configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfacePim({ * name: "100", * type: "Loopback", * }); * ``` */ export declare function getInterfacePim(args: GetInterfacePimArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInterfacePim. */ export interface GetInterfacePimArgs { /** * A device name from the provider configuration. */ device?: string; name: string; /** * Interface type */ type: string; } /** * A collection of values returned by getInterfacePim. */ export interface GetInterfacePimResult { /** * Configure BFD */ readonly bfd: boolean; /** * Border of PIM domain */ readonly border: boolean; /** * Border of PIM domain */ readonly bsrBorder: boolean; /** * Enable PIM dense-mode operation */ readonly denseMode: boolean; /** * A device name from the provider configuration. */ readonly device?: string; /** * PIM router DR priority */ readonly drPriority: number; /** * The path of the retrieved object. */ readonly id: string; readonly name: string; /** * Enable PIM passive interface operation */ readonly passive: boolean; /** * Enable PIM sparse-dense-mode operation */ readonly sparseDenseMode: boolean; /** * Enable PIM sparse-mode operation */ readonly sparseMode: boolean; /** * Interface type */ readonly type: string; } /** * This data source can read the Interface PIM configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getInterfacePim({ * name: "100", * type: "Loopback", * }); * ``` */ export declare function getInterfacePimOutput(args: GetInterfacePimOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getInterfacePim. */ export interface GetInterfacePimOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name: pulumi.Input; /** * Interface type */ type: pulumi.Input; }