import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeBgpPeerSessionTemplateConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_peer_session_template#asn DataIosxeBgpPeerSessionTemplate#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_peer_session_template#device DataIosxeBgpPeerSessionTemplate#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_peer_session_template#template_name DataIosxeBgpPeerSessionTemplate#template_name} */ readonly templateName: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_peer_session_template iosxe_bgp_peer_session_template} */ export declare class DataIosxeBgpPeerSessionTemplate extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_bgp_peer_session_template"; /** * Generates CDKTF code for importing a DataIosxeBgpPeerSessionTemplate 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 DataIosxeBgpPeerSessionTemplate to import * @param importFromId The id of the existing DataIosxeBgpPeerSessionTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/bgp_peer_session_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeBgpPeerSessionTemplate 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_peer_session_template iosxe_bgp_peer_session_template} 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 DataIosxeBgpPeerSessionTemplateConfig */ constructor(scope: Construct, id: string, config: DataIosxeBgpPeerSessionTemplateConfig); private _asn?; get asn(): string; set asn(value: string); get asnInput(): string; 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 id(): any; get inheritPeerSession(): any; get remoteAs(): any; private _templateName?; get templateName(): string; set templateName(value: string); get templateNameInput(): string; get updateSourceInterfaceLoopback(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }