import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciObjectstorageObjectConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#base64_encode_content DataOciObjectstorageObject#base64_encode_content}
    */
    readonly base64EncodeContent?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#bucket DataOciObjectstorageObject#bucket}
    */
    readonly bucket: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#content_length_limit DataOciObjectstorageObject#content_length_limit}
    */
    readonly contentLengthLimit?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_cache_control DataOciObjectstorageObject#http_response_cache_control}
    */
    readonly httpResponseCacheControl?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_content_disposition DataOciObjectstorageObject#http_response_content_disposition}
    */
    readonly httpResponseContentDisposition?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_content_encoding DataOciObjectstorageObject#http_response_content_encoding}
    */
    readonly httpResponseContentEncoding?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_content_language DataOciObjectstorageObject#http_response_content_language}
    */
    readonly httpResponseContentLanguage?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_content_type DataOciObjectstorageObject#http_response_content_type}
    */
    readonly httpResponseContentType?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#http_response_expires DataOciObjectstorageObject#http_response_expires}
    */
    readonly httpResponseExpires?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#id DataOciObjectstorageObject#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/data-sources/objectstorage_object#namespace DataOciObjectstorageObject#namespace}
    */
    readonly namespace: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#object DataOciObjectstorageObject#object}
    */
    readonly object: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#version_id DataOciObjectstorageObject#version_id}
    */
    readonly versionId?: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object oci_objectstorage_object}
*/
export declare class DataOciObjectstorageObject extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_objectstorage_object";
    /**
    * Generates CDKTF code for importing a DataOciObjectstorageObject 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 DataOciObjectstorageObject to import
    * @param importFromId The id of the existing DataOciObjectstorageObject that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/objectstorage_object#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciObjectstorageObject 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/objectstorage_object oci_objectstorage_object} 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 DataOciObjectstorageObjectConfig
    */
    constructor(scope: Construct, id: string, config: DataOciObjectstorageObjectConfig);
    private _base64EncodeContent?;
    get base64EncodeContent(): boolean | cdktf.IResolvable;
    set base64EncodeContent(value: boolean | cdktf.IResolvable);
    resetBase64EncodeContent(): void;
    get base64EncodeContentInput(): boolean | cdktf.IResolvable | undefined;
    private _bucket?;
    get bucket(): string;
    set bucket(value: string);
    get bucketInput(): string | undefined;
    get cacheControl(): string;
    get content(): string;
    get contentDisposition(): string;
    get contentEncoding(): string;
    get contentLanguage(): string;
    get contentLength(): string;
    private _contentLengthLimit?;
    get contentLengthLimit(): number;
    set contentLengthLimit(value: number);
    resetContentLengthLimit(): void;
    get contentLengthLimitInput(): number | undefined;
    get contentMd5(): string;
    get contentType(): string;
    private _httpResponseCacheControl?;
    get httpResponseCacheControl(): string;
    set httpResponseCacheControl(value: string);
    resetHttpResponseCacheControl(): void;
    get httpResponseCacheControlInput(): string | undefined;
    private _httpResponseContentDisposition?;
    get httpResponseContentDisposition(): string;
    set httpResponseContentDisposition(value: string);
    resetHttpResponseContentDisposition(): void;
    get httpResponseContentDispositionInput(): string | undefined;
    private _httpResponseContentEncoding?;
    get httpResponseContentEncoding(): string;
    set httpResponseContentEncoding(value: string);
    resetHttpResponseContentEncoding(): void;
    get httpResponseContentEncodingInput(): string | undefined;
    private _httpResponseContentLanguage?;
    get httpResponseContentLanguage(): string;
    set httpResponseContentLanguage(value: string);
    resetHttpResponseContentLanguage(): void;
    get httpResponseContentLanguageInput(): string | undefined;
    private _httpResponseContentType?;
    get httpResponseContentType(): string;
    set httpResponseContentType(value: string);
    resetHttpResponseContentType(): void;
    get httpResponseContentTypeInput(): string | undefined;
    private _httpResponseExpires?;
    get httpResponseExpires(): string;
    set httpResponseExpires(value: string);
    resetHttpResponseExpires(): void;
    get httpResponseExpiresInput(): string | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    private _metadata;
    get metadata(): cdktf.StringMap;
    private _namespace?;
    get namespace(): string;
    set namespace(value: string);
    get namespaceInput(): string | undefined;
    private _object?;
    get object(): string;
    set object(value: string);
    get objectInput(): string | undefined;
    get storageTier(): string;
    private _versionId?;
    get versionId(): string;
    set versionId(value: string);
    resetVersionId(): void;
    get versionIdInput(): string | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
