import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface PlatformConfig 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/platform#device Platform#device} */ readonly device?: string; /** * Disable IOSXE kernel core generation for keepalive fault * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform#punt_keepalive_disable_kernel_core Platform#punt_keepalive_disable_kernel_core} */ readonly puntKeepaliveDisableKernelCore?: boolean | cdktf.IResolvable; /** * Set punt-inject keepalive fatal count * - Range: `15`-`60` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform#punt_keepalive_settings_fatal_count Platform#punt_keepalive_settings_fatal_count} */ readonly puntKeepaliveSettingsFatalCount?: number; /** * Set punt-inject keepalive transmit interval * - Range: `2`-`30` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform#punt_keepalive_settings_transmit_interval Platform#punt_keepalive_settings_transmit_interval} */ readonly puntKeepaliveSettingsTransmitInterval?: number; /** * Set punt-inject keepalive warning count * - Range: `10`-`60` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform#punt_keepalive_settings_warning_count Platform#punt_keepalive_settings_warning_count} */ readonly puntKeepaliveSettingsWarningCount?: number; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform iosxe_platform} */ export declare class Platform extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_platform"; /** * Generates CDKTF code for importing a Platform 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 Platform to import * @param importFromId The id of the existing Platform that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/platform#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Platform 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/platform iosxe_platform} 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 PlatformConfig = {} */ constructor(scope: Construct, id: string, config?: PlatformConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _puntKeepaliveDisableKernelCore?; get puntKeepaliveDisableKernelCore(): boolean | cdktf.IResolvable; set puntKeepaliveDisableKernelCore(value: boolean | cdktf.IResolvable); resetPuntKeepaliveDisableKernelCore(): void; get puntKeepaliveDisableKernelCoreInput(): any; private _puntKeepaliveSettingsFatalCount?; get puntKeepaliveSettingsFatalCount(): number; set puntKeepaliveSettingsFatalCount(value: number); resetPuntKeepaliveSettingsFatalCount(): void; get puntKeepaliveSettingsFatalCountInput(): number; private _puntKeepaliveSettingsTransmitInterval?; get puntKeepaliveSettingsTransmitInterval(): number; set puntKeepaliveSettingsTransmitInterval(value: number); resetPuntKeepaliveSettingsTransmitInterval(): void; get puntKeepaliveSettingsTransmitIntervalInput(): number; private _puntKeepaliveSettingsWarningCount?; get puntKeepaliveSettingsWarningCount(): number; set puntKeepaliveSettingsWarningCount(value: number); resetPuntKeepaliveSettingsWarningCount(): void; get puntKeepaliveSettingsWarningCountInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }