import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EvpnProfileConfig 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/evpn_profile#delete_mode EvpnProfile#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/evpn_profile#device EvpnProfile#device} */ readonly device?: string; /** * Evpn instance identifier base * - Range: `0`-`65535` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/evpn_profile#evi_base EvpnProfile#evi_base} */ readonly eviBase?: number; /** * VxLAN Layer 2 VNI base * - Range: `4096`-`16777215` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/evpn_profile#l2vni_base EvpnProfile#l2vni_base} */ readonly l2VniBase?: number; /** * EVPN L2 profile name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/evpn_profile#name EvpnProfile#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/evpn_profile iosxe_evpn_profile} */ export declare class EvpnProfile extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_evpn_profile"; /** * Generates CDKTF code for importing a EvpnProfile 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 EvpnProfile to import * @param importFromId The id of the existing EvpnProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/evpn_profile#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EvpnProfile 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/evpn_profile iosxe_evpn_profile} 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 EvpnProfileConfig */ constructor(scope: Construct, id: string, config: EvpnProfileConfig); 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; private _eviBase?; get eviBase(): number; set eviBase(value: number); resetEviBase(): void; get eviBaseInput(): number; get id(): any; private _l2VniBase?; get l2VniBase(): number; set l2VniBase(value: number); resetL2VniBase(): void; get l2VniBaseInput(): number; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }