import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciContainerengineVirtualNodePoolsConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#cluster_id DataOciContainerengineVirtualNodePools#cluster_id}
    */
    readonly clusterId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#compartment_id DataOciContainerengineVirtualNodePools#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#display_name DataOciContainerengineVirtualNodePools#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#id DataOciContainerengineVirtualNodePools#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/containerengine_virtual_node_pools#state DataOciContainerengineVirtualNodePools#state}
    */
    readonly state?: string[];
    /**
    * filter block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#filter DataOciContainerengineVirtualNodePools#filter}
    */
    readonly filter?: DataOciContainerengineVirtualNodePoolsFilter[] | cdktf.IResolvable;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabels {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabels): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabels): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabels | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabels | undefined);
    get key(): string;
    get value(): string;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurations {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurations): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurations): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurations | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurations | undefined);
    get availabilityDomain(): string;
    get faultDomain(): string[];
    get subnetId(): string;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfiguration {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfiguration): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfiguration): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfiguration | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfiguration | undefined);
    get nsgIds(): string[];
    get shape(): string;
    get subnetId(): string;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaints {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaints): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaints): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaints | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaints | undefined);
    get effect(): string;
    get key(): string;
    get value(): string;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTags {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTags): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTags): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTags | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTags | undefined);
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsVirtualNodePools {
}
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsToTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePools): any;
export declare function dataOciContainerengineVirtualNodePoolsVirtualNodePoolsToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsVirtualNodePools): any;
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsOutputReference 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(): DataOciContainerengineVirtualNodePoolsVirtualNodePools | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsVirtualNodePools | undefined);
    get clusterId(): string;
    get compartmentId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    private _initialVirtualNodeLabels;
    get initialVirtualNodeLabels(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsInitialVirtualNodeLabelsList;
    get kubernetesVersion(): string;
    get lifecycleDetails(): string;
    get nsgIds(): string[];
    private _placementConfigurations;
    get placementConfigurations(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPlacementConfigurationsList;
    private _podConfiguration;
    get podConfiguration(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsPodConfigurationList;
    get size(): number;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    private _taints;
    get taints(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsTaintsList;
    get timeCreated(): string;
    get timeUpdated(): string;
    get virtualNodePoolId(): string;
    private _virtualNodeTags;
    get virtualNodeTags(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsVirtualNodeTagsList;
}
export declare class DataOciContainerengineVirtualNodePoolsVirtualNodePoolsList 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): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsOutputReference;
}
export interface DataOciContainerengineVirtualNodePoolsFilter {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#name DataOciContainerengineVirtualNodePools#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#regex DataOciContainerengineVirtualNodePools#regex}
    */
    readonly regex?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#values DataOciContainerengineVirtualNodePools#values}
    */
    readonly values: string[];
}
export declare function dataOciContainerengineVirtualNodePoolsFilterToTerraform(struct?: DataOciContainerengineVirtualNodePoolsFilter | cdktf.IResolvable): any;
export declare function dataOciContainerengineVirtualNodePoolsFilterToHclTerraform(struct?: DataOciContainerengineVirtualNodePoolsFilter | cdktf.IResolvable): any;
export declare class DataOciContainerengineVirtualNodePoolsFilterOutputReference 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(): DataOciContainerengineVirtualNodePoolsFilter | cdktf.IResolvable | undefined;
    set internalValue(value: DataOciContainerengineVirtualNodePoolsFilter | 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 DataOciContainerengineVirtualNodePoolsFilterList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: DataOciContainerengineVirtualNodePoolsFilter[] | 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): DataOciContainerengineVirtualNodePoolsFilterOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools oci_containerengine_virtual_node_pools}
*/
export declare class DataOciContainerengineVirtualNodePools extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_containerengine_virtual_node_pools";
    /**
    * Generates CDKTF code for importing a DataOciContainerengineVirtualNodePools 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 DataOciContainerengineVirtualNodePools to import
    * @param importFromId The id of the existing DataOciContainerengineVirtualNodePools that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/containerengine_virtual_node_pools#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciContainerengineVirtualNodePools 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/containerengine_virtual_node_pools oci_containerengine_virtual_node_pools} 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 DataOciContainerengineVirtualNodePoolsConfig
    */
    constructor(scope: Construct, id: string, config: DataOciContainerengineVirtualNodePoolsConfig);
    private _clusterId?;
    get clusterId(): string;
    set clusterId(value: string);
    resetClusterId(): void;
    get clusterIdInput(): string | undefined;
    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 _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 _virtualNodePools;
    get virtualNodePools(): DataOciContainerengineVirtualNodePoolsVirtualNodePoolsList;
    private _filter;
    get filter(): DataOciContainerengineVirtualNodePoolsFilterList;
    putFilter(value: DataOciContainerengineVirtualNodePoolsFilter[] | cdktf.IResolvable): void;
    resetFilter(): void;
    get filterInput(): cdktf.IResolvable | DataOciContainerengineVirtualNodePoolsFilter[] | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
