import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the VLAN Configuration configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.VlanConfiguration("example", { * evpnInstance: 123, * evpnInstanceVni: 10123, * vlanId: 123, * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/vlanConfiguration:VlanConfiguration example "Cisco-IOS-XE-native:native/vlan/Cisco-IOS-XE-vlan:configuration=123" * ``` */ export declare class VlanConfiguration extends pulumi.CustomResource { /** * Get an existing VlanConfiguration 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?: VlanConfigurationState, opts?: pulumi.CustomResourceOptions): VlanConfiguration; /** * Returns true if the given object is an instance of VlanConfiguration. 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 VlanConfiguration; /** * Enter VFI name */ readonly accessVfi: pulumi.Output; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * - Range: `1`-`65535` */ readonly evpnInstance: pulumi.Output; /** * VxLAN VNI value - Range: `4096`-`16777215` */ readonly evpnInstanceVni: pulumi.Output; /** * VLAN ID List Eg. 1-10,15 - Range: `1`-`4094` */ readonly vlanId: pulumi.Output; /** * VxLAN VNI value - Range: `4096`-`16777215` */ readonly vni: pulumi.Output; /** * Create a VlanConfiguration 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: VlanConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VlanConfiguration resources. */ export interface VlanConfigurationState { /** * Enter VFI name */ accessVfi?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Range: `1`-`65535` */ evpnInstance?: pulumi.Input; /** * VxLAN VNI value - Range: `4096`-`16777215` */ evpnInstanceVni?: pulumi.Input; /** * VLAN ID List Eg. 1-10,15 - Range: `1`-`4094` */ vlanId?: pulumi.Input; /** * VxLAN VNI value - Range: `4096`-`16777215` */ vni?: pulumi.Input; } /** * The set of arguments for constructing a VlanConfiguration resource. */ export interface VlanConfigurationArgs { /** * Enter VFI name */ accessVfi?: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Range: `1`-`65535` */ evpnInstance?: pulumi.Input; /** * VxLAN VNI value - Range: `4096`-`16777215` */ evpnInstanceVni?: pulumi.Input; /** * VLAN ID List Eg. 1-10,15 - Range: `1`-`4094` */ vlanId: pulumi.Input; /** * VxLAN VNI value - Range: `4096`-`16777215` */ vni?: pulumi.Input; }