import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BgpIpv4UnicastNeighborConfig extends cdktf.TerraformMetaArguments { /** * Enable the address family for this neighbor * - Default value: `true` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#activate BgpIpv4UnicastNeighbor#activate} */ readonly activate?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#asn BgpIpv4UnicastNeighbor#asn} */ readonly asn: string; /** * Originate default route to this neighbor * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#default_originate BgpIpv4UnicastNeighbor#default_originate} */ readonly defaultOriginate?: boolean | cdktf.IResolvable; /** * Route-map to specify criteria to originate default * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#default_originate_route_map BgpIpv4UnicastNeighbor#default_originate_route_map} */ readonly defaultOriginateRouteMap?: string; /** * 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_ipv4_unicast_neighbor#delete_mode BgpIpv4UnicastNeighbor#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_ipv4_unicast_neighbor#device BgpIpv4UnicastNeighbor#device} */ readonly device?: string; /** * Inherit a peer-policy template * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#inherit_peer_policy BgpIpv4UnicastNeighbor#inherit_peer_policy} */ readonly inheritPeerPolicy?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#ip BgpIpv4UnicastNeighbor#ip} */ readonly ip: string; /** * Apply route map to neighbor * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#route_maps BgpIpv4UnicastNeighbor#route_maps} */ readonly routeMaps?: BgpIpv4UnicastNeighborRouteMaps[] | cdktf.IResolvable; /** * Configure a neighbor as Route Reflector client * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#route_reflector_client BgpIpv4UnicastNeighbor#route_reflector_client} */ readonly routeReflectorClient?: boolean | cdktf.IResolvable; /** * * - Choices: `both`, `extended`, `standard` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#send_community BgpIpv4UnicastNeighbor#send_community} */ readonly sendCommunity?: string; /** * Per neighbor soft reconfiguration * - Choices: `inbound` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#soft_reconfiguration BgpIpv4UnicastNeighbor#soft_reconfiguration} */ readonly softReconfiguration?: string; } export interface BgpIpv4UnicastNeighborRouteMaps { /** * * - Choices: `in`, `out` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#in_out BgpIpv4UnicastNeighbor#in_out} */ readonly inOut: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#route_map_name BgpIpv4UnicastNeighbor#route_map_name} */ readonly routeMapName: string; } export declare function bgpIpv4UnicastNeighborRouteMapsToTerraform(struct?: BgpIpv4UnicastNeighborRouteMaps | cdktf.IResolvable): any; export declare function bgpIpv4UnicastNeighborRouteMapsToHclTerraform(struct?: BgpIpv4UnicastNeighborRouteMaps | cdktf.IResolvable): any; export declare class BgpIpv4UnicastNeighborRouteMapsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): BgpIpv4UnicastNeighborRouteMaps | cdktf.IResolvable | undefined; set internalValue(value: BgpIpv4UnicastNeighborRouteMaps | cdktf.IResolvable | undefined); private _inOut?; get inOut(): string; set inOut(value: string); get inOutInput(): string; private _routeMapName?; get routeMapName(): string; set routeMapName(value: string); get routeMapNameInput(): string; } export declare class BgpIpv4UnicastNeighborRouteMapsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: BgpIpv4UnicastNeighborRouteMaps[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): BgpIpv4UnicastNeighborRouteMapsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor iosxe_bgp_ipv4_unicast_neighbor} */ export declare class BgpIpv4UnicastNeighbor extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_bgp_ipv4_unicast_neighbor"; /** * Generates CDKTF code for importing a BgpIpv4UnicastNeighbor 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 BgpIpv4UnicastNeighbor to import * @param importFromId The id of the existing BgpIpv4UnicastNeighbor that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/bgp_ipv4_unicast_neighbor#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BgpIpv4UnicastNeighbor 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_ipv4_unicast_neighbor iosxe_bgp_ipv4_unicast_neighbor} 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 BgpIpv4UnicastNeighborConfig */ constructor(scope: Construct, id: string, config: BgpIpv4UnicastNeighborConfig); private _activate?; get activate(): boolean | cdktf.IResolvable; set activate(value: boolean | cdktf.IResolvable); resetActivate(): void; get activateInput(): any; private _asn?; get asn(): string; set asn(value: string); get asnInput(): string; private _defaultOriginate?; get defaultOriginate(): boolean | cdktf.IResolvable; set defaultOriginate(value: boolean | cdktf.IResolvable); resetDefaultOriginate(): void; get defaultOriginateInput(): any; private _defaultOriginateRouteMap?; get defaultOriginateRouteMap(): string; set defaultOriginateRouteMap(value: string); resetDefaultOriginateRouteMap(): void; get defaultOriginateRouteMapInput(): string; 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 _inheritPeerPolicy?; get inheritPeerPolicy(): string; set inheritPeerPolicy(value: string); resetInheritPeerPolicy(): void; get inheritPeerPolicyInput(): string; private _ip?; get ip(): string; set ip(value: string); get ipInput(): string; private _routeMaps; get routeMaps(): BgpIpv4UnicastNeighborRouteMapsList; putRouteMaps(value: BgpIpv4UnicastNeighborRouteMaps[] | cdktf.IResolvable): void; resetRouteMaps(): void; get routeMapsInput(): any; private _routeReflectorClient?; get routeReflectorClient(): boolean | cdktf.IResolvable; set routeReflectorClient(value: boolean | cdktf.IResolvable); resetRouteReflectorClient(): void; get routeReflectorClientInput(): any; private _sendCommunity?; get sendCommunity(): string; set sendCommunity(value: string); resetSendCommunity(): void; get sendCommunityInput(): string; private _softReconfiguration?; get softReconfiguration(): string; set softReconfiguration(value: string); resetSoftReconfiguration(): void; get softReconfigurationInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }