import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDatabaseExadataInfrastructuresConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#compartment_id DataOciDatabaseExadataInfrastructures#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#display_name DataOciDatabaseExadataInfrastructures#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#id DataOciDatabaseExadataInfrastructures#id}
    *
    * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
    * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
    */
    readonly id?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#state DataOciDatabaseExadataInfrastructures#state}
    */
    readonly state?: string;
    /**
    * filter block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#filter DataOciDatabaseExadataInfrastructures#filter}
    */
    readonly filter?: DataOciDatabaseExadataInfrastructuresFilter[] | cdktf.IResolvable;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContacts {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContacts): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContacts): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContacts | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContacts | undefined);
    get email(): string;
    get isContactMosValidated(): cdktf.IResolvable;
    get isPrimary(): cdktf.IResolvable;
    get name(): string;
    get phoneNumber(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurations {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurations): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurations): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurations | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurations | undefined);
    get isBackupPartition(): cdktf.IResolvable;
    get isResizable(): cdktf.IResolvable;
    get minSizeGb(): number;
    get mountPoint(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeek {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeek): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeek): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeek | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeek | undefined);
    get name(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonths {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonths): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonths): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonths | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonths | undefined);
    get name(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindow {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindow): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindow): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindow | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindow | undefined);
    get customActionTimeoutInMins(): number;
    private _daysOfWeek;
    get daysOfWeek(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowDaysOfWeekList;
    get hoursOfDay(): number[];
    get isCustomActionTimeoutEnabled(): cdktf.IResolvable;
    get isMonthlyPatchingEnabled(): cdktf.IResolvable;
    get leadTimeInWeeks(): number;
    private _months;
    get months(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowMonthsList;
    get patchingMode(): string;
    get preference(): string;
    private _skipRu;
    get skipRu(): cdktf.BooleanList;
    get weeksOfMonth(): number[];
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetails {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetails): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetails): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetails | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetails | undefined);
    get backupNetworkBondingMode(): string;
    get clientNetworkBondingMode(): string;
    get drNetworkBondingMode(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresExadataInfrastructures {
}
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresToTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructures): any;
export declare function dataOciDatabaseExadataInfrastructuresExadataInfrastructuresToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresExadataInfrastructures): any;
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresExadataInfrastructures | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresExadataInfrastructures | undefined);
    get activatedStorageCount(): number;
    get activationFile(): string;
    get additionalComputeCount(): number;
    get additionalComputeSystemModel(): string;
    get additionalStorageCount(): number;
    get adminNetworkCidr(): string;
    get availabilityDomain(): string;
    get cloudControlPlaneServer1(): string;
    get cloudControlPlaneServer2(): string;
    get compartmentId(): string;
    get computeCount(): number;
    private _contacts;
    get contacts(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresContactsList;
    get corporateProxy(): string;
    get cpusEnabled(): number;
    get createAsync(): cdktf.IResolvable;
    get csiNumber(): string;
    get dataStorageSizeInTbs(): number;
    get dbNodeStorageSizeInGbs(): number;
    get dbServerVersion(): string;
    private _definedFileSystemConfigurations;
    get definedFileSystemConfigurations(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresDefinedFileSystemConfigurationsList;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    get dnsServer(): string[];
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get gateway(): string;
    get id(): string;
    get infiniBandNetworkCidr(): string;
    get isCpsOfflineReportEnabled(): cdktf.IResolvable;
    get isMultiRackDeployment(): cdktf.IResolvable;
    get lifecycleDetails(): string;
    get maintenanceSloStatus(): string;
    private _maintenanceWindow;
    get maintenanceWindow(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresMaintenanceWindowList;
    get maxCpuCount(): number;
    get maxDataStorageInTbs(): number;
    get maxDbNodeStorageInGbs(): number;
    get maxMemoryInGbs(): number;
    get memorySizeInGbs(): number;
    get monthlyDbServerVersion(): string;
    get multiRackConfigurationFile(): string;
    get netmask(): string;
    private _networkBondingModeDetails;
    get networkBondingModeDetails(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresNetworkBondingModeDetailsList;
    get ntpServer(): string[];
    get rackSerialNumber(): string;
    get shape(): string;
    get state(): string;
    get storageCount(): number;
    get storageServerVersion(): string;
    get timeCreated(): string;
    get timeZone(): string;
}
export declare class DataOciDatabaseExadataInfrastructuresExadataInfrastructuresList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresOutputReference;
}
export interface DataOciDatabaseExadataInfrastructuresFilter {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#name DataOciDatabaseExadataInfrastructures#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#regex DataOciDatabaseExadataInfrastructures#regex}
    */
    readonly regex?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#values DataOciDatabaseExadataInfrastructures#values}
    */
    readonly values: string[];
}
export declare function dataOciDatabaseExadataInfrastructuresFilterToTerraform(struct?: DataOciDatabaseExadataInfrastructuresFilter | cdktf.IResolvable): any;
export declare function dataOciDatabaseExadataInfrastructuresFilterToHclTerraform(struct?: DataOciDatabaseExadataInfrastructuresFilter | cdktf.IResolvable): any;
export declare class DataOciDatabaseExadataInfrastructuresFilterOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    private resolvableValue?;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciDatabaseExadataInfrastructuresFilter | cdktf.IResolvable | undefined;
    set internalValue(value: DataOciDatabaseExadataInfrastructuresFilter | cdktf.IResolvable | undefined);
    private _name?;
    get name(): string;
    set name(value: string);
    get nameInput(): string | undefined;
    private _regex?;
    get regex(): boolean | cdktf.IResolvable;
    set regex(value: boolean | cdktf.IResolvable);
    resetRegex(): void;
    get regexInput(): boolean | cdktf.IResolvable | undefined;
    private _values?;
    get values(): string[];
    set values(value: string[]);
    get valuesInput(): string[] | undefined;
}
export declare class DataOciDatabaseExadataInfrastructuresFilterList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: DataOciDatabaseExadataInfrastructuresFilter[] | cdktf.IResolvable;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciDatabaseExadataInfrastructuresFilterOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures oci_database_exadata_infrastructures}
*/
export declare class DataOciDatabaseExadataInfrastructures extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_database_exadata_infrastructures";
    /**
    * Generates CDKTF code for importing a DataOciDatabaseExadataInfrastructures resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DataOciDatabaseExadataInfrastructures to import
    * @param importFromId The id of the existing DataOciDatabaseExadataInfrastructures that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciDatabaseExadataInfrastructures to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadata_infrastructures oci_database_exadata_infrastructures} 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 DataOciDatabaseExadataInfrastructuresConfig
    */
    constructor(scope: Construct, id: string, config: DataOciDatabaseExadataInfrastructuresConfig);
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    get compartmentIdInput(): string | undefined;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    resetDisplayName(): void;
    get displayNameInput(): string | undefined;
    private _exadataInfrastructures;
    get exadataInfrastructures(): DataOciDatabaseExadataInfrastructuresExadataInfrastructuresList;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    private _state?;
    get state(): string;
    set state(value: string);
    resetState(): void;
    get stateInput(): string | undefined;
    private _filter;
    get filter(): DataOciDatabaseExadataInfrastructuresFilterList;
    putFilter(value: DataOciDatabaseExadataInfrastructuresFilter[] | cdktf.IResolvable): void;
    resetFilter(): void;
    get filterInput(): cdktf.IResolvable | DataOciDatabaseExadataInfrastructuresFilter[] | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
