import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface InterfaceMplsConfig extends cdktf.TerraformMetaArguments { /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#delete_mode InterfaceMpls#delete_mode} */ readonly deleteMode?: string; /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#device InterfaceMpls#device} */ readonly device?: string; /** * Configure dynamic MPLS forwarding for IP * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#ip InterfaceMpls#ip} */ readonly ip?: boolean | cdktf.IResolvable; /** * Set MPLS Maximum Transmission Unit * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#mtu InterfaceMpls#mtu} */ readonly mtu?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#name InterfaceMpls#name} */ readonly name: string; /** * Interface type * - Choices: `GigabitEthernet`, `TwoGigabitEthernet`, `FiveGigabitEthernet`, `TenGigabitEthernet`, `TwentyFiveGigE`, `FortyGigabitEthernet`, `FiftyGigabitEthernet`, `HundredGigE`, `TwoHundredGigE`, `FourHundredGigE`, `Loopback`, `Vlan`, `Port-channel`, `Port-channel-subinterface/Port-channel`, `Tunnel` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#type InterfaceMpls#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls iosxe_interface_mpls} */ export declare class InterfaceMpls extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_interface_mpls"; /** * Generates CDKTF code for importing a InterfaceMpls resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the InterfaceMpls to import * @param importFromId The id of the existing InterfaceMpls that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the InterfaceMpls to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/interface_mpls iosxe_interface_mpls} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options InterfaceMplsConfig */ constructor(scope: Construct, id: string, config: InterfaceMplsConfig); private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _ip?; get ip(): boolean | cdktf.IResolvable; set ip(value: boolean | cdktf.IResolvable); resetIp(): void; get ipInput(): any; private _mtu?; get mtu(): string; set mtu(value: string); resetMtu(): void; get mtuInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }