import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CryptoIkev2Config extends cdktf.TerraformMetaArguments { /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#delete_mode CryptoIkev2#delete_mode} */ readonly deleteMode?: string; /** * 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_ikev2#device CryptoIkev2#device} */ readonly device?: string; /** * Enable IKE liveness check for peers * - Range: `10`-`3600` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#dpd CryptoIkev2#dpd} */ readonly dpd?: number; /** * * - Choices: `on-demand`, `periodic` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#dpd_query CryptoIkev2#dpd_query} */ readonly dpdQuery?: string; /** * * - Range: `2`-`60` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#dpd_retry_interval CryptoIkev2#dpd_retry_interval} */ readonly dpdRetryInterval?: number; /** * Enable certificate lookup based on HTTP-based URL * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#http_url_cert CryptoIkev2#http_url_cert} */ readonly httpUrlCert?: boolean | cdktf.IResolvable; /** * Set NAT keepalive interval * - Range: `5`-`3600` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#nat_keepalive CryptoIkev2#nat_keepalive} */ readonly natKeepalive?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2 iosxe_crypto_ikev2} */ export declare class CryptoIkev2 extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_crypto_ikev2"; /** * Generates CDKTF code for importing a CryptoIkev2 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 CryptoIkev2 to import * @param importFromId The id of the existing CryptoIkev2 that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto_ikev2#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CryptoIkev2 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_ikev2 iosxe_crypto_ikev2} 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 CryptoIkev2Config = {} */ constructor(scope: Construct, id: string, config?: CryptoIkev2Config); private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _dpd?; get dpd(): number; set dpd(value: number); resetDpd(): void; get dpdInput(): number; private _dpdQuery?; get dpdQuery(): string; set dpdQuery(value: string); resetDpdQuery(): void; get dpdQueryInput(): string; private _dpdRetryInterval?; get dpdRetryInterval(): number; set dpdRetryInterval(value: number); resetDpdRetryInterval(): void; get dpdRetryIntervalInput(): number; private _httpUrlCert?; get httpUrlCert(): boolean | cdktf.IResolvable; set httpUrlCert(value: boolean | cdktf.IResolvable); resetHttpUrlCert(): void; get httpUrlCertInput(): any; get id(): any; private _natKeepalive?; get natKeepalive(): number; set natKeepalive(value: number); resetNatKeepalive(): void; get natKeepaliveInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }