import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeBgpNeighborConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_neighbor#asn DataIosxeBgpNeighbor#asn} */ readonly asn: string; /** * 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/bgp_neighbor#device DataIosxeBgpNeighbor#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_neighbor#ip DataIosxeBgpNeighbor#ip} */ readonly ip: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_neighbor iosxe_bgp_neighbor} */ export declare class DataIosxeBgpNeighbor extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_bgp_neighbor"; /** * Generates CDKTF code for importing a DataIosxeBgpNeighbor 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 DataIosxeBgpNeighbor to import * @param importFromId The id of the existing DataIosxeBgpNeighbor that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_neighbor#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeBgpNeighbor 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/bgp_neighbor iosxe_bgp_neighbor} 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 DataIosxeBgpNeighborConfig */ constructor(scope: Construct, id: string, config: DataIosxeBgpNeighborConfig); private _asn?; get asn(): string; set asn(value: string); get asnInput(): string; get clusterId(): any; get description(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get disableConnectedCheck(): any; get ebgpMultihop(): any; get ebgpMultihopMaxHop(): any; get fallOverBfd(): any; get fallOverBfdCheckControlPlaneFailure(): any; get fallOverBfdMultiHop(): any; get fallOverBfdSingleHop(): any; get fallOverBfdStrictMode(): any; get fallOverDefaultEnable(): any; get fallOverDefaultRouteMap(): any; get fallOverMaximumMetricRouteMap(): any; get id(): any; get inheritPeerSession(): any; private _ip?; get ip(): string; set ip(value: string); get ipInput(): string; get localAs(): any; get localAsDualAs(): any; get localAsNoPrepend(): any; get localAsReplaceAs(): any; get logNeighborChanges(): any; get password(): any; get passwordType(): any; get peerGroup(): any; get remoteAs(): any; get shutdown(): any; get timersHoldtime(): any; get timersKeepaliveInterval(): any; get timersMinimumNeighborHold(): any; get ttlSecurityHops(): any; get updateSourceInterfaceLoopback(): any; get version(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }