import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CryptoIpsecProfileConfig 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_profile#device CryptoIpsecProfile#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile#name CryptoIpsecProfile#name} */ readonly name: string; /** * Specify ikev2 Profile * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile#set_ikev2_profile CryptoIpsecProfile#set_ikev2_profile} */ readonly setIkev2Profile?: string; /** * Specify isakmp Profile * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile#set_isakmp_profile CryptoIpsecProfile#set_isakmp_profile} */ readonly setIsakmpProfile?: string; /** * Specify list of transform sets in priority order * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile#set_transform_set CryptoIpsecProfile#set_transform_set} */ readonly setTransformSet?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile iosxe_crypto_ipsec_profile} */ export declare class CryptoIpsecProfile extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_crypto_ipsec_profile"; /** * Generates CDKTF code for importing a CryptoIpsecProfile 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 CryptoIpsecProfile to import * @param importFromId The id of the existing CryptoIpsecProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ipsec_profile#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CryptoIpsecProfile 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_profile iosxe_crypto_ipsec_profile} 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 CryptoIpsecProfileConfig */ constructor(scope: Construct, id: string, config: CryptoIpsecProfileConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _setIkev2Profile?; get setIkev2Profile(): string; set setIkev2Profile(value: string); resetSetIkev2Profile(): void; get setIkev2ProfileInput(): string; private _setIsakmpProfile?; get setIsakmpProfile(): string; set setIsakmpProfile(value: string); resetSetIsakmpProfile(): void; get setIsakmpProfileInput(): string; private _setTransformSet?; get setTransformSet(): string[]; set setTransformSet(value: string[]); resetSetTransformSet(): void; get setTransformSetInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }