import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CryptoConfig 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#device Crypto#device} */ readonly device?: string; /** * Allow weak crypto to be configured * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto#engine_compliance_shield_disable Crypto#engine_compliance_shield_disable} */ readonly engineComplianceShieldDisable?: boolean | cdktf.IResolvable; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto iosxe_crypto} */ export declare class Crypto extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_crypto"; /** * Generates CDKTF code for importing a Crypto 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 Crypto to import * @param importFromId The id of the existing Crypto that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/crypto#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Crypto 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 iosxe_crypto} 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 CryptoConfig = {} */ constructor(scope: Construct, id: string, config?: CryptoConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _engineComplianceShieldDisable?; get engineComplianceShieldDisable(): boolean | cdktf.IResolvable; set engineComplianceShieldDisable(value: boolean | cdktf.IResolvable); resetEngineComplianceShieldDisable(): void; get engineComplianceShieldDisableInput(): any; get id(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }