import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciLoadBalancersConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#compartment_id DataOciLoadBalancers#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#detail DataOciLoadBalancers#detail}
    */
    readonly detail?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#display_name DataOciLoadBalancers#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#id DataOciLoadBalancers#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/load_balancers#state DataOciLoadBalancers#state}
    */
    readonly state?: string;
    /**
    * filter block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#filter DataOciLoadBalancers#filter}
    */
    readonly filter?: DataOciLoadBalancersFilter[] | cdktf.IResolvable;
}
export interface DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIp {
}
export declare function dataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpToTerraform(struct?: DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIp): any;
export declare function dataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpToHclTerraform(struct?: DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIp): any;
export declare class DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpOutputReference 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(): DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIp | undefined;
    set internalValue(value: DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIp | undefined);
    get id(): string;
}
export declare class DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpList 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): DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpOutputReference;
}
export interface DataOciLoadBalancersLoadBalancersIpAddressDetails {
}
export declare function dataOciLoadBalancersLoadBalancersIpAddressDetailsToTerraform(struct?: DataOciLoadBalancersLoadBalancersIpAddressDetails): any;
export declare function dataOciLoadBalancersLoadBalancersIpAddressDetailsToHclTerraform(struct?: DataOciLoadBalancersLoadBalancersIpAddressDetails): any;
export declare class DataOciLoadBalancersLoadBalancersIpAddressDetailsOutputReference 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(): DataOciLoadBalancersLoadBalancersIpAddressDetails | undefined;
    set internalValue(value: DataOciLoadBalancersLoadBalancersIpAddressDetails | undefined);
    get ipAddress(): string;
    get isPublic(): cdktf.IResolvable;
    private _reservedIp;
    get reservedIp(): DataOciLoadBalancersLoadBalancersIpAddressDetailsReservedIpList;
}
export declare class DataOciLoadBalancersLoadBalancersIpAddressDetailsList 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): DataOciLoadBalancersLoadBalancersIpAddressDetailsOutputReference;
}
export interface DataOciLoadBalancersLoadBalancersReservedIps {
}
export declare function dataOciLoadBalancersLoadBalancersReservedIpsToTerraform(struct?: DataOciLoadBalancersLoadBalancersReservedIps): any;
export declare function dataOciLoadBalancersLoadBalancersReservedIpsToHclTerraform(struct?: DataOciLoadBalancersLoadBalancersReservedIps): any;
export declare class DataOciLoadBalancersLoadBalancersReservedIpsOutputReference 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(): DataOciLoadBalancersLoadBalancersReservedIps | undefined;
    set internalValue(value: DataOciLoadBalancersLoadBalancersReservedIps | undefined);
    get id(): string;
}
export declare class DataOciLoadBalancersLoadBalancersReservedIpsList 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): DataOciLoadBalancersLoadBalancersReservedIpsOutputReference;
}
export interface DataOciLoadBalancersLoadBalancersShapeDetails {
}
export declare function dataOciLoadBalancersLoadBalancersShapeDetailsToTerraform(struct?: DataOciLoadBalancersLoadBalancersShapeDetails): any;
export declare function dataOciLoadBalancersLoadBalancersShapeDetailsToHclTerraform(struct?: DataOciLoadBalancersLoadBalancersShapeDetails): any;
export declare class DataOciLoadBalancersLoadBalancersShapeDetailsOutputReference 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(): DataOciLoadBalancersLoadBalancersShapeDetails | undefined;
    set internalValue(value: DataOciLoadBalancersLoadBalancersShapeDetails | undefined);
    get maximumBandwidthInMbps(): number;
    get minimumBandwidthInMbps(): number;
}
export declare class DataOciLoadBalancersLoadBalancersShapeDetailsList 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): DataOciLoadBalancersLoadBalancersShapeDetailsOutputReference;
}
export interface DataOciLoadBalancersLoadBalancers {
}
export declare function dataOciLoadBalancersLoadBalancersToTerraform(struct?: DataOciLoadBalancersLoadBalancers): any;
export declare function dataOciLoadBalancersLoadBalancersToHclTerraform(struct?: DataOciLoadBalancersLoadBalancers): any;
export declare class DataOciLoadBalancersLoadBalancersOutputReference 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(): DataOciLoadBalancersLoadBalancers | undefined;
    set internalValue(value: DataOciLoadBalancersLoadBalancers | undefined);
    get compartmentId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    private _ipAddressDetails;
    get ipAddressDetails(): DataOciLoadBalancersLoadBalancersIpAddressDetailsList;
    get ipAddresses(): string[];
    get ipMode(): string;
    get isDeleteProtectionEnabled(): cdktf.IResolvable;
    get isPrivate(): cdktf.IResolvable;
    get isRequestIdEnabled(): cdktf.IResolvable;
    get networkSecurityGroupIds(): string[];
    get requestIdHeader(): string;
    private _reservedIps;
    get reservedIps(): DataOciLoadBalancersLoadBalancersReservedIpsList;
    get shape(): string;
    private _shapeDetails;
    get shapeDetails(): DataOciLoadBalancersLoadBalancersShapeDetailsList;
    get state(): string;
    get subnetIds(): string[];
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get timeCreated(): string;
}
export declare class DataOciLoadBalancersLoadBalancersList 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): DataOciLoadBalancersLoadBalancersOutputReference;
}
export interface DataOciLoadBalancersFilter {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#name DataOciLoadBalancers#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#regex DataOciLoadBalancers#regex}
    */
    readonly regex?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#values DataOciLoadBalancers#values}
    */
    readonly values: string[];
}
export declare function dataOciLoadBalancersFilterToTerraform(struct?: DataOciLoadBalancersFilter | cdktf.IResolvable): any;
export declare function dataOciLoadBalancersFilterToHclTerraform(struct?: DataOciLoadBalancersFilter | cdktf.IResolvable): any;
export declare class DataOciLoadBalancersFilterOutputReference 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(): DataOciLoadBalancersFilter | cdktf.IResolvable | undefined;
    set internalValue(value: DataOciLoadBalancersFilter | 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 DataOciLoadBalancersFilterList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: DataOciLoadBalancersFilter[] | 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): DataOciLoadBalancersFilterOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers oci_load_balancers}
*/
export declare class DataOciLoadBalancers extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_load_balancers";
    /**
    * Generates CDKTF code for importing a DataOciLoadBalancers 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 DataOciLoadBalancers to import
    * @param importFromId The id of the existing DataOciLoadBalancers that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/load_balancers#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciLoadBalancers 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/load_balancers oci_load_balancers} 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 DataOciLoadBalancersConfig
    */
    constructor(scope: Construct, id: string, config: DataOciLoadBalancersConfig);
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    get compartmentIdInput(): string | undefined;
    private _detail?;
    get detail(): string;
    set detail(value: string);
    resetDetail(): void;
    get detailInput(): 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 _loadBalancers;
    get loadBalancers(): DataOciLoadBalancersLoadBalancersList;
    private _state?;
    get state(): string;
    set state(value: string);
    resetState(): void;
    get stateInput(): string | undefined;
    private _filter;
    get filter(): DataOciLoadBalancersFilterList;
    putFilter(value: DataOciLoadBalancersFilter[] | cdktf.IResolvable): void;
    resetFilter(): void;
    get filterInput(): cdktf.IResolvable | DataOciLoadBalancersFilter[] | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
