import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CryptoIpsecTransformSetConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#device CryptoIpsecTransformSet#device} */ readonly device?: string; /** * * - Choices: `esp-192-aes`, `esp-256-aes`, `esp-3des`, `esp-aes`, `esp-des`, `esp-gcm`, `esp-gmac`, `esp-null`, `esp-seal` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#esp CryptoIpsecTransformSet#esp} */ readonly esp: string; /** * * - Choices: `esp-md5-hmac`, `esp-sha-hmac`, `esp-sha256-hmac`, `esp-sha384-hmac`, `esp-sha512-hmac` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#esp_hmac CryptoIpsecTransformSet#esp_hmac} */ readonly espHmac: string; /** * tunnel (datagram encapsulation) mode * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#mode_tunnel CryptoIpsecTransformSet#mode_tunnel} */ readonly modeTunnel?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#name CryptoIpsecTransformSet#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set iosxe_crypto_ipsec_transform_set} */ export declare class CryptoIpsecTransformSet extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_crypto_ipsec_transform_set"; /** * Generates CDKTF code for importing a CryptoIpsecTransformSet resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CryptoIpsecTransformSet to import * @param importFromId The id of the existing CryptoIpsecTransformSet that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CryptoIpsecTransformSet to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_transform_set iosxe_crypto_ipsec_transform_set} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options CryptoIpsecTransformSetConfig */ constructor(scope: Construct, id: string, config: CryptoIpsecTransformSetConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _esp?; get esp(): string; set esp(value: string); get espInput(): string; private _espHmac?; get espHmac(): string; set espHmac(value: string); get espHmacInput(): string; get id(): any; private _modeTunnel?; get modeTunnel(): boolean | cdktf.IResolvable; set modeTunnel(value: boolean | cdktf.IResolvable); resetModeTunnel(): void; get modeTunnelInput(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }