import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BlockStorageConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#attached_to_instance BlockStorage#attached_to_instance} */ readonly attachedToInstance?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#block_type BlockStorage#block_type} */ readonly blockType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#id BlockStorage#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/vultr/vultr/2.28.0/docs/resources/block_storage#label BlockStorage#label} */ readonly label?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#live BlockStorage#live} */ readonly live?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#region BlockStorage#region} */ readonly region: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#size_gb BlockStorage#size_gb} */ readonly sizeGb: number; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage vultr_block_storage} */ export declare class BlockStorage extends cdktf.TerraformResource { static readonly tfResourceType = "vultr_block_storage"; /** * Generates CDKTF code for importing a BlockStorage 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 BlockStorage to import * @param importFromId The id of the existing BlockStorage that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/block_storage#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BlockStorage 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/vultr/vultr/2.28.0/docs/resources/block_storage vultr_block_storage} 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 BlockStorageConfig */ constructor(scope: Construct, id: string, config: BlockStorageConfig); private _attachedToInstance?; get attachedToInstance(): string; set attachedToInstance(value: string); resetAttachedToInstance(): void; get attachedToInstanceInput(): string; private _blockType?; get blockType(): string; set blockType(value: string); resetBlockType(): void; get blockTypeInput(): string; get cost(): any; get dateCreated(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _label?; get label(): string; set label(value: string); resetLabel(): void; get labelInput(): string; private _live?; get live(): boolean | cdktf.IResolvable; set live(value: boolean | cdktf.IResolvable); resetLive(): void; get liveInput(): any; get mountId(): any; private _region?; get region(): string; set region(value: string); get regionInput(): string; private _sizeGb?; get sizeGb(): number; set sizeGb(value: number); get sizeGbInput(): number; get status(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }