import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CbsSnapshotConfig extends cdktf.TerraformMetaArguments { /** * The type of cloud disk associated with the snapshot: SYSTEM_DISK: system disk; DATA_DISK: data disk. If not filled in, the snapshot type will be consistent with the cloud disk type. This parameter is used in some scenarios where users need to create a data disk snapshot from the system disk for shared use. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#disk_usage CbsSnapshot#disk_usage} */ readonly diskUsage?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#id CbsSnapshot#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; /** * Name of the snapshot. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#snapshot_name CbsSnapshot#snapshot_name} */ readonly snapshotName: string; /** * ID of the the CBS which this snapshot created from. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#storage_id CbsSnapshot#storage_id} */ readonly storageId: string; /** * The available tags within this CBS Snapshot. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#tags CbsSnapshot#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot tencentcloud_cbs_snapshot} */ export declare class CbsSnapshot extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cbs_snapshot"; /** * Generates CDKTF code for importing a CbsSnapshot 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 CbsSnapshot to import * @param importFromId The id of the existing CbsSnapshot that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cbs_snapshot#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CbsSnapshot 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/cbs_snapshot tencentcloud_cbs_snapshot} 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 CbsSnapshotConfig */ constructor(scope: Construct, id: string, config: CbsSnapshotConfig); get createTime(): any; get diskType(): any; private _diskUsage?; get diskUsage(): string; set diskUsage(value: string); resetDiskUsage(): void; get diskUsageInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get percent(): any; private _snapshotName?; get snapshotName(): string; set snapshotName(value: string); get snapshotNameInput(): string; get snapshotStatus(): any; private _storageId?; get storageId(): string; set storageId(value: string); get storageIdInput(): string; get storageSize(): any; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }