import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDatabaseExadbVmClusterConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadb_vm_cluster#exadb_vm_cluster_id DataOciDatabaseExadbVmCluster#exadb_vm_cluster_id}
    */
    readonly exadbVmClusterId: string;
}
export interface DataOciDatabaseExadbVmClusterDataCollectionOptions {
}
export declare function dataOciDatabaseExadbVmClusterDataCollectionOptionsToTerraform(struct?: DataOciDatabaseExadbVmClusterDataCollectionOptions): any;
export declare function dataOciDatabaseExadbVmClusterDataCollectionOptionsToHclTerraform(struct?: DataOciDatabaseExadbVmClusterDataCollectionOptions): any;
export declare class DataOciDatabaseExadbVmClusterDataCollectionOptionsOutputReference 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(): DataOciDatabaseExadbVmClusterDataCollectionOptions | undefined;
    set internalValue(value: DataOciDatabaseExadbVmClusterDataCollectionOptions | undefined);
    get isDiagnosticsEventsEnabled(): cdktf.IResolvable;
    get isHealthMonitoringEnabled(): cdktf.IResolvable;
    get isIncidentLogsEnabled(): cdktf.IResolvable;
}
export declare class DataOciDatabaseExadbVmClusterDataCollectionOptionsList 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): DataOciDatabaseExadbVmClusterDataCollectionOptionsOutputReference;
}
export interface DataOciDatabaseExadbVmClusterIormConfigCacheDbPlans {
}
export declare function dataOciDatabaseExadbVmClusterIormConfigCacheDbPlansToTerraform(struct?: DataOciDatabaseExadbVmClusterIormConfigCacheDbPlans): any;
export declare function dataOciDatabaseExadbVmClusterIormConfigCacheDbPlansToHclTerraform(struct?: DataOciDatabaseExadbVmClusterIormConfigCacheDbPlans): any;
export declare class DataOciDatabaseExadbVmClusterIormConfigCacheDbPlansOutputReference 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(): DataOciDatabaseExadbVmClusterIormConfigCacheDbPlans | undefined;
    set internalValue(value: DataOciDatabaseExadbVmClusterIormConfigCacheDbPlans | undefined);
    get dbName(): string;
    get flashCacheLimit(): string;
    get share(): number;
}
export declare class DataOciDatabaseExadbVmClusterIormConfigCacheDbPlansList 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): DataOciDatabaseExadbVmClusterIormConfigCacheDbPlansOutputReference;
}
export interface DataOciDatabaseExadbVmClusterIormConfigCache {
}
export declare function dataOciDatabaseExadbVmClusterIormConfigCacheToTerraform(struct?: DataOciDatabaseExadbVmClusterIormConfigCache): any;
export declare function dataOciDatabaseExadbVmClusterIormConfigCacheToHclTerraform(struct?: DataOciDatabaseExadbVmClusterIormConfigCache): any;
export declare class DataOciDatabaseExadbVmClusterIormConfigCacheOutputReference 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(): DataOciDatabaseExadbVmClusterIormConfigCache | undefined;
    set internalValue(value: DataOciDatabaseExadbVmClusterIormConfigCache | undefined);
    private _dbPlans;
    get dbPlans(): DataOciDatabaseExadbVmClusterIormConfigCacheDbPlansList;
    get lifecycleDetails(): string;
    get objective(): string;
    get state(): string;
}
export declare class DataOciDatabaseExadbVmClusterIormConfigCacheList 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): DataOciDatabaseExadbVmClusterIormConfigCacheOutputReference;
}
export interface DataOciDatabaseExadbVmClusterNodeConfig {
}
export declare function dataOciDatabaseExadbVmClusterNodeConfigToTerraform(struct?: DataOciDatabaseExadbVmClusterNodeConfig): any;
export declare function dataOciDatabaseExadbVmClusterNodeConfigToHclTerraform(struct?: DataOciDatabaseExadbVmClusterNodeConfig): any;
export declare class DataOciDatabaseExadbVmClusterNodeConfigOutputReference 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(): DataOciDatabaseExadbVmClusterNodeConfig | undefined;
    set internalValue(value: DataOciDatabaseExadbVmClusterNodeConfig | undefined);
    get enabledEcpuCountPerNode(): number;
    get memorySizeInGbsPerNode(): number;
    get snapshotFileSystemStorageSizeGbsPerNode(): number;
    get totalEcpuCountPerNode(): number;
    get totalFileSystemStorageSizeGbsPerNode(): number;
    get vmFileSystemStorageSizeGbsPerNode(): number;
}
export declare class DataOciDatabaseExadbVmClusterNodeConfigList 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): DataOciDatabaseExadbVmClusterNodeConfigOutputReference;
}
export interface DataOciDatabaseExadbVmClusterNodeResource {
}
export declare function dataOciDatabaseExadbVmClusterNodeResourceToTerraform(struct?: DataOciDatabaseExadbVmClusterNodeResource): any;
export declare function dataOciDatabaseExadbVmClusterNodeResourceToHclTerraform(struct?: DataOciDatabaseExadbVmClusterNodeResource): any;
export declare class DataOciDatabaseExadbVmClusterNodeResourceOutputReference 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(): DataOciDatabaseExadbVmClusterNodeResource | undefined;
    set internalValue(value: DataOciDatabaseExadbVmClusterNodeResource | undefined);
    get nodeHostname(): string;
    get nodeId(): string;
    get nodeName(): string;
    get state(): string;
}
export declare class DataOciDatabaseExadbVmClusterNodeResourceList 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): DataOciDatabaseExadbVmClusterNodeResourceOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadb_vm_cluster oci_database_exadb_vm_cluster}
*/
export declare class DataOciDatabaseExadbVmCluster extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_database_exadb_vm_cluster";
    /**
    * Generates CDKTF code for importing a DataOciDatabaseExadbVmCluster 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 DataOciDatabaseExadbVmCluster to import
    * @param importFromId The id of the existing DataOciDatabaseExadbVmCluster that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/database_exadb_vm_cluster#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciDatabaseExadbVmCluster 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_exadb_vm_cluster oci_database_exadb_vm_cluster} 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 DataOciDatabaseExadbVmClusterConfig
    */
    constructor(scope: Construct, id: string, config: DataOciDatabaseExadbVmClusterConfig);
    get availabilityDomain(): string;
    get backupNetworkNsgIds(): string[];
    get backupSubnetId(): string;
    get clusterName(): string;
    get compartmentId(): string;
    private _dataCollectionOptions;
    get dataCollectionOptions(): DataOciDatabaseExadbVmClusterDataCollectionOptionsList;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    get domain(): string;
    private _exadbVmClusterId?;
    get exadbVmClusterId(): string;
    set exadbVmClusterId(value: string);
    get exadbVmClusterIdInput(): string | undefined;
    get exascaleDbStorageVaultId(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get giVersion(): string;
    get gridImageId(): string;
    get gridImageType(): string;
    get hostname(): string;
    get id(): string;
    private _iormConfigCache;
    get iormConfigCache(): DataOciDatabaseExadbVmClusterIormConfigCacheList;
    get lastUpdateHistoryEntryId(): string;
    get licenseModel(): string;
    get lifecycleDetails(): string;
    get listenerPort(): string;
    private _nodeConfig;
    get nodeConfig(): DataOciDatabaseExadbVmClusterNodeConfigList;
    private _nodeResource;
    get nodeResource(): DataOciDatabaseExadbVmClusterNodeResourceList;
    get nsgIds(): string[];
    get privateZoneId(): string;
    get scanDnsName(): string;
    get scanDnsRecordId(): string;
    get scanIpIds(): string[];
    get scanListenerPortTcp(): number;
    get scanListenerPortTcpSsl(): number;
    private _securityAttributes;
    get securityAttributes(): cdktf.StringMap;
    get shape(): string;
    get sshPublicKeys(): string[];
    get state(): string;
    get subnetId(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get systemVersion(): string;
    get timeCreated(): string;
    get timeZone(): string;
    get vipIds(): string[];
    get zoneId(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
