import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the Crypto IPSec Profile configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.CryptoIpsecProfile("example", { * setIsakmpProfileIkev2ProfileIkev2ProfileCaseIkev2Profile: "vpn300", * setTransformSets: ["TS1"], * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/cryptoIpsecProfile:CryptoIpsecProfile example "Cisco-IOS-XE-native:native/crypto/Cisco-IOS-XE-crypto:ipsec/profile=vpn200" * ``` */ export declare class CryptoIpsecProfile extends pulumi.CustomResource { /** * Get an existing CryptoIpsecProfile 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?: CryptoIpsecProfileState, opts?: pulumi.CustomResourceOptions): CryptoIpsecProfile; /** * Returns true if the given object is an instance of CryptoIpsecProfile. 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 CryptoIpsecProfile; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; readonly name: pulumi.Output; /** * Specify ikev2 Profile */ readonly setIsakmpProfileIkev2ProfileIkev2ProfileCaseIkev2Profile: pulumi.Output; /** * Specify isakmp Profile */ readonly setIsakmpProfileIkev2ProfileIsakmpProfileCaseIsakmpProfile: pulumi.Output; /** * Specify list of transform sets in priority order */ readonly setTransformSets: pulumi.Output; /** * Create a CryptoIpsecProfile 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?: CryptoIpsecProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CryptoIpsecProfile resources. */ export interface CryptoIpsecProfileState { /** * A device name from the provider configuration. */ device?: pulumi.Input; name?: pulumi.Input; /** * Specify ikev2 Profile */ setIsakmpProfileIkev2ProfileIkev2ProfileCaseIkev2Profile?: pulumi.Input; /** * Specify isakmp Profile */ setIsakmpProfileIkev2ProfileIsakmpProfileCaseIsakmpProfile?: pulumi.Input; /** * Specify list of transform sets in priority order */ setTransformSets?: pulumi.Input[]>; } /** * The set of arguments for constructing a CryptoIpsecProfile resource. */ export interface CryptoIpsecProfileArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; name?: pulumi.Input; /** * Specify ikev2 Profile */ setIsakmpProfileIkev2ProfileIkev2ProfileCaseIkev2Profile?: pulumi.Input; /** * Specify isakmp Profile */ setIsakmpProfileIkev2ProfileIsakmpProfileCaseIsakmpProfile?: pulumi.Input; /** * Specify list of transform sets in priority order */ setTransformSets?: pulumi.Input[]>; }