UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

889 lines 51.4 kB
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface CloudGuardDetectorRecipeConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#compartment_id CloudGuardDetectorRecipe#compartment_id}
    */
    readonly compartmentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#defined_tags CloudGuardDetectorRecipe#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#description CloudGuardDetectorRecipe#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#detector CloudGuardDetectorRecipe#detector}
    */
    readonly detector?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#display_name CloudGuardDetectorRecipe#display_name}
    */
    readonly displayName: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#freeform_tags CloudGuardDetectorRecipe#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#id CloudGuardDetectorRecipe#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/cloud_guard_detector_recipe#source_detector_recipe_id CloudGuardDetectorRecipe#source_detector_recipe_id}
    */
    readonly sourceDetectorRecipeId?: string;
    /**
    * detector_rules block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#detector_rules CloudGuardDetectorRecipe#detector_rules}
    */
    readonly detectorRules?: CloudGuardDetectorRecipeDetectorRules[] | cdktf.IResolvable;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#timeouts CloudGuardDetectorRecipe#timeouts}
    */
    readonly timeouts?: CloudGuardDetectorRecipeTimeouts;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRules {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRules): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRules): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRules | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRules | undefined);
    get displayName(): string;
    get id(): string;
    get isPreferred(): cdktf.IResolvable;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValues {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValues): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValues): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValues | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValues | undefined);
    get listType(): string;
    get managedListType(): string;
    get value(): string;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurations {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurations): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurations): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurations | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurations | undefined);
    get configKey(): string;
    get dataType(): string;
    get name(): string;
    get value(): string;
    private _values;
    get values(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsValuesList;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappings {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappings): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappings): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappings | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappings | undefined);
    get displayName(): string;
    get entityType(): string;
    get queryField(): string;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesDetails {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetails): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesDetailsToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesDetails): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetails | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesDetails | undefined);
    get condition(): string;
    private _configurations;
    get configurations(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsConfigurationsList;
    get dataSourceId(): string;
    get description(): string;
    private _entitiesMappings;
    get entitiesMappings(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsEntitiesMappingsList;
    get isConfigurationAllowed(): cdktf.IResolvable;
    get isEnabled(): cdktf.IResolvable;
    get labels(): string[];
    get recommendation(): string;
    get riskLevel(): string;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappings {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappings): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappings): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappings | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappings | undefined);
    get displayName(): string;
    get entityType(): string;
    get queryField(): string;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsOutputReference;
}
export interface CloudGuardDetectorRecipeEffectiveDetectorRules {
}
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesToTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRules): any;
export declare function cloudGuardDetectorRecipeEffectiveDetectorRulesToHclTerraform(struct?: CloudGuardDetectorRecipeEffectiveDetectorRules): any;
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesOutputReference 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(): CloudGuardDetectorRecipeEffectiveDetectorRules | undefined;
    set internalValue(value: CloudGuardDetectorRecipeEffectiveDetectorRules | undefined);
    private _candidateResponderRules;
    get candidateResponderRules(): CloudGuardDetectorRecipeEffectiveDetectorRulesCandidateResponderRulesList;
    get dataSourceId(): string;
    get description(): string;
    private _details;
    get details(): CloudGuardDetectorRecipeEffectiveDetectorRulesDetailsList;
    get detector(): string;
    get detectorRuleId(): string;
    get displayName(): string;
    private _entitiesMappings;
    get entitiesMappings(): CloudGuardDetectorRecipeEffectiveDetectorRulesEntitiesMappingsList;
    get lifecycleDetails(): string;
    get managedListTypes(): string[];
    get recommendation(): string;
    get resourceType(): string;
    get serviceType(): string;
    get state(): string;
    get timeCreated(): string;
    get timeUpdated(): string;
}
export declare class CloudGuardDetectorRecipeEffectiveDetectorRulesList 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): CloudGuardDetectorRecipeEffectiveDetectorRulesOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesCandidateResponderRules {
}
export declare function cloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesCandidateResponderRules): any;
export declare function cloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesCandidateResponderRules): any;
export declare class CloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesCandidateResponderRules | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesCandidateResponderRules | undefined);
    get displayName(): string;
    get id(): string;
    get isPreferred(): cdktf.IResolvable;
}
export declare class CloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesList 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): CloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesEntitiesMappings {
}
export declare function cloudGuardDetectorRecipeDetectorRulesEntitiesMappingsToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesEntitiesMappings): any;
export declare function cloudGuardDetectorRecipeDetectorRulesEntitiesMappingsToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesEntitiesMappings): any;
export declare class CloudGuardDetectorRecipeDetectorRulesEntitiesMappingsOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesEntitiesMappings | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesEntitiesMappings | undefined);
    get displayName(): string;
    get entityType(): string;
    get queryField(): string;
}
export declare class CloudGuardDetectorRecipeDetectorRulesEntitiesMappingsList 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): CloudGuardDetectorRecipeDetectorRulesEntitiesMappingsOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#list_type CloudGuardDetectorRecipe#list_type}
    */
    readonly listType: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#managed_list_type CloudGuardDetectorRecipe#managed_list_type}
    */
    readonly managedListType: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#value CloudGuardDetectorRecipe#value}
    */
    readonly value: string;
}
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues | cdktf.IResolvable): any;
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues | cdktf.IResolvable): any;
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues | cdktf.IResolvable | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues | cdktf.IResolvable | undefined);
    private _listType?;
    get listType(): string;
    set listType(value: string);
    get listTypeInput(): string | undefined;
    private _managedListType?;
    get managedListType(): string;
    set managedListType(value: string);
    get managedListTypeInput(): string | undefined;
    private _value?;
    get value(): string;
    set value(value: string);
    get valueInput(): string | undefined;
}
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues[] | 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): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#config_key CloudGuardDetectorRecipe#config_key}
    */
    readonly configKey: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#data_type CloudGuardDetectorRecipe#data_type}
    */
    readonly dataType?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#name CloudGuardDetectorRecipe#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#value CloudGuardDetectorRecipe#value}
    */
    readonly value?: string;
    /**
    * values block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#values CloudGuardDetectorRecipe#values}
    */
    readonly values?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues[] | cdktf.IResolvable;
}
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations | cdktf.IResolvable): any;
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations | cdktf.IResolvable): any;
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations | cdktf.IResolvable | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations | cdktf.IResolvable | undefined);
    private _configKey?;
    get configKey(): string;
    set configKey(value: string);
    get configKeyInput(): string | undefined;
    private _dataType?;
    get dataType(): string;
    set dataType(value: string);
    resetDataType(): void;
    get dataTypeInput(): string | undefined;
    private _name?;
    get name(): string;
    set name(value: string);
    get nameInput(): string | undefined;
    private _value?;
    get value(): string;
    set value(value: string);
    resetValue(): void;
    get valueInput(): string | undefined;
    private _values;
    get values(): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValuesList;
    putValues(value: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues[] | cdktf.IResolvable): void;
    resetValues(): void;
    get valuesInput(): cdktf.IResolvable | CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsValues[] | undefined;
}
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations[] | 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): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#display_name CloudGuardDetectorRecipe#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#entity_type CloudGuardDetectorRecipe#entity_type}
    */
    readonly entityType?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#query_field CloudGuardDetectorRecipe#query_field}
    */
    readonly queryField: string;
}
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings | cdktf.IResolvable): any;
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings | cdktf.IResolvable): any;
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings | cdktf.IResolvable | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings | cdktf.IResolvable | undefined);
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    resetDisplayName(): void;
    get displayNameInput(): string | undefined;
    private _entityType?;
    get entityType(): string;
    set entityType(value: string);
    resetEntityType(): void;
    get entityTypeInput(): string | undefined;
    private _queryField?;
    get queryField(): string;
    set queryField(value: string);
    get queryFieldInput(): string | undefined;
}
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings[] | 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): CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsOutputReference;
}
export interface CloudGuardDetectorRecipeDetectorRulesDetails {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#condition CloudGuardDetectorRecipe#condition}
    */
    readonly condition?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#data_source_id CloudGuardDetectorRecipe#data_source_id}
    */
    readonly dataSourceId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#description CloudGuardDetectorRecipe#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#is_enabled CloudGuardDetectorRecipe#is_enabled}
    */
    readonly isEnabled: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#labels CloudGuardDetectorRecipe#labels}
    */
    readonly labels?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#recommendation CloudGuardDetectorRecipe#recommendation}
    */
    readonly recommendation?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#risk_level CloudGuardDetectorRecipe#risk_level}
    */
    readonly riskLevel: string;
    /**
    * configurations block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#configurations CloudGuardDetectorRecipe#configurations}
    */
    readonly configurations?: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations[] | cdktf.IResolvable;
    /**
    * entities_mappings block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#entities_mappings CloudGuardDetectorRecipe#entities_mappings}
    */
    readonly entitiesMappings?: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings[] | cdktf.IResolvable;
}
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsToTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsOutputReference | CloudGuardDetectorRecipeDetectorRulesDetails): any;
export declare function cloudGuardDetectorRecipeDetectorRulesDetailsToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRulesDetailsOutputReference | CloudGuardDetectorRecipeDetectorRulesDetails): any;
export declare class CloudGuardDetectorRecipeDetectorRulesDetailsOutputReference 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(): CloudGuardDetectorRecipeDetectorRulesDetails | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRulesDetails | undefined);
    private _condition?;
    get condition(): string;
    set condition(value: string);
    resetCondition(): void;
    get conditionInput(): string | undefined;
    private _dataSourceId?;
    get dataSourceId(): string;
    set dataSourceId(value: string);
    resetDataSourceId(): void;
    get dataSourceIdInput(): string | undefined;
    private _description?;
    get description(): string;
    set description(value: string);
    resetDescription(): void;
    get descriptionInput(): string | undefined;
    get isConfigurationAllowed(): cdktf.IResolvable;
    private _isEnabled?;
    get isEnabled(): boolean | cdktf.IResolvable;
    set isEnabled(value: boolean | cdktf.IResolvable);
    get isEnabledInput(): boolean | cdktf.IResolvable | undefined;
    private _labels?;
    get labels(): string[];
    set labels(value: string[]);
    resetLabels(): void;
    get labelsInput(): string[] | undefined;
    private _recommendation?;
    get recommendation(): string;
    set recommendation(value: string);
    resetRecommendation(): void;
    get recommendationInput(): string | undefined;
    private _riskLevel?;
    get riskLevel(): string;
    set riskLevel(value: string);
    get riskLevelInput(): string | undefined;
    private _configurations;
    get configurations(): CloudGuardDetectorRecipeDetectorRulesDetailsConfigurationsList;
    putConfigurations(value: CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations[] | cdktf.IResolvable): void;
    resetConfigurations(): void;
    get configurationsInput(): cdktf.IResolvable | CloudGuardDetectorRecipeDetectorRulesDetailsConfigurations[] | undefined;
    private _entitiesMappings;
    get entitiesMappings(): CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappingsList;
    putEntitiesMappings(value: CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings[] | cdktf.IResolvable): void;
    resetEntitiesMappings(): void;
    get entitiesMappingsInput(): cdktf.IResolvable | CloudGuardDetectorRecipeDetectorRulesDetailsEntitiesMappings[] | undefined;
}
export interface CloudGuardDetectorRecipeDetectorRules {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#detector_rule_id CloudGuardDetectorRecipe#detector_rule_id}
    */
    readonly detectorRuleId: string;
    /**
    * details block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#details CloudGuardDetectorRecipe#details}
    */
    readonly details: CloudGuardDetectorRecipeDetectorRulesDetails;
}
export declare function cloudGuardDetectorRecipeDetectorRulesToTerraform(struct?: CloudGuardDetectorRecipeDetectorRules | cdktf.IResolvable): any;
export declare function cloudGuardDetectorRecipeDetectorRulesToHclTerraform(struct?: CloudGuardDetectorRecipeDetectorRules | cdktf.IResolvable): any;
export declare class CloudGuardDetectorRecipeDetectorRulesOutputReference 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(): CloudGuardDetectorRecipeDetectorRules | cdktf.IResolvable | undefined;
    set internalValue(value: CloudGuardDetectorRecipeDetectorRules | cdktf.IResolvable | undefined);
    private _candidateResponderRules;
    get candidateResponderRules(): CloudGuardDetectorRecipeDetectorRulesCandidateResponderRulesList;
    get dataSourceId(): string;
    get description(): string;
    get detector(): string;
    private _detectorRuleId?;
    get detectorRuleId(): string;
    set detectorRuleId(value: string);
    get detectorRuleIdInput(): string | undefined;
    get displayName(): string;
    private _entitiesMappings;
    get entitiesMappings(): CloudGuardDetectorRecipeDetectorRulesEntitiesMappingsList;
    get lifecycleDetails(): string;
    get managedListTypes(): string[];
    get recommendation(): string;
    get resourceType(): string;
    get serviceType(): string;
    get state(): string;
    get timeCreated(): string;
    get timeUpdated(): string;
    private _details;
    get details(): CloudGuardDetectorRecipeDetectorRulesDetailsOutputReference;
    putDetails(value: CloudGuardDetectorRecipeDetectorRulesDetails): void;
    get detailsInput(): CloudGuardDetectorRecipeDetectorRulesDetails | undefined;
}
export declare class CloudGuardDetectorRecipeDetectorRulesList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: CloudGuardDetectorRecipeDetectorRules[] | 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): CloudGuardDetectorRecipeDetectorRulesOutputReference;
}
export interface CloudGuardDetectorRecipeTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#create CloudGuardDetectorRecipe#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#delete CloudGuardDetectorRecipe#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#update CloudGuardDetectorRecipe#update}
    */
    readonly update?: string;
}
export declare function cloudGuardDetectorRecipeTimeoutsToTerraform(struct?: CloudGuardDetectorRecipeTimeouts | cdktf.IResolvable): any;
export declare function cloudGuardDetectorRecipeTimeoutsToHclTerraform(struct?: CloudGuardDetectorRecipeTimeouts | cdktf.IResolvable): any;
export declare class CloudGuardDetectorRecipeTimeoutsOutputReference 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(): CloudGuardDetectorRecipeTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: CloudGuardDetectorRecipeTimeouts | 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/cloud_guard_detector_recipe oci_cloud_guard_detector_recipe}
*/
export declare class CloudGuardDetectorRecipe extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_cloud_guard_detector_recipe";
    /**
    * Generates CDKTF code for importing a CloudGuardDetectorRecipe 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 CloudGuardDetectorRecipe to import
    * @param importFromId The id of the existing CloudGuardDetectorRecipe that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/cloud_guard_detector_recipe#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the CloudGuardDetectorRecipe 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/cloud_guard_detector_recipe oci_cloud_guard_detector_recipe} 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 CloudGuardDetectorRecipeConfig
    */
    constructor(scope: Construct, id: string, config: CloudGuardDetectorRecipeConfig);
    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 _detector?;
    get detector(): string;
    set detector(value: string);
    resetDetector(): void;
    get detectorInput(): string | undefined;
    get detectorRecipeType(): string;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    get displayNameInput(): string | undefined;
    private _effectiveDetectorRules;
    get effectiveDetectorRules(): CloudGuardDetectorRecipeEffectiveDetectorRulesList;
    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;
    get owner(): string;
    private _sourceDetectorRecipeId?;
    get sourceDetectorRecipeId(): string;
    set sourceDetectorRecipeId(value: string);
    resetSourceDetectorRecipeId(): void;
    get sourceDetectorRecipeIdInput(): string | undefined;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get targetIds(): string[];
    get timeCreated(): string;
    get timeUpdated(): string;
    private _detectorRules;
    get detectorRules(): CloudGuardDetectorRecipeDetectorRulesList;
    putDetectorRules(value: CloudGuardDetectorRecipeDetectorRules[] | cdktf.IResolvable): void;
    resetDetectorRules(): void;
    get detectorRulesInput(): cdktf.IResolvable | CloudGuardDetectorRecipeDetectorRules[] | undefined;
    private _timeouts;
    get timeouts(): CloudGuardDetectorRecipeTimeoutsOutputReference;
    putTimeouts(value: CloudGuardDetectorRecipeTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | CloudGuardDetectorRecipeTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}