import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeCryptoIkev2ProposalConfig 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/data-sources/crypto_ikev2_proposal#device DataIosxeCryptoIkev2Proposal#device} */ readonly device?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/crypto_ikev2_proposal#name DataIosxeCryptoIkev2Proposal#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/crypto_ikev2_proposal iosxe_crypto_ikev2_proposal} */ export declare class DataIosxeCryptoIkev2Proposal extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_crypto_ikev2_proposal"; /** * Generates CDKTF code for importing a DataIosxeCryptoIkev2Proposal 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 DataIosxeCryptoIkev2Proposal to import * @param importFromId The id of the existing DataIosxeCryptoIkev2Proposal that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/crypto_ikev2_proposal#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeCryptoIkev2Proposal 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/data-sources/crypto_ikev2_proposal iosxe_crypto_ikev2_proposal} Data Source * * @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 DataIosxeCryptoIkev2ProposalConfig */ constructor(scope: Construct, id: string, config: DataIosxeCryptoIkev2ProposalConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get encryptionAesCbc128(): any; get encryptionAesCbc192(): any; get encryptionAesCbc256(): any; get encryptionAesGcm128(): any; get encryptionAesGcm256(): any; get encryptionEn3Des(): any; get groupFifteen(): any; get groupFourteen(): any; get groupNineteen(): any; get groupOne(): any; get groupSixteen(): any; get groupTwenty(): any; get groupTwentyFour(): any; get groupTwentyOne(): any; get groupTwo(): any; get id(): any; get integrityMd5(): any; get integritySha1(): any; get integritySha256(): any; get integritySha384(): any; get integritySha512(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get prfMd5(): any; get prfSha1(): any; get prfSha256(): any; get prfSha384(): any; get prfSha512(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }