import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface GoldenGateDeploymentCertificateConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#certificate_content GoldenGateDeploymentCertificate#certificate_content}
    */
    readonly certificateContent: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#deployment_id GoldenGateDeploymentCertificate#deployment_id}
    */
    readonly deploymentId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#id GoldenGateDeploymentCertificate#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/golden_gate_deployment_certificate#is_lock_override GoldenGateDeploymentCertificate#is_lock_override}
    */
    readonly isLockOverride?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#key GoldenGateDeploymentCertificate#key}
    */
    readonly key: string;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#timeouts GoldenGateDeploymentCertificate#timeouts}
    */
    readonly timeouts?: GoldenGateDeploymentCertificateTimeouts;
}
export interface GoldenGateDeploymentCertificateTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#create GoldenGateDeploymentCertificate#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#delete GoldenGateDeploymentCertificate#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#update GoldenGateDeploymentCertificate#update}
    */
    readonly update?: string;
}
export declare function goldenGateDeploymentCertificateTimeoutsToTerraform(struct?: GoldenGateDeploymentCertificateTimeouts | cdktf.IResolvable): any;
export declare function goldenGateDeploymentCertificateTimeoutsToHclTerraform(struct?: GoldenGateDeploymentCertificateTimeouts | cdktf.IResolvable): any;
export declare class GoldenGateDeploymentCertificateTimeoutsOutputReference 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(): GoldenGateDeploymentCertificateTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: GoldenGateDeploymentCertificateTimeouts | 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/golden_gate_deployment_certificate oci_golden_gate_deployment_certificate}
*/
export declare class GoldenGateDeploymentCertificate extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_golden_gate_deployment_certificate";
    /**
    * Generates CDKTF code for importing a GoldenGateDeploymentCertificate 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 GoldenGateDeploymentCertificate to import
    * @param importFromId The id of the existing GoldenGateDeploymentCertificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/golden_gate_deployment_certificate#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the GoldenGateDeploymentCertificate 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/golden_gate_deployment_certificate oci_golden_gate_deployment_certificate} 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 GoldenGateDeploymentCertificateConfig
    */
    constructor(scope: Construct, id: string, config: GoldenGateDeploymentCertificateConfig);
    get authorityKeyId(): string;
    private _certificateContent?;
    get certificateContent(): string;
    set certificateContent(value: string);
    get certificateContentInput(): string | undefined;
    private _deploymentId?;
    get deploymentId(): string;
    set deploymentId(value: string);
    get deploymentIdInput(): string | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    get isCa(): cdktf.IResolvable;
    private _isLockOverride?;
    get isLockOverride(): boolean | cdktf.IResolvable;
    set isLockOverride(value: boolean | cdktf.IResolvable);
    resetIsLockOverride(): void;
    get isLockOverrideInput(): boolean | cdktf.IResolvable | undefined;
    get isSelfSigned(): cdktf.IResolvable;
    get issuer(): string;
    private _key?;
    get key(): string;
    set key(value: string);
    get keyInput(): string | undefined;
    get md5Hash(): string;
    get publicKey(): string;
    get publicKeyAlgorithm(): string;
    get publicKeySize(): string;
    get serial(): string;
    get sha1Hash(): string;
    get state(): string;
    get subject(): string;
    get subjectKeyId(): string;
    get timeCreated(): string;
    get timeValidFrom(): string;
    get timeValidTo(): string;
    get version(): string;
    private _timeouts;
    get timeouts(): GoldenGateDeploymentCertificateTimeoutsOutputReference;
    putTimeouts(value: GoldenGateDeploymentCertificateTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | GoldenGateDeploymentCertificateTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
