import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface StackMonitoringMonitoredResourceTypeConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#compartment_id StackMonitoringMonitoredResourceType#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#defined_tags StackMonitoringMonitoredResourceType#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#description StackMonitoringMonitoredResourceType#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#display_name StackMonitoringMonitoredResourceType#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#freeform_tags StackMonitoringMonitoredResourceType#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#id StackMonitoringMonitoredResourceType#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/stack_monitoring_monitored_resource_type#metric_namespace StackMonitoringMonitoredResourceType#metric_namespace}
    */
    readonly metricNamespace?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#name StackMonitoringMonitoredResourceType#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#resource_category StackMonitoringMonitoredResourceType#resource_category}
    */
    readonly resourceCategory?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#source_type StackMonitoringMonitoredResourceType#source_type}
    */
    readonly sourceType?: string;
    /**
    * metadata block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#metadata StackMonitoringMonitoredResourceType#metadata}
    */
    readonly metadata?: StackMonitoringMonitoredResourceTypeMetadata;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#timeouts StackMonitoringMonitoredResourceType#timeouts}
    */
    readonly timeouts?: StackMonitoringMonitoredResourceTypeTimeouts;
}
export interface StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#properties StackMonitoringMonitoredResourceType#properties}
    */
    readonly properties: string[];
}
export declare function stackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsToTerraform(struct?: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets | cdktf.IResolvable): any;
export declare function stackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsToHclTerraform(struct?: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets | cdktf.IResolvable): any;
export declare class StackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsOutputReference 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(): StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets | cdktf.IResolvable | undefined;
    set internalValue(value: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets | cdktf.IResolvable | undefined);
    private _properties?;
    get properties(): string[];
    set properties(value: string[]);
    get propertiesInput(): string[] | undefined;
}
export declare class StackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets[] | 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): StackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsOutputReference;
}
export interface StackMonitoringMonitoredResourceTypeMetadata {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#agent_properties StackMonitoringMonitoredResourceType#agent_properties}
    */
    readonly agentProperties?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#format StackMonitoringMonitoredResourceType#format}
    */
    readonly format: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#required_properties StackMonitoringMonitoredResourceType#required_properties}
    */
    readonly requiredProperties?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#valid_properties_for_create StackMonitoringMonitoredResourceType#valid_properties_for_create}
    */
    readonly validPropertiesForCreate?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#valid_properties_for_update StackMonitoringMonitoredResourceType#valid_properties_for_update}
    */
    readonly validPropertiesForUpdate?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#valid_property_values StackMonitoringMonitoredResourceType#valid_property_values}
    */
    readonly validPropertyValues?: {
        [key: string]: string;
    };
    /**
    * unique_property_sets block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#unique_property_sets StackMonitoringMonitoredResourceType#unique_property_sets}
    */
    readonly uniquePropertySets?: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets[] | cdktf.IResolvable;
}
export declare function stackMonitoringMonitoredResourceTypeMetadataToTerraform(struct?: StackMonitoringMonitoredResourceTypeMetadataOutputReference | StackMonitoringMonitoredResourceTypeMetadata): any;
export declare function stackMonitoringMonitoredResourceTypeMetadataToHclTerraform(struct?: StackMonitoringMonitoredResourceTypeMetadataOutputReference | StackMonitoringMonitoredResourceTypeMetadata): any;
export declare class StackMonitoringMonitoredResourceTypeMetadataOutputReference 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(): StackMonitoringMonitoredResourceTypeMetadata | undefined;
    set internalValue(value: StackMonitoringMonitoredResourceTypeMetadata | undefined);
    private _agentProperties?;
    get agentProperties(): string[];
    set agentProperties(value: string[]);
    resetAgentProperties(): void;
    get agentPropertiesInput(): string[] | undefined;
    private _format?;
    get format(): string;
    set format(value: string);
    get formatInput(): string | undefined;
    private _requiredProperties?;
    get requiredProperties(): string[];
    set requiredProperties(value: string[]);
    resetRequiredProperties(): void;
    get requiredPropertiesInput(): string[] | undefined;
    private _validPropertiesForCreate?;
    get validPropertiesForCreate(): string[];
    set validPropertiesForCreate(value: string[]);
    resetValidPropertiesForCreate(): void;
    get validPropertiesForCreateInput(): string[] | undefined;
    private _validPropertiesForUpdate?;
    get validPropertiesForUpdate(): string[];
    set validPropertiesForUpdate(value: string[]);
    resetValidPropertiesForUpdate(): void;
    get validPropertiesForUpdateInput(): string[] | undefined;
    private _validPropertyValues?;
    get validPropertyValues(): {
        [key: string]: string;
    };
    set validPropertyValues(value: {
        [key: string]: string;
    });
    resetValidPropertyValues(): void;
    get validPropertyValuesInput(): {
        [key: string]: string;
    } | undefined;
    private _uniquePropertySets;
    get uniquePropertySets(): StackMonitoringMonitoredResourceTypeMetadataUniquePropertySetsList;
    putUniquePropertySets(value: StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets[] | cdktf.IResolvable): void;
    resetUniquePropertySets(): void;
    get uniquePropertySetsInput(): cdktf.IResolvable | StackMonitoringMonitoredResourceTypeMetadataUniquePropertySets[] | undefined;
}
export interface StackMonitoringMonitoredResourceTypeTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#create StackMonitoringMonitoredResourceType#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#delete StackMonitoringMonitoredResourceType#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#update StackMonitoringMonitoredResourceType#update}
    */
    readonly update?: string;
}
export declare function stackMonitoringMonitoredResourceTypeTimeoutsToTerraform(struct?: StackMonitoringMonitoredResourceTypeTimeouts | cdktf.IResolvable): any;
export declare function stackMonitoringMonitoredResourceTypeTimeoutsToHclTerraform(struct?: StackMonitoringMonitoredResourceTypeTimeouts | cdktf.IResolvable): any;
export declare class StackMonitoringMonitoredResourceTypeTimeoutsOutputReference 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(): StackMonitoringMonitoredResourceTypeTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: StackMonitoringMonitoredResourceTypeTimeouts | 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/stack_monitoring_monitored_resource_type oci_stack_monitoring_monitored_resource_type}
*/
export declare class StackMonitoringMonitoredResourceType extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_stack_monitoring_monitored_resource_type";
    /**
    * Generates CDKTF code for importing a StackMonitoringMonitoredResourceType 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 StackMonitoringMonitoredResourceType to import
    * @param importFromId The id of the existing StackMonitoringMonitoredResourceType that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/stack_monitoring_monitored_resource_type#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the StackMonitoringMonitoredResourceType 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/stack_monitoring_monitored_resource_type oci_stack_monitoring_monitored_resource_type} 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 StackMonitoringMonitoredResourceTypeConfig
    */
    constructor(scope: Construct, id: string, config: StackMonitoringMonitoredResourceTypeConfig);
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    get compartmentIdInput(): string | undefined;
    private _definedTags?;
    get definedTags(): {
        [key: string]: string;
    };
    set definedTags(value: {
        [key: string]: string;
    });
    resetDefinedTags(): void;
    get definedTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _description?;
    get description(): string;
    set description(value: string);
    resetDescription(): void;
    get descriptionInput(): string | undefined;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    resetDisplayName(): void;
    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 _metricNamespace?;
    get metricNamespace(): string;
    set metricNamespace(value: string);
    resetMetricNamespace(): void;
    get metricNamespaceInput(): string | undefined;
    private _name?;
    get name(): string;
    set name(value: string);
    get nameInput(): string | undefined;
    private _resourceCategory?;
    get resourceCategory(): string;
    set resourceCategory(value: string);
    resetResourceCategory(): void;
    get resourceCategoryInput(): string | undefined;
    private _sourceType?;
    get sourceType(): string;
    set sourceType(value: string);
    resetSourceType(): void;
    get sourceTypeInput(): string | undefined;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get timeCreated(): string;
    get timeUpdated(): string;
    private _metadata;
    get metadata(): StackMonitoringMonitoredResourceTypeMetadataOutputReference;
    putMetadata(value: StackMonitoringMonitoredResourceTypeMetadata): void;
    resetMetadata(): void;
    get metadataInput(): StackMonitoringMonitoredResourceTypeMetadata | undefined;
    private _timeouts;
    get timeouts(): StackMonitoringMonitoredResourceTypeTimeoutsOutputReference;
    putTimeouts(value: StackMonitoringMonitoredResourceTypeTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | StackMonitoringMonitoredResourceTypeTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
