import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DatabasePluggableDatabasesLocalCloneConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#cloned_pdb_name DatabasePluggableDatabasesLocalClone#cloned_pdb_name}
    */
    readonly clonedPdbName: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#id DatabasePluggableDatabasesLocalClone#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/database_pluggable_databases_local_clone#pdb_admin_password DatabasePluggableDatabasesLocalClone#pdb_admin_password}
    */
    readonly pdbAdminPassword?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#pluggable_database_id DatabasePluggableDatabasesLocalClone#pluggable_database_id}
    */
    readonly pluggableDatabaseId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#should_pdb_admin_account_be_locked DatabasePluggableDatabasesLocalClone#should_pdb_admin_account_be_locked}
    */
    readonly shouldPdbAdminAccountBeLocked?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#target_tde_wallet_password DatabasePluggableDatabasesLocalClone#target_tde_wallet_password}
    */
    readonly targetTdeWalletPassword?: string;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#timeouts DatabasePluggableDatabasesLocalClone#timeouts}
    */
    readonly timeouts?: DatabasePluggableDatabasesLocalCloneTimeouts;
}
export interface DatabasePluggableDatabasesLocalCloneConnectionStrings {
}
export declare function databasePluggableDatabasesLocalCloneConnectionStringsToTerraform(struct?: DatabasePluggableDatabasesLocalCloneConnectionStrings): any;
export declare function databasePluggableDatabasesLocalCloneConnectionStringsToHclTerraform(struct?: DatabasePluggableDatabasesLocalCloneConnectionStrings): any;
export declare class DatabasePluggableDatabasesLocalCloneConnectionStringsOutputReference 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(): DatabasePluggableDatabasesLocalCloneConnectionStrings | undefined;
    set internalValue(value: DatabasePluggableDatabasesLocalCloneConnectionStrings | undefined);
    private _allConnectionStrings;
    get allConnectionStrings(): cdktf.StringMap;
    get pdbDefault(): string;
    get pdbIpDefault(): string;
}
export declare class DatabasePluggableDatabasesLocalCloneConnectionStringsList 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): DatabasePluggableDatabasesLocalCloneConnectionStringsOutputReference;
}
export interface DatabasePluggableDatabasesLocalClonePdbNodeLevelDetails {
}
export declare function databasePluggableDatabasesLocalClonePdbNodeLevelDetailsToTerraform(struct?: DatabasePluggableDatabasesLocalClonePdbNodeLevelDetails): any;
export declare function databasePluggableDatabasesLocalClonePdbNodeLevelDetailsToHclTerraform(struct?: DatabasePluggableDatabasesLocalClonePdbNodeLevelDetails): any;
export declare class DatabasePluggableDatabasesLocalClonePdbNodeLevelDetailsOutputReference 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(): DatabasePluggableDatabasesLocalClonePdbNodeLevelDetails | undefined;
    set internalValue(value: DatabasePluggableDatabasesLocalClonePdbNodeLevelDetails | undefined);
    get nodeName(): string;
    get openMode(): string;
}
export declare class DatabasePluggableDatabasesLocalClonePdbNodeLevelDetailsList 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): DatabasePluggableDatabasesLocalClonePdbNodeLevelDetailsOutputReference;
}
export interface DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfig {
}
export declare function databasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigToTerraform(struct?: DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfig): any;
export declare function databasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigToHclTerraform(struct?: DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfig): any;
export declare class DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigOutputReference 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(): DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfig | undefined;
    set internalValue(value: DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfig | undefined);
    get managementStatus(): string;
}
export declare class DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigList 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): DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigOutputReference;
}
export interface DatabasePluggableDatabasesLocalCloneRefreshableCloneConfig {
}
export declare function databasePluggableDatabasesLocalCloneRefreshableCloneConfigToTerraform(struct?: DatabasePluggableDatabasesLocalCloneRefreshableCloneConfig): any;
export declare function databasePluggableDatabasesLocalCloneRefreshableCloneConfigToHclTerraform(struct?: DatabasePluggableDatabasesLocalCloneRefreshableCloneConfig): any;
export declare class DatabasePluggableDatabasesLocalCloneRefreshableCloneConfigOutputReference 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(): DatabasePluggableDatabasesLocalCloneRefreshableCloneConfig | undefined;
    set internalValue(value: DatabasePluggableDatabasesLocalCloneRefreshableCloneConfig | undefined);
    get isRefreshableClone(): cdktf.IResolvable;
}
export declare class DatabasePluggableDatabasesLocalCloneRefreshableCloneConfigList 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): DatabasePluggableDatabasesLocalCloneRefreshableCloneConfigOutputReference;
}
export interface DatabasePluggableDatabasesLocalCloneTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#create DatabasePluggableDatabasesLocalClone#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#delete DatabasePluggableDatabasesLocalClone#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#update DatabasePluggableDatabasesLocalClone#update}
    */
    readonly update?: string;
}
export declare function databasePluggableDatabasesLocalCloneTimeoutsToTerraform(struct?: DatabasePluggableDatabasesLocalCloneTimeouts | cdktf.IResolvable): any;
export declare function databasePluggableDatabasesLocalCloneTimeoutsToHclTerraform(struct?: DatabasePluggableDatabasesLocalCloneTimeouts | cdktf.IResolvable): any;
export declare class DatabasePluggableDatabasesLocalCloneTimeoutsOutputReference 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(): DatabasePluggableDatabasesLocalCloneTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: DatabasePluggableDatabasesLocalCloneTimeouts | 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/database_pluggable_databases_local_clone oci_database_pluggable_databases_local_clone}
*/
export declare class DatabasePluggableDatabasesLocalClone extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_database_pluggable_databases_local_clone";
    /**
    * Generates CDKTF code for importing a DatabasePluggableDatabasesLocalClone 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 DatabasePluggableDatabasesLocalClone to import
    * @param importFromId The id of the existing DatabasePluggableDatabasesLocalClone that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/database_pluggable_databases_local_clone#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DatabasePluggableDatabasesLocalClone 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/database_pluggable_databases_local_clone oci_database_pluggable_databases_local_clone} 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 DatabasePluggableDatabasesLocalCloneConfig
    */
    constructor(scope: Construct, id: string, config: DatabasePluggableDatabasesLocalCloneConfig);
    private _clonedPdbName?;
    get clonedPdbName(): string;
    set clonedPdbName(value: string);
    get clonedPdbNameInput(): string | undefined;
    get compartmentId(): string;
    private _connectionStrings;
    get connectionStrings(): DatabasePluggableDatabasesLocalCloneConnectionStringsList;
    get containerDatabaseId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    get isRestricted(): cdktf.IResolvable;
    get lifecycleDetails(): string;
    get openMode(): string;
    private _pdbAdminPassword?;
    get pdbAdminPassword(): string;
    set pdbAdminPassword(value: string);
    resetPdbAdminPassword(): void;
    get pdbAdminPasswordInput(): string | undefined;
    get pdbName(): string;
    private _pdbNodeLevelDetails;
    get pdbNodeLevelDetails(): DatabasePluggableDatabasesLocalClonePdbNodeLevelDetailsList;
    private _pluggableDatabaseId?;
    get pluggableDatabaseId(): string;
    set pluggableDatabaseId(value: string);
    get pluggableDatabaseIdInput(): string | undefined;
    private _pluggableDatabaseManagementConfig;
    get pluggableDatabaseManagementConfig(): DatabasePluggableDatabasesLocalClonePluggableDatabaseManagementConfigList;
    private _refreshableCloneConfig;
    get refreshableCloneConfig(): DatabasePluggableDatabasesLocalCloneRefreshableCloneConfigList;
    private _shouldPdbAdminAccountBeLocked?;
    get shouldPdbAdminAccountBeLocked(): boolean | cdktf.IResolvable;
    set shouldPdbAdminAccountBeLocked(value: boolean | cdktf.IResolvable);
    resetShouldPdbAdminAccountBeLocked(): void;
    get shouldPdbAdminAccountBeLockedInput(): boolean | cdktf.IResolvable | undefined;
    get state(): string;
    private _targetTdeWalletPassword?;
    get targetTdeWalletPassword(): string;
    set targetTdeWalletPassword(value: string);
    resetTargetTdeWalletPassword(): void;
    get targetTdeWalletPasswordInput(): string | undefined;
    get timeCreated(): string;
    private _timeouts;
    get timeouts(): DatabasePluggableDatabasesLocalCloneTimeoutsOutputReference;
    putTimeouts(value: DatabasePluggableDatabasesLocalCloneTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | DatabasePluggableDatabasesLocalCloneTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
