import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the BGP Address Family IPv4 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv4({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv4(args: GetBgpAddressFamilyIpv4Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBgpAddressFamilyIpv4. */ export interface GetBgpAddressFamilyIpv4Args { afName: string; asn: string; /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getBgpAddressFamilyIpv4. */ export interface GetBgpAddressFamilyIpv4Result { readonly afName: string; readonly asn: string; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Specify a network to announce via BGP */ readonly ipv4UnicastNetworks: outputs.GetBgpAddressFamilyIpv4Ipv4UnicastNetwork[]; /** * Specify a network to announce via BGP */ readonly ipv4UnicastNetworksMasks: outputs.GetBgpAddressFamilyIpv4Ipv4UnicastNetworksMask[]; /** * Connected */ readonly ipv4UnicastRedistributeConnected: boolean; /** * Static routes */ readonly ipv4UnicastRedistributeStatic: boolean; } /** * This data source can read the BGP Address Family IPv4 configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getBgpAddressFamilyIpv4({ * afName: "unicast", * asn: "65000", * }); * ``` */ export declare function getBgpAddressFamilyIpv4Output(args: GetBgpAddressFamilyIpv4OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getBgpAddressFamilyIpv4. */ export interface GetBgpAddressFamilyIpv4OutputArgs { afName: pulumi.Input; asn: pulumi.Input; /** * A device name from the provider configuration. */ device?: pulumi.Input; }