import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface BdsBdsInstanceOsPatchActionConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#bds_instance_id BdsBdsInstanceOsPatchAction#bds_instance_id}
    */
    readonly bdsInstanceId: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#cluster_admin_password BdsBdsInstanceOsPatchAction#cluster_admin_password}
    */
    readonly clusterAdminPassword: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#id BdsBdsInstanceOsPatchAction#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/bds_bds_instance_os_patch_action#os_patch_version BdsBdsInstanceOsPatchAction#os_patch_version}
    */
    readonly osPatchVersion: string;
    /**
    * patching_configs block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#patching_configs BdsBdsInstanceOsPatchAction#patching_configs}
    */
    readonly patchingConfigs?: BdsBdsInstanceOsPatchActionPatchingConfigs;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#timeouts BdsBdsInstanceOsPatchAction#timeouts}
    */
    readonly timeouts?: BdsBdsInstanceOsPatchActionTimeouts;
}
export interface BdsBdsInstanceOsPatchActionPatchingConfigs {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#batch_size BdsBdsInstanceOsPatchAction#batch_size}
    */
    readonly batchSize?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#patching_config_strategy BdsBdsInstanceOsPatchAction#patching_config_strategy}
    */
    readonly patchingConfigStrategy: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#tolerance_threshold_per_batch BdsBdsInstanceOsPatchAction#tolerance_threshold_per_batch}
    */
    readonly toleranceThresholdPerBatch?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#tolerance_threshold_per_domain BdsBdsInstanceOsPatchAction#tolerance_threshold_per_domain}
    */
    readonly toleranceThresholdPerDomain?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#wait_time_between_batch_in_seconds BdsBdsInstanceOsPatchAction#wait_time_between_batch_in_seconds}
    */
    readonly waitTimeBetweenBatchInSeconds?: number;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#wait_time_between_domain_in_seconds BdsBdsInstanceOsPatchAction#wait_time_between_domain_in_seconds}
    */
    readonly waitTimeBetweenDomainInSeconds?: number;
}
export declare function bdsBdsInstanceOsPatchActionPatchingConfigsToTerraform(struct?: BdsBdsInstanceOsPatchActionPatchingConfigsOutputReference | BdsBdsInstanceOsPatchActionPatchingConfigs): any;
export declare function bdsBdsInstanceOsPatchActionPatchingConfigsToHclTerraform(struct?: BdsBdsInstanceOsPatchActionPatchingConfigsOutputReference | BdsBdsInstanceOsPatchActionPatchingConfigs): any;
export declare class BdsBdsInstanceOsPatchActionPatchingConfigsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @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(): BdsBdsInstanceOsPatchActionPatchingConfigs | undefined;
    set internalValue(value: BdsBdsInstanceOsPatchActionPatchingConfigs | undefined);
    private _batchSize?;
    get batchSize(): number;
    set batchSize(value: number);
    resetBatchSize(): void;
    get batchSizeInput(): number | undefined;
    private _patchingConfigStrategy?;
    get patchingConfigStrategy(): string;
    set patchingConfigStrategy(value: string);
    get patchingConfigStrategyInput(): string | undefined;
    private _toleranceThresholdPerBatch?;
    get toleranceThresholdPerBatch(): number;
    set toleranceThresholdPerBatch(value: number);
    resetToleranceThresholdPerBatch(): void;
    get toleranceThresholdPerBatchInput(): number | undefined;
    private _toleranceThresholdPerDomain?;
    get toleranceThresholdPerDomain(): number;
    set toleranceThresholdPerDomain(value: number);
    resetToleranceThresholdPerDomain(): void;
    get toleranceThresholdPerDomainInput(): number | undefined;
    private _waitTimeBetweenBatchInSeconds?;
    get waitTimeBetweenBatchInSeconds(): number;
    set waitTimeBetweenBatchInSeconds(value: number);
    resetWaitTimeBetweenBatchInSeconds(): void;
    get waitTimeBetweenBatchInSecondsInput(): number | undefined;
    private _waitTimeBetweenDomainInSeconds?;
    get waitTimeBetweenDomainInSeconds(): number;
    set waitTimeBetweenDomainInSeconds(value: number);
    resetWaitTimeBetweenDomainInSeconds(): void;
    get waitTimeBetweenDomainInSecondsInput(): number | undefined;
}
export interface BdsBdsInstanceOsPatchActionTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#create BdsBdsInstanceOsPatchAction#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#delete BdsBdsInstanceOsPatchAction#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#update BdsBdsInstanceOsPatchAction#update}
    */
    readonly update?: string;
}
export declare function bdsBdsInstanceOsPatchActionTimeoutsToTerraform(struct?: BdsBdsInstanceOsPatchActionTimeouts | cdktf.IResolvable): any;
export declare function bdsBdsInstanceOsPatchActionTimeoutsToHclTerraform(struct?: BdsBdsInstanceOsPatchActionTimeouts | cdktf.IResolvable): any;
export declare class BdsBdsInstanceOsPatchActionTimeoutsOutputReference 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(): BdsBdsInstanceOsPatchActionTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: BdsBdsInstanceOsPatchActionTimeouts | 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/bds_bds_instance_os_patch_action oci_bds_bds_instance_os_patch_action}
*/
export declare class BdsBdsInstanceOsPatchAction extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_bds_bds_instance_os_patch_action";
    /**
    * Generates CDKTF code for importing a BdsBdsInstanceOsPatchAction 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 BdsBdsInstanceOsPatchAction to import
    * @param importFromId The id of the existing BdsBdsInstanceOsPatchAction that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/bds_bds_instance_os_patch_action#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the BdsBdsInstanceOsPatchAction 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/bds_bds_instance_os_patch_action oci_bds_bds_instance_os_patch_action} 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 BdsBdsInstanceOsPatchActionConfig
    */
    constructor(scope: Construct, id: string, config: BdsBdsInstanceOsPatchActionConfig);
    private _bdsInstanceId?;
    get bdsInstanceId(): string;
    set bdsInstanceId(value: string);
    get bdsInstanceIdInput(): string | undefined;
    private _clusterAdminPassword?;
    get clusterAdminPassword(): string;
    set clusterAdminPassword(value: string);
    get clusterAdminPasswordInput(): string | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    private _osPatchVersion?;
    get osPatchVersion(): string;
    set osPatchVersion(value: string);
    get osPatchVersionInput(): string | undefined;
    private _patchingConfigs;
    get patchingConfigs(): BdsBdsInstanceOsPatchActionPatchingConfigsOutputReference;
    putPatchingConfigs(value: BdsBdsInstanceOsPatchActionPatchingConfigs): void;
    resetPatchingConfigs(): void;
    get patchingConfigsInput(): BdsBdsInstanceOsPatchActionPatchingConfigs | undefined;
    private _timeouts;
    get timeouts(): BdsBdsInstanceOsPatchActionTimeoutsOutputReference;
    putTimeouts(value: BdsBdsInstanceOsPatchActionTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | BdsBdsInstanceOsPatchActionTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
