import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BgpConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#asn Bgp#asn} */ readonly asn: string; /** * Graceful restart capability parameters * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#bgp_graceful_restart Bgp#bgp_graceful_restart} */ readonly bgpGracefulRestart?: boolean | cdktf.IResolvable; /** * Set the max initial delay for sending update * - Range: `1`-`3600` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#bgp_update_delay Bgp#bgp_update_delay} */ readonly bgpUpdateDelay?: number; /** * Activate ipv4-unicast for a peer by default * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#default_ipv4_unicast Bgp#default_ipv4_unicast} */ readonly defaultIpv4Unicast?: 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/bgp#delete_mode Bgp#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/bgp#device Bgp#device} */ readonly device?: string; /** * Log neighbor up/down and reset reason * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#log_neighbor_changes Bgp#log_neighbor_changes} */ readonly logNeighborChanges?: boolean | cdktf.IResolvable; /** * Manually configured router identifier * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#router_id_ip Bgp#router_id_ip} */ readonly routerIdIp?: string; /** * Loopback interface * - Range: `0`-`2147483647` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#router_id_loopback Bgp#router_id_loopback} */ readonly routerIdLoopback?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp iosxe_bgp} */ export declare class Bgp extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_bgp"; /** * Generates CDKTF code for importing a Bgp 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 Bgp to import * @param importFromId The id of the existing Bgp that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Bgp 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/bgp iosxe_bgp} 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 BgpConfig */ constructor(scope: Construct, id: string, config: BgpConfig); private _asn?; get asn(): string; set asn(value: string); get asnInput(): string; private _bgpGracefulRestart?; get bgpGracefulRestart(): boolean | cdktf.IResolvable; set bgpGracefulRestart(value: boolean | cdktf.IResolvable); resetBgpGracefulRestart(): void; get bgpGracefulRestartInput(): any; private _bgpUpdateDelay?; get bgpUpdateDelay(): number; set bgpUpdateDelay(value: number); resetBgpUpdateDelay(): void; get bgpUpdateDelayInput(): number; private _defaultIpv4Unicast?; get defaultIpv4Unicast(): boolean | cdktf.IResolvable; set defaultIpv4Unicast(value: boolean | cdktf.IResolvable); resetDefaultIpv4Unicast(): void; get defaultIpv4UnicastInput(): 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; get id(): any; private _logNeighborChanges?; get logNeighborChanges(): boolean | cdktf.IResolvable; set logNeighborChanges(value: boolean | cdktf.IResolvable); resetLogNeighborChanges(): void; get logNeighborChangesInput(): any; private _routerIdIp?; get routerIdIp(): string; set routerIdIp(value: string); resetRouterIdIp(): void; get routerIdIpInput(): string; private _routerIdLoopback?; get routerIdLoopback(): number; set routerIdLoopback(value: number); resetRouterIdLoopback(): void; get routerIdLoopbackInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }