import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciApmSyntheticsDedicatedVantagePointConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_dedicated_vantage_point#apm_domain_id DataOciApmSyntheticsDedicatedVantagePoint#apm_domain_id}
    */
    readonly apmDomainId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_dedicated_vantage_point#dedicated_vantage_point_id DataOciApmSyntheticsDedicatedVantagePoint#dedicated_vantage_point_id}
    */
    readonly dedicatedVantagePointId: string;
}
export interface DataOciApmSyntheticsDedicatedVantagePointDvpStackDetails {
}
export declare function dataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsToTerraform(struct?: DataOciApmSyntheticsDedicatedVantagePointDvpStackDetails): any;
export declare function dataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsToHclTerraform(struct?: DataOciApmSyntheticsDedicatedVantagePointDvpStackDetails): any;
export declare class DataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference 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(): DataOciApmSyntheticsDedicatedVantagePointDvpStackDetails | undefined;
    set internalValue(value: DataOciApmSyntheticsDedicatedVantagePointDvpStackDetails | undefined);
    get dvpStackId(): string;
    get dvpStackType(): string;
    get dvpStreamId(): string;
    get dvpVersion(): string;
}
export declare class DataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsList 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): DataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference;
}
export interface DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMap {
}
export declare function dataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapToTerraform(struct?: DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMap): any;
export declare function dataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapToHclTerraform(struct?: DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMap): any;
export declare class DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapOutputReference 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(): DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMap | undefined;
    set internalValue(value: DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMap | undefined);
    get disabled(): number;
    get enabled(): number;
    get invalid(): number;
    get total(): number;
}
export declare class DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapList 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): DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_dedicated_vantage_point oci_apm_synthetics_dedicated_vantage_point}
*/
export declare class DataOciApmSyntheticsDedicatedVantagePoint extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_apm_synthetics_dedicated_vantage_point";
    /**
    * Generates CDKTF code for importing a DataOciApmSyntheticsDedicatedVantagePoint 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 DataOciApmSyntheticsDedicatedVantagePoint to import
    * @param importFromId The id of the existing DataOciApmSyntheticsDedicatedVantagePoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/apm_synthetics_dedicated_vantage_point#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciApmSyntheticsDedicatedVantagePoint 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/apm_synthetics_dedicated_vantage_point oci_apm_synthetics_dedicated_vantage_point} 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 DataOciApmSyntheticsDedicatedVantagePointConfig
    */
    constructor(scope: Construct, id: string, config: DataOciApmSyntheticsDedicatedVantagePointConfig);
    private _apmDomainId?;
    get apmDomainId(): string;
    set apmDomainId(value: string);
    get apmDomainIdInput(): string | undefined;
    private _dedicatedVantagePointId?;
    get dedicatedVantagePointId(): string;
    set dedicatedVantagePointId(value: string);
    get dedicatedVantagePointIdInput(): string | undefined;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    private _dvpStackDetails;
    get dvpStackDetails(): DataOciApmSyntheticsDedicatedVantagePointDvpStackDetailsList;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    private _monitorStatusCountMap;
    get monitorStatusCountMap(): DataOciApmSyntheticsDedicatedVantagePointMonitorStatusCountMapList;
    get name(): string;
    get region(): string;
    get status(): string;
    get timeCreated(): string;
    get timeUpdated(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
