import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the SXP Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getSxpConnection({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getSxpConnection(args?: GetSxpConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSxpConnection. */ export interface GetSxpConnectionArgs { /** * The id of the object */ id?: string; /** * The name of the SXP connection. */ name?: string; } /** * A collection of values returned by getSxpConnection. */ export interface GetSxpConnectionResult { /** * The description of the SXP connection */ readonly description: string; /** * Enables or disables the SXP connection. */ readonly enabled: boolean; /** * The id of the object */ readonly id: string; /** * The IP address of the SXP peer. */ readonly ipAddress: string; /** * The name of the SXP connection. */ readonly name: string; /** * The SXP connection mode */ readonly sxpMode: string; /** * The name of the SXP node. */ readonly sxpNode: string; /** * The name of the SXP peer. */ readonly sxpPeer: string; /** * The SXP protocol version negotiated with the peer */ readonly sxpVersion: string; /** * The name of the SXP VPN. Since Cisco ISE 3.0, a comma-separated list of multiple SXP VPN names is supported. */ readonly sxpVpn: string; } /** * This data source can read the SXP Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = ise.trustsec.getSxpConnection({ * id: "76d24097-41c4-4558-a4d0-a8c07ac08470", * }); * ``` */ export declare function getSxpConnectionOutput(args?: GetSxpConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSxpConnection. */ export interface GetSxpConnectionOutputArgs { /** * The id of the object */ id?: pulumi.Input; /** * The name of the SXP connection. */ name?: pulumi.Input; } //# sourceMappingURL=getSxpConnection.d.ts.map