import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a SXP Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.trustsec.SxpConnection("example", { * name: "SXPConnection1", * sxpPeer: "SXPPeer1", * sxpVpn: "default", * sxpNode: "ise1", * ipAddress: "10.0.0.1", * sxpMode: "SPEAKER", * sxpVersion: "VERSION_2", * enabled: true, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:trustsec/sxpConnection:SxpConnection example "76d24097-41c4-4558-a4d0-a8c07ac08470" * ``` */ export declare class SxpConnection extends pulumi.CustomResource { /** * Get an existing SxpConnection resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SxpConnectionState, opts?: pulumi.CustomResourceOptions): SxpConnection; /** * Returns true if the given object is an instance of SxpConnection. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SxpConnection; /** * The description of the SXP connection */ readonly description: pulumi.Output; /** * Enables or disables the SXP connection. */ readonly enabled: pulumi.Output; /** * The IP address of the SXP peer. */ readonly ipAddress: pulumi.Output; /** * The name of the SXP connection. */ readonly name: pulumi.Output; /** * The SXP connection mode * - Choices: `BOTH`, `LISTENER`, `SPEAKER` */ readonly sxpMode: pulumi.Output; /** * The name of the SXP node. */ readonly sxpNode: pulumi.Output; /** * The name of the SXP peer. */ readonly sxpPeer: pulumi.Output; /** * The SXP protocol version negotiated with the peer * - Choices: `VERSION_1`, `VERSION_2`, `VERSION_3`, `VERSION_4` */ readonly sxpVersion: pulumi.Output; /** * The name of the SXP VPN. Since Cisco ISE 3.0, a comma-separated list of multiple SXP VPN names is supported. */ readonly sxpVpn: pulumi.Output; /** * Create a SxpConnection resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SxpConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SxpConnection resources. */ export interface SxpConnectionState { /** * The description of the SXP connection */ description?: pulumi.Input; /** * Enables or disables the SXP connection. */ enabled?: pulumi.Input; /** * The IP address of the SXP peer. */ ipAddress?: pulumi.Input; /** * The name of the SXP connection. */ name?: pulumi.Input; /** * The SXP connection mode * - Choices: `BOTH`, `LISTENER`, `SPEAKER` */ sxpMode?: pulumi.Input; /** * The name of the SXP node. */ sxpNode?: pulumi.Input; /** * The name of the SXP peer. */ sxpPeer?: pulumi.Input; /** * The SXP protocol version negotiated with the peer * - Choices: `VERSION_1`, `VERSION_2`, `VERSION_3`, `VERSION_4` */ sxpVersion?: pulumi.Input; /** * The name of the SXP VPN. Since Cisco ISE 3.0, a comma-separated list of multiple SXP VPN names is supported. */ sxpVpn?: pulumi.Input; } /** * The set of arguments for constructing a SxpConnection resource. */ export interface SxpConnectionArgs { /** * The description of the SXP connection */ description?: pulumi.Input; /** * Enables or disables the SXP connection. */ enabled: pulumi.Input; /** * The IP address of the SXP peer. */ ipAddress: pulumi.Input; /** * The name of the SXP connection. */ name?: pulumi.Input; /** * The SXP connection mode * - Choices: `BOTH`, `LISTENER`, `SPEAKER` */ sxpMode: pulumi.Input; /** * The name of the SXP node. */ sxpNode: pulumi.Input; /** * The name of the SXP peer. */ sxpPeer: pulumi.Input; /** * The SXP protocol version negotiated with the peer * - Choices: `VERSION_1`, `VERSION_2`, `VERSION_3`, `VERSION_4` */ sxpVersion: pulumi.Input; /** * The name of the SXP VPN. Since Cisco ISE 3.0, a comma-separated list of multiple SXP VPN names is supported. */ sxpVpn: pulumi.Input; } //# sourceMappingURL=sxpConnection.d.ts.map