import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeRadiusConfig 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/radius#device DataIosxeRadius#device} */ readonly device?: string; /** * Name for the radius server configuration * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/radius#name DataIosxeRadius#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/radius iosxe_radius} */ export declare class DataIosxeRadius extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_radius"; /** * Generates CDKTF code for importing a DataIosxeRadius 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 DataIosxeRadius to import * @param importFromId The id of the existing DataIosxeRadius that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/radius#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeRadius 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/radius iosxe_radius} 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 DataIosxeRadiusConfig */ constructor(scope: Construct, id: string, config: DataIosxeRadiusConfig); get accountingPort(): any; get authenticationPort(): any; get automateTesterIdleTime(): any; get automateTesterIgnoreAcctPort(): any; get automateTesterIgnoreAuthPort(): any; get automateTesterProbeOnConfig(): any; get automateTesterUsername(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get ipv4Address(): any; get key(): any; get keyEncryption(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get pacKey(): any; get pacKeyEncryption(): any; get retransmit(): any; get timeout(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }