import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a SSE Cisco Feature. * - Minimum SD-WAN Manager version: `20.15.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.SseCiscoFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * contextSharingForVpn: false, * contextSharingForSgt: false, * interfaces: [{ * interfaceName: "ipsec1", * tunnelSourceInterface: "GigabitEthernet8", * tunnelDcPreference: "primary-dc", * mtu: 1400, * ikeVersion: 2, * }], * interfacePairs: [{ * activeInterface: "ipsec1", * activeInterfaceWeight: 1, * backupInterface: "None", * backupInterfaceWeight: 1, * }], * region: "us-east-1", * trackerSourceIp: "1.2.3.4", * trackers: [{ * name: "tracker1", * endpointApiUrl: "http://cisco.com", * threshold: 300, * interval: 60, * multiplier: 3, * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "sse_cisco_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/sseCiscoFeature:SseCiscoFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class SseCiscoFeature extends pulumi.CustomResource { /** * Get an existing SseCiscoFeature 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?: SseCiscoFeatureState, opts?: pulumi.CustomResourceOptions): SseCiscoFeature; /** * Returns true if the given object is an instance of SseCiscoFeature. 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 SseCiscoFeature; /** * Enable/disable Cisco SSE context sharing for sgt * - Default value: `false` */ readonly contextSharingForSgt: pulumi.Output; /** * Enable/disable Cisco SSE context sharing for vpn * - Default value: `false` */ readonly contextSharingForVpn: pulumi.Output; /** * The description of the Feature */ readonly description: pulumi.Output; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output; /** * Interface Pair for active and backup */ readonly interfacePairs: pulumi.Output; /** * Interface name: IPsec when present */ readonly interfaces: pulumi.Output; /** * The name of the Feature */ readonly name: pulumi.Output; /** * Region for Primary and Secondary Datacenter * - Default value: `auto` */ readonly region: pulumi.Output; /** * Variable name */ readonly regionVariable: pulumi.Output; /** * Source IP address for Tracker */ readonly trackerSourceIp: pulumi.Output; /** * Variable name */ readonly trackerSourceIpVariable: pulumi.Output; /** * Tracker configuration */ readonly trackers: pulumi.Output; /** * The version of the Feature */ readonly version: pulumi.Output; /** * Create a SseCiscoFeature 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: SseCiscoFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SseCiscoFeature resources. */ export interface SseCiscoFeatureState { /** * Enable/disable Cisco SSE context sharing for sgt * - Default value: `false` */ contextSharingForSgt?: pulumi.Input; /** * Enable/disable Cisco SSE context sharing for vpn * - Default value: `false` */ contextSharingForVpn?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId?: pulumi.Input; /** * Interface Pair for active and backup */ interfacePairs?: pulumi.Input[] | undefined>; /** * Interface name: IPsec when present */ interfaces?: pulumi.Input[] | undefined>; /** * The name of the Feature */ name?: pulumi.Input; /** * Region for Primary and Secondary Datacenter * - Default value: `auto` */ region?: pulumi.Input; /** * Variable name */ regionVariable?: pulumi.Input; /** * Source IP address for Tracker */ trackerSourceIp?: pulumi.Input; /** * Variable name */ trackerSourceIpVariable?: pulumi.Input; /** * Tracker configuration */ trackers?: pulumi.Input[] | undefined>; /** * The version of the Feature */ version?: pulumi.Input; } /** * The set of arguments for constructing a SseCiscoFeature resource. */ export interface SseCiscoFeatureArgs { /** * Enable/disable Cisco SSE context sharing for sgt * - Default value: `false` */ contextSharingForSgt?: pulumi.Input; /** * Enable/disable Cisco SSE context sharing for vpn * - Default value: `false` */ contextSharingForVpn?: pulumi.Input; /** * The description of the Feature */ description?: pulumi.Input; /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * Interface Pair for active and backup */ interfacePairs: pulumi.Input[]>; /** * Interface name: IPsec when present */ interfaces: pulumi.Input[]>; /** * The name of the Feature */ name?: pulumi.Input; /** * Region for Primary and Secondary Datacenter * - Default value: `auto` */ region: pulumi.Input; /** * Variable name */ regionVariable?: pulumi.Input; /** * Source IP address for Tracker */ trackerSourceIp: pulumi.Input; /** * Variable name */ trackerSourceIpVariable?: pulumi.Input; /** * Tracker configuration */ trackers?: pulumi.Input[] | undefined>; } //# sourceMappingURL=sseCiscoFeature.d.ts.map