import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CosObjectRestoreOperationConfig extends cdktf.TerraformMetaArguments { /** * Bucket. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#bucket CosObjectRestoreOperation#bucket} */ readonly bucket: string; /** * Specifies the valid duration of the restored temporary copy in days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#days CosObjectRestoreOperation#days} */ readonly days: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#id CosObjectRestoreOperation#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; /** * Object key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#key CosObjectRestoreOperation#key} */ readonly key: string; /** * when restoring, Tier can be specified as the supported recovery model. * There are three recovery models for recovering archived storage type data, which are: * - Expedited: quick retrieval mode, and the recovery task can be completed in 1-5 minutes. * - Standard: standard retrieval mode. Recovery task is completed within 3-5 hours. * - Bulk: batch retrieval mode, and the recovery task is completed within 5-12 hours. * For deep recovery archive storage type data, there are two recovery models, which are: * - Standard: standard retrieval mode, recovery time is 12-24 hours. * - Bulk: batch retrieval mode, recovery time is 24-48 hours. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#tier CosObjectRestoreOperation#tier} */ readonly tier: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation tencentcloud_cos_object_restore_operation} */ export declare class CosObjectRestoreOperation extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cos_object_restore_operation"; /** * Generates CDKTF code for importing a CosObjectRestoreOperation resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the CosObjectRestoreOperation to import * @param importFromId The id of the existing CosObjectRestoreOperation that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CosObjectRestoreOperation to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cos_object_restore_operation tencentcloud_cos_object_restore_operation} 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 CosObjectRestoreOperationConfig */ constructor(scope: Construct, id: string, config: CosObjectRestoreOperationConfig); private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string; private _days?; get days(): number; set days(value: number); get daysInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _key?; get key(): string; set key(value: string); get keyInput(): string; private _tier?; get tier(): string; set tier(value: string); get tierInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }