import * as pulumi from "@pulumi/pulumi"; export declare function getNetworkDrive(args?: GetNetworkDriveArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkDrive. */ export interface GetNetworkDriveArgs { availabilityZone?: string; comment?: string; id?: string; location?: string; name?: string; presetId?: number; size?: number; type?: string; } /** * A collection of values returned by getNetworkDrive. */ export interface GetNetworkDriveResult { readonly availabilityZone: string; readonly comment: string; readonly id: string; readonly location: string; readonly name: string; readonly presetId: number; readonly size: number; readonly type: string; } export declare function getNetworkDriveOutput(args?: GetNetworkDriveOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkDrive. */ export interface GetNetworkDriveOutputArgs { availabilityZone?: pulumi.Input; comment?: pulumi.Input; id?: pulumi.Input; location?: pulumi.Input; name?: pulumi.Input; presetId?: pulumi.Input; size?: pulumi.Input; type?: pulumi.Input; }