import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a SXP Local Binding. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.trustsec.SxpLocalBinding("example", { * name: "SXPLocalBinding1", * ipAddressOrHost: "10.0.0.1", * sgt: "SGT1234", * sxpVpn: "default", * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:trustsec/sxpLocalBinding:SxpLocalBinding example "76d24097-41c4-4558-a4d0-a8c07ac08470" * ``` */ export declare class SxpLocalBinding extends pulumi.CustomResource { /** * Get an existing SxpLocalBinding 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?: SxpLocalBindingState, opts?: pulumi.CustomResourceOptions): SxpLocalBinding; /** * Returns true if the given object is an instance of SxpLocalBinding. 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 SxpLocalBinding; /** * The binding name. Deprecated since Cisco ISE 3.0. */ readonly bindingName: pulumi.Output; /** * The description of the SXP local binding. */ readonly description: pulumi.Output; /** * The IP address for the static SGT mapping. Hostnames are not supported. */ readonly ipAddressOrHost: pulumi.Output; /** * The name of the SXP local binding. */ readonly name: pulumi.Output; /** * The name of the Security Group (SGT) to map to the IP address. Cisco ISE renders this as ` (/)` on read and rejects that form on write, so only the name is kept in state. */ readonly sgt: pulumi.Output; /** * Comma-separated list of SXP VPN domains. Since Cisco ISE 3.0, at least one of `sxpVpn` or `vns` must be defined. */ readonly sxpVpn: pulumi.Output; /** * Comma-separated list of Virtual Networks. Added in Cisco ISE 3.0. At least one of `sxpVpn` or `vns` must be defined. */ readonly vns: pulumi.Output; /** * Create a SxpLocalBinding 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: SxpLocalBindingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SxpLocalBinding resources. */ export interface SxpLocalBindingState { /** * The binding name. Deprecated since Cisco ISE 3.0. */ bindingName?: pulumi.Input; /** * The description of the SXP local binding. */ description?: pulumi.Input; /** * The IP address for the static SGT mapping. Hostnames are not supported. */ ipAddressOrHost?: pulumi.Input; /** * The name of the SXP local binding. */ name?: pulumi.Input; /** * The name of the Security Group (SGT) to map to the IP address. Cisco ISE renders this as ` (/)` on read and rejects that form on write, so only the name is kept in state. */ sgt?: pulumi.Input; /** * Comma-separated list of SXP VPN domains. Since Cisco ISE 3.0, at least one of `sxpVpn` or `vns` must be defined. */ sxpVpn?: pulumi.Input; /** * Comma-separated list of Virtual Networks. Added in Cisco ISE 3.0. At least one of `sxpVpn` or `vns` must be defined. */ vns?: pulumi.Input; } /** * The set of arguments for constructing a SxpLocalBinding resource. */ export interface SxpLocalBindingArgs { /** * The binding name. Deprecated since Cisco ISE 3.0. */ bindingName?: pulumi.Input; /** * The description of the SXP local binding. */ description?: pulumi.Input; /** * The IP address for the static SGT mapping. Hostnames are not supported. */ ipAddressOrHost: pulumi.Input; /** * The name of the SXP local binding. */ name?: pulumi.Input; /** * The name of the Security Group (SGT) to map to the IP address. Cisco ISE renders this as ` (/)` on read and rejects that form on write, so only the name is kept in state. */ sgt: pulumi.Input; /** * Comma-separated list of SXP VPN domains. Since Cisco ISE 3.0, at least one of `sxpVpn` or `vns` must be defined. */ sxpVpn?: pulumi.Input; /** * Comma-separated list of Virtual Networks. Added in Cisco ISE 3.0. At least one of `sxpVpn` or `vns` must be defined. */ vns?: pulumi.Input; } //# sourceMappingURL=sxpLocalBinding.d.ts.map