import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface UdldConfig extends cdktf.TerraformMetaArguments { /** * Enable UDLD protocol in aggressive mode on fiber ports exceptwhere locally configured * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld#aggressive Udld#aggressive} */ readonly aggressive?: boolean | cdktf.IResolvable; /** * 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/udld#delete_mode Udld#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/udld#device Udld#device} */ readonly device?: string; /** * Enable UDLD protocol on fiber ports except where locally configured * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld#enable Udld#enable} */ readonly enable?: boolean | cdktf.IResolvable; /** * Set UDLD message time period * - Range: `1`-`90` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld#message_time Udld#message_time} */ readonly messageTime?: number; /** * timer-interval(sec) * - Range: `30`-`86400` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld#recovery_interval Udld#recovery_interval} */ readonly recoveryInterval?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld iosxe_udld} */ export declare class Udld extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_udld"; /** * Generates CDKTF code for importing a Udld 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 Udld to import * @param importFromId The id of the existing Udld that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/udld#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Udld 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/udld iosxe_udld} 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 UdldConfig = {} */ constructor(scope: Construct, id: string, config?: UdldConfig); private _aggressive?; get aggressive(): boolean | cdktf.IResolvable; set aggressive(value: boolean | cdktf.IResolvable); resetAggressive(): void; get aggressiveInput(): any; 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 _enable?; get enable(): boolean | cdktf.IResolvable; set enable(value: boolean | cdktf.IResolvable); resetEnable(): void; get enableInput(): any; get id(): any; private _messageTime?; get messageTime(): number; set messageTime(value: number); resetMessageTime(): void; get messageTimeInput(): number; private _recoveryInterval?; get recoveryInterval(): number; set recoveryInterval(value: number); resetRecoveryInterval(): void; get recoveryIntervalInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }