import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "./types"; export declare function getNexusBlobstore(args: GetNexusBlobstoreArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetNexusBlobstore. */ export interface GetNexusBlobstoreArgs { bucketConfiguration?: inputs.GetNexusBlobstoreBucketConfiguration; name: string; path?: string; softQuota?: inputs.GetNexusBlobstoreSoftQuota; type?: string; } /** * A collection of values returned by GetNexusBlobstore. */ export interface GetNexusBlobstoreResult { readonly availableSpaceInBytes: number; readonly blobCount: number; readonly bucketConfiguration?: outputs.GetNexusBlobstoreBucketConfiguration; readonly id: string; readonly name: string; readonly path?: string; readonly softQuota?: outputs.GetNexusBlobstoreSoftQuota; readonly totalSizeInBytes: number; readonly type?: string; } export declare function getNexusBlobstoreOutput(args: GetNexusBlobstoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetNexusBlobstore. */ export interface GetNexusBlobstoreOutputArgs { bucketConfiguration?: pulumi.Input; name: pulumi.Input; path?: pulumi.Input; softQuota?: pulumi.Input; type?: pulumi.Input; }