import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class NetworkDrive extends pulumi.CustomResource { /** * Get an existing NetworkDrive 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?: NetworkDriveState, opts?: pulumi.CustomResourceOptions): NetworkDrive; /** * Returns true if the given object is an instance of NetworkDrive. 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 NetworkDrive; /** * Zone of specified network drive */ readonly availabilityZone: pulumi.Output; /** * Comment for the network drive */ readonly comment: pulumi.Output; /** * Location of specified network drive */ readonly location: pulumi.Output; /** * Name of the network drive */ readonly name: pulumi.Output; readonly networkDriveId: pulumi.Output; /** * Preset id of the network drive */ readonly presetId: pulumi.Output; /** * Mount network drive to resource */ readonly resource: pulumi.Output; /** * Size of the network drive */ readonly size: pulumi.Output; /** * Status of the network drive */ readonly status: pulumi.Output; /** * Type of the network drive */ readonly type: pulumi.Output; /** * Create a NetworkDrive 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?: NetworkDriveArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkDrive resources. */ export interface NetworkDriveState { /** * Zone of specified network drive */ availabilityZone?: pulumi.Input; /** * Comment for the network drive */ comment?: pulumi.Input; /** * Location of specified network drive */ location?: pulumi.Input; /** * Name of the network drive */ name?: pulumi.Input; networkDriveId?: pulumi.Input; /** * Preset id of the network drive */ presetId?: pulumi.Input; /** * Mount network drive to resource */ resource?: pulumi.Input; /** * Size of the network drive */ size?: pulumi.Input; /** * Status of the network drive */ status?: pulumi.Input; /** * Type of the network drive */ type?: pulumi.Input; } /** * The set of arguments for constructing a NetworkDrive resource. */ export interface NetworkDriveArgs { /** * Zone of specified network drive */ availabilityZone?: pulumi.Input; /** * Comment for the network drive */ comment?: pulumi.Input; /** * Name of the network drive */ name?: pulumi.Input; networkDriveId?: pulumi.Input; /** * Preset id of the network drive */ presetId?: pulumi.Input; /** * Mount network drive to resource */ resource?: pulumi.Input; /** * Size of the network drive */ size?: pulumi.Input; }