import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VirtualFileSystemStorageConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#attached_instances VirtualFileSystemStorage#attached_instances} */ readonly attachedInstances?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#disk_type VirtualFileSystemStorage#disk_type} */ readonly diskType?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#id VirtualFileSystemStorage#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/virtual_file_system_storage#label VirtualFileSystemStorage#label} */ readonly label: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#region VirtualFileSystemStorage#region} */ readonly region: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#size_gb VirtualFileSystemStorage#size_gb} */ readonly sizeGb: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#tags VirtualFileSystemStorage#tags} */ readonly tags?: string[]; } export interface VirtualFileSystemStorageAttachments { } export declare function virtualFileSystemStorageAttachmentsToTerraform(struct?: VirtualFileSystemStorageAttachments): any; export declare function virtualFileSystemStorageAttachmentsToHclTerraform(struct?: VirtualFileSystemStorageAttachments): any; export declare class VirtualFileSystemStorageAttachmentsOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): VirtualFileSystemStorageAttachments | undefined; set internalValue(value: VirtualFileSystemStorageAttachments | undefined); get instanceId(): any; get mount(): any; get state(): any; } export declare class VirtualFileSystemStorageAttachmentsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): VirtualFileSystemStorageAttachmentsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage vultr_virtual_file_system_storage} */ export declare class VirtualFileSystemStorage extends cdktf.TerraformResource { static readonly tfResourceType = "vultr_virtual_file_system_storage"; /** * Generates CDKTF code for importing a VirtualFileSystemStorage 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 VirtualFileSystemStorage to import * @param importFromId The id of the existing VirtualFileSystemStorage that should be imported. Refer to the {@link https://registry.terraform.io/providers/vultr/vultr/2.28.0/docs/resources/virtual_file_system_storage#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VirtualFileSystemStorage 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/virtual_file_system_storage vultr_virtual_file_system_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 VirtualFileSystemStorageConfig */ constructor(scope: Construct, id: string, config: VirtualFileSystemStorageConfig); private _attachedInstances?; get attachedInstances(): string[]; set attachedInstances(value: string[]); resetAttachedInstances(): void; get attachedInstancesInput(): string[]; private _attachments; get attachments(): VirtualFileSystemStorageAttachmentsList; get charges(): any; get cost(): any; get dateCreated(): any; private _diskType?; get diskType(): string; set diskType(value: string); resetDiskType(): void; get diskTypeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _label?; get label(): string; set label(value: string); get labelInput(): string; 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; private _tags?; get tags(): string[]; set tags(value: string[]); resetTags(): void; get tagsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }