import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the Interface PIM configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.InterfacePim("example", { * bfd: false, * border: false, * bsrBorder: false, * denseMode: false, * drPriority: 10, * passive: false, * sparseDenseMode: false, * sparseMode: true, * type: "Loopback", * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/interfacePim:InterfacePim example "Cisco-IOS-XE-native:native/interface/Loopback=100/ip/pim" * ``` */ export declare class InterfacePim extends pulumi.CustomResource { /** * Get an existing InterfacePim resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InterfacePimState, opts?: pulumi.CustomResourceOptions): InterfacePim; /** * Returns true if the given object is an instance of InterfacePim. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is InterfacePim; /** * Configure BFD */ readonly bfd: pulumi.Output; /** * Border of PIM domain */ readonly border: pulumi.Output; /** * Border of PIM domain */ readonly bsrBorder: pulumi.Output; /** * Enable PIM dense-mode operation */ readonly denseMode: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * PIM router DR priority - Range: `0`-`4294967295` */ readonly drPriority: pulumi.Output; readonly name: pulumi.Output; /** * Enable PIM passive interface operation */ readonly passive: pulumi.Output; /** * Enable PIM sparse-dense-mode operation */ readonly sparseDenseMode: pulumi.Output; /** * Enable PIM sparse-mode operation */ readonly sparseMode: pulumi.Output; /** * Interface type - Choices: `GigabitEthernet`, `TwoGigabitEthernet`, `FiveGigabitEthernet`, `TenGigabitEthernet`, * `TwentyFiveGigE`, `FortyGigabitEthernet`, `HundredGigE`, `TwoHundredGigE`, `FourHundredGigE`, `Loopback`, `Vlan`, * `Port-channel` */ readonly type: pulumi.Output; /** * Create a InterfacePim resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InterfacePimArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering InterfacePim resources. */ export interface InterfacePimState { /** * Configure BFD */ bfd?: pulumi.Input; /** * Border of PIM domain */ border?: pulumi.Input; /** * Border of PIM domain */ bsrBorder?: pulumi.Input; /** * Enable PIM dense-mode operation */ denseMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * PIM router DR priority - Range: `0`-`4294967295` */ drPriority?: pulumi.Input; name?: pulumi.Input; /** * Enable PIM passive interface operation */ passive?: pulumi.Input; /** * Enable PIM sparse-dense-mode operation */ sparseDenseMode?: pulumi.Input; /** * Enable PIM sparse-mode operation */ sparseMode?: pulumi.Input; /** * Interface type - Choices: `GigabitEthernet`, `TwoGigabitEthernet`, `FiveGigabitEthernet`, `TenGigabitEthernet`, * `TwentyFiveGigE`, `FortyGigabitEthernet`, `HundredGigE`, `TwoHundredGigE`, `FourHundredGigE`, `Loopback`, `Vlan`, * `Port-channel` */ type?: pulumi.Input; } /** * The set of arguments for constructing a InterfacePim resource. */ export interface InterfacePimArgs { /** * Configure BFD */ bfd?: pulumi.Input; /** * Border of PIM domain */ border?: pulumi.Input; /** * Border of PIM domain */ bsrBorder?: pulumi.Input; /** * Enable PIM dense-mode operation */ denseMode?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * PIM router DR priority - Range: `0`-`4294967295` */ drPriority?: pulumi.Input; name?: pulumi.Input; /** * Enable PIM passive interface operation */ passive?: pulumi.Input; /** * Enable PIM sparse-dense-mode operation */ sparseDenseMode?: pulumi.Input; /** * Enable PIM sparse-mode operation */ sparseMode?: pulumi.Input; /** * Interface type - Choices: `GigabitEthernet`, `TwoGigabitEthernet`, `FiveGigabitEthernet`, `TenGigabitEthernet`, * `TwentyFiveGigE`, `FortyGigabitEthernet`, `HundredGigE`, `TwoHundredGigE`, `FourHundredGigE`, `Loopback`, `Vlan`, * `Port-channel` */ type: pulumi.Input; }