import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciDataintegrationWorkspaceImportRequestConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataintegration_workspace_import_request#import_request_key DataOciDataintegrationWorkspaceImportRequest#import_request_key}
    */
    readonly importRequestKey: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataintegration_workspace_import_request#workspace_id DataOciDataintegrationWorkspaceImportRequest#workspace_id}
    */
    readonly workspaceId: string;
}
export interface DataOciDataintegrationWorkspaceImportRequestImportConflictResolution {
}
export declare function dataOciDataintegrationWorkspaceImportRequestImportConflictResolutionToTerraform(struct?: DataOciDataintegrationWorkspaceImportRequestImportConflictResolution): any;
export declare function dataOciDataintegrationWorkspaceImportRequestImportConflictResolutionToHclTerraform(struct?: DataOciDataintegrationWorkspaceImportRequestImportConflictResolution): any;
export declare class DataOciDataintegrationWorkspaceImportRequestImportConflictResolutionOutputReference 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(): DataOciDataintegrationWorkspaceImportRequestImportConflictResolution | undefined;
    set internalValue(value: DataOciDataintegrationWorkspaceImportRequestImportConflictResolution | undefined);
    get duplicatePrefix(): string;
    get duplicateSuffix(): string;
    get importConflictResolutionType(): string;
}
export declare class DataOciDataintegrationWorkspaceImportRequestImportConflictResolutionList 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): DataOciDataintegrationWorkspaceImportRequestImportConflictResolutionOutputReference;
}
export interface DataOciDataintegrationWorkspaceImportRequestImportedObjects {
}
export declare function dataOciDataintegrationWorkspaceImportRequestImportedObjectsToTerraform(struct?: DataOciDataintegrationWorkspaceImportRequestImportedObjects): any;
export declare function dataOciDataintegrationWorkspaceImportRequestImportedObjectsToHclTerraform(struct?: DataOciDataintegrationWorkspaceImportRequestImportedObjects): any;
export declare class DataOciDataintegrationWorkspaceImportRequestImportedObjectsOutputReference 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(): DataOciDataintegrationWorkspaceImportRequestImportedObjects | undefined;
    set internalValue(value: DataOciDataintegrationWorkspaceImportRequestImportedObjects | undefined);
    get aggregatorKey(): string;
    get identifier(): string;
    get name(): string;
    get namePath(): string;
    get newKey(): string;
    get objectType(): string;
    get objectVersion(): string;
    get oldKey(): string;
    get resolutionAction(): string;
    get timeUpdatedInMillis(): string;
}
export declare class DataOciDataintegrationWorkspaceImportRequestImportedObjectsList 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): DataOciDataintegrationWorkspaceImportRequestImportedObjectsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataintegration_workspace_import_request oci_dataintegration_workspace_import_request}
*/
export declare class DataOciDataintegrationWorkspaceImportRequest extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_dataintegration_workspace_import_request";
    /**
    * Generates CDKTF code for importing a DataOciDataintegrationWorkspaceImportRequest 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 DataOciDataintegrationWorkspaceImportRequest to import
    * @param importFromId The id of the existing DataOciDataintegrationWorkspaceImportRequest that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/dataintegration_workspace_import_request#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciDataintegrationWorkspaceImportRequest 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/data-sources/dataintegration_workspace_import_request oci_dataintegration_workspace_import_request} Data Source
    *
    * @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 DataOciDataintegrationWorkspaceImportRequestConfig
    */
    constructor(scope: Construct, id: string, config: DataOciDataintegrationWorkspaceImportRequestConfig);
    get areDataAssetReferencesIncluded(): cdktf.IResolvable;
    get bucket(): string;
    get createdBy(): string;
    private _errorMessages;
    get errorMessages(): cdktf.StringMap;
    get fileName(): string;
    get id(): string;
    private _importConflictResolution;
    get importConflictResolution(): DataOciDataintegrationWorkspaceImportRequestImportConflictResolutionList;
    private _importRequestKey?;
    get importRequestKey(): string;
    set importRequestKey(value: string);
    get importRequestKeyInput(): string | undefined;
    private _importedObjects;
    get importedObjects(): DataOciDataintegrationWorkspaceImportRequestImportedObjectsList;
    get key(): string;
    get name(): string;
    get objectKeyForImport(): string;
    get objectStorageRegion(): string;
    get objectStorageTenancyId(): string;
    get status(): string;
    get timeEndedInMillis(): string;
    get timeStartedInMillis(): string;
    get totalImportedObjectCount(): number;
    private _workspaceId?;
    get workspaceId(): string;
    set workspaceId(value: string);
    get workspaceIdInput(): string | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
