import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeServiceConfig 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/service#device DataIosxeService#device} */ readonly device?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/service iosxe_service} */ export declare class DataIosxeService extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_service"; /** * Generates CDKTF code for importing a DataIosxeService 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 DataIosxeService to import * @param importFromId The id of the existing DataIosxeService that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/service#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeService 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/service iosxe_service} 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 DataIosxeServiceConfig = {} */ constructor(scope: Construct, id: string, config?: DataIosxeServiceConfig); get callHome(): any; get compressConfig(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get dhcp(): any; get dhcpConfig(): any; get id(): any; get pad(): any; get passwordEncryption(): any; get passwordRecovery(): any; get sequenceNumbers(): any; get tcpKeepalivesIn(): any; get tcpKeepalivesOut(): any; get timestamps(): any; get timestampsDebug(): any; get timestampsDebugDatetime(): any; get timestampsDebugDatetimeLocaltime(): any; get timestampsDebugDatetimeMsec(): any; get timestampsDebugDatetimeShowTimezone(): any; get timestampsDebugDatetimeYear(): any; get timestampsDebugUptime(): any; get timestampsLog(): any; get timestampsLogDatetime(): any; get timestampsLogDatetimeLocaltime(): any; get timestampsLogDatetimeMsec(): any; get timestampsLogDatetimeShowTimezone(): any; get timestampsLogDatetimeYear(): any; get timestampsLogUptime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }