import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataSafeAuditPolicyConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#audit_policy_id DataSafeAuditPolicy#audit_policy_id}
    */
    readonly auditPolicyId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#compartment_id DataSafeAuditPolicy#compartment_id}
    */
    readonly compartmentId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#defined_tags DataSafeAuditPolicy#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#description DataSafeAuditPolicy#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#display_name DataSafeAuditPolicy#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#freeform_tags DataSafeAuditPolicy#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#id DataSafeAuditPolicy#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/data_safe_audit_policy#provision_trigger DataSafeAuditPolicy#provision_trigger}
    */
    readonly provisionTrigger?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#retrieve_from_target_trigger DataSafeAuditPolicy#retrieve_from_target_trigger}
    */
    readonly retrieveFromTargetTrigger?: number;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#timeouts DataSafeAuditPolicy#timeouts}
    */
    readonly timeouts?: DataSafeAuditPolicyTimeouts;
}
export interface DataSafeAuditPolicyAuditConditionsEnableConditions {
}
export declare function dataSafeAuditPolicyAuditConditionsEnableConditionsToTerraform(struct?: DataSafeAuditPolicyAuditConditionsEnableConditions): any;
export declare function dataSafeAuditPolicyAuditConditionsEnableConditionsToHclTerraform(struct?: DataSafeAuditPolicyAuditConditionsEnableConditions): any;
export declare class DataSafeAuditPolicyAuditConditionsEnableConditionsOutputReference 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(): DataSafeAuditPolicyAuditConditionsEnableConditions | undefined;
    set internalValue(value: DataSafeAuditPolicyAuditConditionsEnableConditions | undefined);
    get entityNames(): string[];
    get entitySelection(): string;
    get entityType(): string;
    get operationStatus(): string;
}
export declare class DataSafeAuditPolicyAuditConditionsEnableConditionsList 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): DataSafeAuditPolicyAuditConditionsEnableConditionsOutputReference;
}
export interface DataSafeAuditPolicyAuditConditions {
}
export declare function dataSafeAuditPolicyAuditConditionsToTerraform(struct?: DataSafeAuditPolicyAuditConditions): any;
export declare function dataSafeAuditPolicyAuditConditionsToHclTerraform(struct?: DataSafeAuditPolicyAuditConditions): any;
export declare class DataSafeAuditPolicyAuditConditionsOutputReference 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(): DataSafeAuditPolicyAuditConditions | undefined;
    set internalValue(value: DataSafeAuditPolicyAuditConditions | undefined);
    get auditPolicyName(): string;
    private _enableConditions;
    get enableConditions(): DataSafeAuditPolicyAuditConditionsEnableConditionsList;
    get isDataSafeServiceAccountAudited(): cdktf.IResolvable;
    get isPrivUsersManagedByDataSafe(): cdktf.IResolvable;
}
export declare class DataSafeAuditPolicyAuditConditionsList 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): DataSafeAuditPolicyAuditConditionsOutputReference;
}
export interface DataSafeAuditPolicyAuditSpecifications {
}
export declare function dataSafeAuditPolicyAuditSpecificationsToTerraform(struct?: DataSafeAuditPolicyAuditSpecifications): any;
export declare function dataSafeAuditPolicyAuditSpecificationsToHclTerraform(struct?: DataSafeAuditPolicyAuditSpecifications): any;
export declare class DataSafeAuditPolicyAuditSpecificationsOutputReference 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(): DataSafeAuditPolicyAuditSpecifications | undefined;
    set internalValue(value: DataSafeAuditPolicyAuditSpecifications | undefined);
    get auditPolicyCategory(): string;
    get auditPolicyName(): string;
    get databasePolicyNames(): string[];
    get enableStatus(): string;
    get enabledEntities(): string;
    get isCreated(): cdktf.IResolvable;
    get isEnabledForAllUsers(): cdktf.IResolvable;
    get isSeededInDataSafe(): cdktf.IResolvable;
    get isSeededInTarget(): cdktf.IResolvable;
    get isViewOnly(): cdktf.IResolvable;
    get partiallyEnabledMsg(): string;
}
export declare class DataSafeAuditPolicyAuditSpecificationsList 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): DataSafeAuditPolicyAuditSpecificationsOutputReference;
}
export interface DataSafeAuditPolicyTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#create DataSafeAuditPolicy#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#delete DataSafeAuditPolicy#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#update DataSafeAuditPolicy#update}
    */
    readonly update?: string;
}
export declare function dataSafeAuditPolicyTimeoutsToTerraform(struct?: DataSafeAuditPolicyTimeouts | cdktf.IResolvable): any;
export declare function dataSafeAuditPolicyTimeoutsToHclTerraform(struct?: DataSafeAuditPolicyTimeouts | cdktf.IResolvable): any;
export declare class DataSafeAuditPolicyTimeoutsOutputReference 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(): DataSafeAuditPolicyTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: DataSafeAuditPolicyTimeouts | 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/data_safe_audit_policy oci_data_safe_audit_policy}
*/
export declare class DataSafeAuditPolicy extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_data_safe_audit_policy";
    /**
    * Generates CDKTF code for importing a DataSafeAuditPolicy 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 DataSafeAuditPolicy to import
    * @param importFromId The id of the existing DataSafeAuditPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_audit_policy#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataSafeAuditPolicy 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/data_safe_audit_policy oci_data_safe_audit_policy} 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 DataSafeAuditPolicyConfig
    */
    constructor(scope: Construct, id: string, config: DataSafeAuditPolicyConfig);
    private _auditConditions;
    get auditConditions(): DataSafeAuditPolicyAuditConditionsList;
    private _auditPolicyId?;
    get auditPolicyId(): string;
    set auditPolicyId(value: string);
    get auditPolicyIdInput(): string | undefined;
    private _auditSpecifications;
    get auditSpecifications(): DataSafeAuditPolicyAuditSpecificationsList;
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    resetCompartmentId(): void;
    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;
    get isDataSafeServiceAccountExcluded(): cdktf.IResolvable;
    get lifecycleDetails(): string;
    private _provisionTrigger?;
    get provisionTrigger(): number;
    set provisionTrigger(value: number);
    resetProvisionTrigger(): void;
    get provisionTriggerInput(): number | undefined;
    private _retrieveFromTargetTrigger?;
    get retrieveFromTargetTrigger(): number;
    set retrieveFromTargetTrigger(value: number);
    resetRetrieveFromTargetTrigger(): void;
    get retrieveFromTargetTriggerInput(): number | undefined;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get targetId(): string;
    get timeCreated(): string;
    get timeLastProvisioned(): string;
    get timeLastRetrieved(): string;
    get timeUpdated(): string;
    private _timeouts;
    get timeouts(): DataSafeAuditPolicyTimeoutsOutputReference;
    putTimeouts(value: DataSafeAuditPolicyTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | DataSafeAuditPolicyTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
