import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeErrdisableConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/errdisable#device DataIosxeErrdisable#device} */ readonly device?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/errdisable iosxe_errdisable} */ export declare class DataIosxeErrdisable extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_errdisable"; /** * Generates CDKTF code for importing a DataIosxeErrdisable 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 DataIosxeErrdisable to import * @param importFromId The id of the existing DataIosxeErrdisable that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/errdisable#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeErrdisable 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/data-sources/errdisable iosxe_errdisable} Data Source * * @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 DataIosxeErrdisableConfig = {} */ constructor(scope: Construct, id: string, config?: DataIosxeErrdisableConfig); get detectCauseAll(): any; get detectCauseArpInspection(): any; get detectCauseBpduguard(): any; get detectCauseDhcpRateLimit(): any; get detectCauseDtpFlap(): any; get detectCauseGbicInvalid(): any; get detectCauseInlinePower(): any; get detectCauseL2Ptguard(): any; get detectCauseLinkFlap(): any; get detectCauseLoopback(): any; get detectCauseLoopdetect(): any; get detectCauseMlacpMinlink(): any; get detectCausePagpFlap(): any; get detectCausePppoeIaRateLimit(): any; get detectCauseSecurityViolationShutdownVlan(): any; get detectCauseSfpConfigMismatch(): any; get detectCauseSmallFrame(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get flapSettingCauseDtpFlapMaxFlaps(): any; get flapSettingCauseDtpFlapTime(): any; get flapSettingCauseLinkFlapMaxFlaps(): any; get flapSettingCauseLinkFlapTime(): any; get flapSettingCausePagpFlapMaxFlaps(): any; get flapSettingCausePagpFlapTime(): any; get id(): any; get recoveryCauseAll(): any; get recoveryCauseArpInspection(): any; get recoveryCauseBpduguard(): any; get recoveryCauseChannelMisconfig(): any; get recoveryCauseDhcpRateLimit(): any; get recoveryCauseDtpFlap(): any; get recoveryCauseGbicInvalid(): any; get recoveryCauseInlinePower(): any; get recoveryCauseL2Ptguard(): any; get recoveryCauseLinkFlap(): any; get recoveryCauseLinkMonitorFailure(): any; get recoveryCauseLoopback(): any; get recoveryCauseLoopdetect(): any; get recoveryCauseMacLimit(): any; get recoveryCauseMlacpMinlink(): any; get recoveryCauseMrpMiscabling(): any; get recoveryCauseOamRemoteFailure(): any; get recoveryCausePagpFlap(): any; get recoveryCausePortModeFailure(): any; get recoveryCausePppoeIaRateLimit(): any; get recoveryCausePsecureViolation(): any; get recoveryCausePsp(): any; get recoveryCauseSecurityViolation(): any; get recoveryCauseSfpConfigMismatch(): any; get recoveryCauseSmallFrame(): any; get recoveryCauseStormControl(): any; get recoveryCauseUdld(): any; get recoveryCauseUnicastFlood(): any; get recoveryCauseVmps(): any; get recoveryInterval(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }