import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface ApmSyntheticsDedicatedVantagePointConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#apm_domain_id ApmSyntheticsDedicatedVantagePoint#apm_domain_id}
    */
    readonly apmDomainId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#defined_tags ApmSyntheticsDedicatedVantagePoint#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#display_name ApmSyntheticsDedicatedVantagePoint#display_name}
    */
    readonly displayName: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#freeform_tags ApmSyntheticsDedicatedVantagePoint#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#id ApmSyntheticsDedicatedVantagePoint#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/resources/apm_synthetics_dedicated_vantage_point#region ApmSyntheticsDedicatedVantagePoint#region}
    */
    readonly region: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#status ApmSyntheticsDedicatedVantagePoint#status}
    */
    readonly status?: string;
    /**
    * dvp_stack_details block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#dvp_stack_details ApmSyntheticsDedicatedVantagePoint#dvp_stack_details}
    */
    readonly dvpStackDetails: ApmSyntheticsDedicatedVantagePointDvpStackDetails;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#timeouts ApmSyntheticsDedicatedVantagePoint#timeouts}
    */
    readonly timeouts?: ApmSyntheticsDedicatedVantagePointTimeouts;
}
export interface ApmSyntheticsDedicatedVantagePointMonitorStatusCountMap {
}
export declare function apmSyntheticsDedicatedVantagePointMonitorStatusCountMapToTerraform(struct?: ApmSyntheticsDedicatedVantagePointMonitorStatusCountMap): any;
export declare function apmSyntheticsDedicatedVantagePointMonitorStatusCountMapToHclTerraform(struct?: ApmSyntheticsDedicatedVantagePointMonitorStatusCountMap): any;
export declare class ApmSyntheticsDedicatedVantagePointMonitorStatusCountMapOutputReference 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(): ApmSyntheticsDedicatedVantagePointMonitorStatusCountMap | undefined;
    set internalValue(value: ApmSyntheticsDedicatedVantagePointMonitorStatusCountMap | undefined);
    get disabled(): number;
    get enabled(): number;
    get invalid(): number;
    get total(): number;
}
export declare class ApmSyntheticsDedicatedVantagePointMonitorStatusCountMapList 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): ApmSyntheticsDedicatedVantagePointMonitorStatusCountMapOutputReference;
}
export interface ApmSyntheticsDedicatedVantagePointDvpStackDetails {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#dvp_stack_id ApmSyntheticsDedicatedVantagePoint#dvp_stack_id}
    */
    readonly dvpStackId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#dvp_stack_type ApmSyntheticsDedicatedVantagePoint#dvp_stack_type}
    */
    readonly dvpStackType: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#dvp_stream_id ApmSyntheticsDedicatedVantagePoint#dvp_stream_id}
    */
    readonly dvpStreamId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#dvp_version ApmSyntheticsDedicatedVantagePoint#dvp_version}
    */
    readonly dvpVersion: string;
}
export declare function apmSyntheticsDedicatedVantagePointDvpStackDetailsToTerraform(struct?: ApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference | ApmSyntheticsDedicatedVantagePointDvpStackDetails): any;
export declare function apmSyntheticsDedicatedVantagePointDvpStackDetailsToHclTerraform(struct?: ApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference | ApmSyntheticsDedicatedVantagePointDvpStackDetails): any;
export declare class ApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): ApmSyntheticsDedicatedVantagePointDvpStackDetails | undefined;
    set internalValue(value: ApmSyntheticsDedicatedVantagePointDvpStackDetails | undefined);
    private _dvpStackId?;
    get dvpStackId(): string;
    set dvpStackId(value: string);
    get dvpStackIdInput(): string | undefined;
    private _dvpStackType?;
    get dvpStackType(): string;
    set dvpStackType(value: string);
    get dvpStackTypeInput(): string | undefined;
    private _dvpStreamId?;
    get dvpStreamId(): string;
    set dvpStreamId(value: string);
    get dvpStreamIdInput(): string | undefined;
    private _dvpVersion?;
    get dvpVersion(): string;
    set dvpVersion(value: string);
    get dvpVersionInput(): string | undefined;
}
export interface ApmSyntheticsDedicatedVantagePointTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#create ApmSyntheticsDedicatedVantagePoint#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#delete ApmSyntheticsDedicatedVantagePoint#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point#update ApmSyntheticsDedicatedVantagePoint#update}
    */
    readonly update?: string;
}
export declare function apmSyntheticsDedicatedVantagePointTimeoutsToTerraform(struct?: ApmSyntheticsDedicatedVantagePointTimeouts | cdktf.IResolvable): any;
export declare function apmSyntheticsDedicatedVantagePointTimeoutsToHclTerraform(struct?: ApmSyntheticsDedicatedVantagePointTimeouts | cdktf.IResolvable): any;
export declare class ApmSyntheticsDedicatedVantagePointTimeoutsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    private resolvableValue?;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): ApmSyntheticsDedicatedVantagePointTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: ApmSyntheticsDedicatedVantagePointTimeouts | cdktf.IResolvable | undefined);
    private _create?;
    get create(): string;
    set create(value: string);
    resetCreate(): void;
    get createInput(): string | undefined;
    private _delete?;
    get delete(): string;
    set delete(value: string);
    resetDelete(): void;
    get deleteInput(): string | undefined;
    private _update?;
    get update(): string;
    set update(value: string);
    resetUpdate(): void;
    get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/apm_synthetics_dedicated_vantage_point oci_apm_synthetics_dedicated_vantage_point}
*/
export declare class ApmSyntheticsDedicatedVantagePoint extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_apm_synthetics_dedicated_vantage_point";
    /**
    * Generates CDKTF code for importing a ApmSyntheticsDedicatedVantagePoint 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 ApmSyntheticsDedicatedVantagePoint to import
    * @param importFromId The id of the existing ApmSyntheticsDedicatedVantagePoint that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/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 ApmSyntheticsDedicatedVantagePoint 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/resources/apm_synthetics_dedicated_vantage_point oci_apm_synthetics_dedicated_vantage_point} Resource
    *
    * @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 ApmSyntheticsDedicatedVantagePointConfig
    */
    constructor(scope: Construct, id: string, config: ApmSyntheticsDedicatedVantagePointConfig);
    private _apmDomainId?;
    get apmDomainId(): string;
    set apmDomainId(value: string);
    get apmDomainIdInput(): string | undefined;
    private _definedTags?;
    get definedTags(): {
        [key: string]: string;
    };
    set definedTags(value: {
        [key: string]: string;
    });
    resetDefinedTags(): void;
    get definedTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    get displayNameInput(): string | undefined;
    private _freeformTags?;
    get freeformTags(): {
        [key: string]: string;
    };
    set freeformTags(value: {
        [key: string]: string;
    });
    resetFreeformTags(): void;
    get freeformTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    private _monitorStatusCountMap;
    get monitorStatusCountMap(): ApmSyntheticsDedicatedVantagePointMonitorStatusCountMapList;
    get name(): string;
    private _region?;
    get region(): string;
    set region(value: string);
    get regionInput(): string | undefined;
    private _status?;
    get status(): string;
    set status(value: string);
    resetStatus(): void;
    get statusInput(): string | undefined;
    get timeCreated(): string;
    get timeUpdated(): string;
    private _dvpStackDetails;
    get dvpStackDetails(): ApmSyntheticsDedicatedVantagePointDvpStackDetailsOutputReference;
    putDvpStackDetails(value: ApmSyntheticsDedicatedVantagePointDvpStackDetails): void;
    get dvpStackDetailsInput(): ApmSyntheticsDedicatedVantagePointDvpStackDetails | undefined;
    private _timeouts;
    get timeouts(): ApmSyntheticsDedicatedVantagePointTimeoutsOutputReference;
    putTimeouts(value: ApmSyntheticsDedicatedVantagePointTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | ApmSyntheticsDedicatedVantagePointTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
