import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Vultr virtual file system storage resource. This can be used to create, read, modify and delete a virtual file system storage. * * ## Example Usage * * Define a virtual file system storage resource: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vultr from "@ediri/vultr"; * * const myVfsStorage = new vultr.VirtualFileSystemStorage("myVfsStorage", { * label: "vultr-vfs-storage", * region: "ewr", * sizeGb: 10, * tags: [ * "terraform", * "important", * ], * }); * ``` * * ## Import * * Virtual file system storage can be imported using the `ID`, e.g. * * ```sh * $ pulumi import vultr:index/virtualFileSystemStorage:VirtualFileSystemStorage my_vfs_storage 79210a84-bc58-494f-8dd1-953685654f7f * ``` */ export declare class VirtualFileSystemStorage extends pulumi.CustomResource { /** * Get an existing VirtualFileSystemStorage resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: VirtualFileSystemStorageState, opts?: pulumi.CustomResourceOptions): VirtualFileSystemStorage; /** * Returns true if the given object is an instance of VirtualFileSystemStorage. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VirtualFileSystemStorage; /** * A list of UUIDs to attach to the virtual file system storage subscription. */ readonly attachedInstances: pulumi.Output; /** * A list of attchment states for instances currently attached to the virtual file system storage. */ readonly attachments: pulumi.Output; /** * The current pending charges for the virtual file system storage subscription in USD. */ readonly charges: pulumi.Output; /** * The cost per month of the virtual file system storage subscription in USD. */ readonly cost: pulumi.Output; /** * The date the virtual file system storage subscription was added to your Vultr account. */ readonly dateCreated: pulumi.Output; /** * The underlying disk type to use for the virtual file system storage. Default is `nvme`. */ readonly diskType: pulumi.Output; /** * The label to give to the virtual file system storage subscription. */ readonly label: pulumi.Output; /** * The region in which this virtual file system storage will reside. */ readonly region: pulumi.Output; /** * The size of the given virtual file system storage subscription. */ readonly sizeGb: pulumi.Output; /** * The status of the virtual file system storage subscription. */ readonly status: pulumi.Output; /** * A list of tags to be used on the virtual file system storage subscription. */ readonly tags: pulumi.Output; /** * Create a VirtualFileSystemStorage resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VirtualFileSystemStorageArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VirtualFileSystemStorage resources. */ export interface VirtualFileSystemStorageState { /** * A list of UUIDs to attach to the virtual file system storage subscription. */ attachedInstances?: pulumi.Input[]>; /** * A list of attchment states for instances currently attached to the virtual file system storage. */ attachments?: pulumi.Input[]>; /** * The current pending charges for the virtual file system storage subscription in USD. */ charges?: pulumi.Input; /** * The cost per month of the virtual file system storage subscription in USD. */ cost?: pulumi.Input; /** * The date the virtual file system storage subscription was added to your Vultr account. */ dateCreated?: pulumi.Input; /** * The underlying disk type to use for the virtual file system storage. Default is `nvme`. */ diskType?: pulumi.Input; /** * The label to give to the virtual file system storage subscription. */ label?: pulumi.Input; /** * The region in which this virtual file system storage will reside. */ region?: pulumi.Input; /** * The size of the given virtual file system storage subscription. */ sizeGb?: pulumi.Input; /** * The status of the virtual file system storage subscription. */ status?: pulumi.Input; /** * A list of tags to be used on the virtual file system storage subscription. */ tags?: pulumi.Input[]>; } /** * The set of arguments for constructing a VirtualFileSystemStorage resource. */ export interface VirtualFileSystemStorageArgs { /** * A list of UUIDs to attach to the virtual file system storage subscription. */ attachedInstances?: pulumi.Input[]>; /** * The underlying disk type to use for the virtual file system storage. Default is `nvme`. */ diskType?: pulumi.Input; /** * The label to give to the virtual file system storage subscription. */ label: pulumi.Input; /** * The region in which this virtual file system storage will reside. */ region: pulumi.Input; /** * The size of the given virtual file system storage subscription. */ sizeGb: pulumi.Input; /** * A list of tags to be used on the virtual file system storage subscription. */ tags?: pulumi.Input[]>; }