import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage the Crypto IPSec Transform Set configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@lbrlabs/pulumi-iosxe"; * * const example = new iosxe.CryptoIpsecTransformSet("example", { * esp: "esp-aes", * espHmac: "esp-sha-hmac", * modeTunnel: true, * }); * ``` * * ## Import * * ```sh * $ pulumi import iosxe:index/cryptoIpsecTransformSet:CryptoIpsecTransformSet example "Cisco-IOS-XE-native:native/crypto/Cisco-IOS-XE-crypto:ipsec/transform-set=TEST" * ``` */ export declare class CryptoIpsecTransformSet extends pulumi.CustomResource { /** * Get an existing CryptoIpsecTransformSet 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?: CryptoIpsecTransformSetState, opts?: pulumi.CustomResourceOptions): CryptoIpsecTransformSet; /** * Returns true if the given object is an instance of CryptoIpsecTransformSet. 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 CryptoIpsecTransformSet; /** * A device name from the provider configuration. */ readonly device: pulumi.Output; /** * - Choices: `esp-3des`, `esp-aes`, `esp-des`, `esp-gcm`, `esp-gmac`, `esp-null`, `esp-seal` */ readonly esp: pulumi.Output; /** * - Choices: `esp-md5-hmac`, `esp-sha-hmac`, `esp-sha256-hmac`, `esp-sha384-hmac`, `esp-sha512-hmac` */ readonly espHmac: pulumi.Output; /** * tunnel (datagram encapsulation) mode */ readonly modeTunnel: pulumi.Output; readonly name: pulumi.Output; /** * Create a CryptoIpsecTransformSet 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: CryptoIpsecTransformSetArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CryptoIpsecTransformSet resources. */ export interface CryptoIpsecTransformSetState { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Choices: `esp-3des`, `esp-aes`, `esp-des`, `esp-gcm`, `esp-gmac`, `esp-null`, `esp-seal` */ esp?: pulumi.Input; /** * - Choices: `esp-md5-hmac`, `esp-sha-hmac`, `esp-sha256-hmac`, `esp-sha384-hmac`, `esp-sha512-hmac` */ espHmac?: pulumi.Input; /** * tunnel (datagram encapsulation) mode */ modeTunnel?: pulumi.Input; name?: pulumi.Input; } /** * The set of arguments for constructing a CryptoIpsecTransformSet resource. */ export interface CryptoIpsecTransformSetArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; /** * - Choices: `esp-3des`, `esp-aes`, `esp-des`, `esp-gcm`, `esp-gmac`, `esp-null`, `esp-seal` */ esp: pulumi.Input; /** * - Choices: `esp-md5-hmac`, `esp-sha-hmac`, `esp-sha256-hmac`, `esp-sha384-hmac`, `esp-sha512-hmac` */ espHmac: pulumi.Input; /** * tunnel (datagram encapsulation) mode */ modeTunnel?: pulumi.Input; name?: pulumi.Input; }